of     1   

TrafficHazard
#221038825Tuesday, July 11, 2017 6:18 AM GMT

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.
TrafficHazard
#221038970Tuesday, July 11, 2017 6:21 AM GMT

I have never worked with UDim before so this is sloppy. I apologize.

    of     1