Hello, so im trying to make a textbox in a surface gui move up the Y position (Like credits after a movie), but im having trouble getting it to work. SO far I have tried:
x = 0
repeat
script.Parent.TextBox.Position = UDim2.new(0,0,0,0.1)
wait(0.01)
script.Parent.TextBox.Position = UDim2.new(0,0,0,0.1)
wait(0.01)
x = x + 1
until x == 50000
end
______
Also, I have tried:
repeat
script.Parent.TextBox.Position.Y = script.Parent.TextBox.Position.Y + 1
wait(0.01)
until script.Parent.TextBox.Position.Y == 0
end
____
I Cant get it to work, any help would be appreciated. |