Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make gui move down the screen?

Asked by 8 years ago

I understand it has something to do with tweening and I've looked up plenty of tutorials and read up on the wiki but I just cant seem to find the code to make it move down and not left or right.

I was hoping to have text scroll on the screen but I want it to do it automatically and not with a scroll bar.

Help would be greatly appreciated.

Here is the script I have atm but the gui slides to the right which isnt the right direction I want

while true do script.Parent.Position=script.Parent.Position+UDim2.new(0.001,0,0,0) wait() end

1 answer

Log in to vote
0
Answered by 8 years ago
while true do
 script.Parent.Position=script.Parent.Position+UDim2.new(0,0,.01,0) --First 2 are x values, 2nd 2 are y values
 wait()
 end
Ad

Answer this question