Can you hrlp me with amking a script to make a gui
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 :)
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?