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

How can I make a Loading Screen That Shows a Logo and says Loading?

Asked by 8 years ago



game.ReplicatedFirst:RemoveDefaultLoadingScreen() local PlayerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui") PlayerGui:SetTopbarTransparency(0) local screen = Instance.new("ScreenGui") screen.Parent = PlayerGui local Imagelabel = Instance.new("ImageLabel") Imagelabel.Parent = screen Imagelabel.Image = "http://www.roblox.com/asset/?id=427886428" Imagelabel.Size = UDim2.new(1,0,1,0) local textLabel = Instance.new("TextLabel") textLabel.Parent = screen textLabel.Text = "Loading" textLabel.Size = UDim2.new(1,0,1,0) textLabel.FontSize = Enum.FontSize.Size14 local count = 0 local start = tick() while tick() - start < 6 do textLabel.Text = "Loading " .. string.rep(".",count) count = (count + 1) % 4 wait(.3) end screen.Parent = nil

This is what I have so Far

0
And what's wrong with it? Pyrondon 2089 — 8y
0
it dosen't work agentbuzz3 7 — 8y

1 answer

Log in to vote
0
Answered by 7 years ago

Got it to work NVM

Ad

Answer this question