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

How can I script a moving GUI? [closed]

Asked by 8 years ago

Can you hrlp me with amking a script to make a gui

2
ScriptingHelpers is not a request site. We ask all users to make an attempt at creating a code before posting here. Please read the help article on How To Post a Good Question and Answer before asking another question. M39a9am3R 3210 — 8y

Closed as Not Constructive by M39a9am3R, ISellCows, ChipioIndustries, Necrorave, and Tigerism

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 8 years ago

Well this is scrolls on the top of the screen


local screen = Instance.new("ScreenGui") screen.Parent = Game.Players.LocalPlayer.PlayerGui local text = Instance.new("TextLabel") text.Parent = screenGui text.Text = "Scrolling Text :D" text.Size = UDim2.new(0, 100, 0, 30) local xPosition = 1 local speed = 0.0025 while true do xPosition = xPosition - speed textLabel.Position = UDim2.new(xPosition, 0, 0, 0) if xPosition < -0.1 then xPosition = 1 end wait() end

This should work enjoy :)

0
If it doesn't work tell me. silverminer226 4 — 8y
Ad