of     1   

e_Scriph
#140439396Tuesday, July 15, 2014 8:12 PM GMT

Ok, so i'm trying to make it update automatically to the persons res, but it just disapears when I do this! local times = 5 local texts = script.Parent local textm = "Welcome to my game" local tween = script.Parent.Parent.AbsoluteSize.X function Sleep(timetosleep) wait(timetosleep) end while true do script.Parent.Size = UDim.new(0, tween, 0, 20) texts.Text = "Guest Block by, xXScriptzXx (INC.)" --Im making a guest block Sleep(times) texts.Text = textm Sleep(times) end
super10099
#140439535Tuesday, July 15, 2014 8:14 PM GMT

use TweenPosition
super10099
#140439638Tuesday, July 15, 2014 8:15 PM GMT

i mean size
e_Scriph
#140439724Tuesday, July 15, 2014 8:16 PM GMT

k..
e_Scriph
#140439949Tuesday, July 15, 2014 8:18 PM GMT

this dose not work now local times = 5 local texts = script.Parent local textm = "Welcome to my game" local tween = script.Parent.Parent.AbsoluteSize.X function Sleep(timetosleep) wait(timetosleep) end function printf(texttoprint) this = Instance.new("Hint", game.Workspace) this.Text = texttopring end while true do script.Parent:TweenSize(UDim.new(0, tween, 0, 20)) texts.Text = "Guest Block by, xXScriptzXx (INC.)" Sleep(times) texts.Text = textm Sleep(times) end
Kacper
#140440038Tuesday, July 15, 2014 8:19 PM GMT

Make sure you write it in a Local Script. Kacper

    of     1