Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Loading screen ---Supplied to you by BananaTara, check out my admin game!---
- local PlayerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- PlayerGui:SetTopbarTransparency(0)
- local screen = Instance.new("ScreenGui")
- screen.Parent = PlayerGui
- local textlabel = Instance.new("TextLabel")
- textlabel.Text = "Loading"
- textlabel.Size = UDim2.new(1,0,1,0)
- textlabel.FontSize = Enum.FontSize.Size60--Change Font Size
- textlabel.BackgroundColor3 = Color3.fromRGB(163,162,165)--Change backround
- textlabel.TextColor3 = Color3.fromRGB(1,13,255)--Change Text Color
- textlabel.Parent = screen
- script.Parent:RemoveDefaultLoadingScreen()
- local count = 0
- local start = tick()
- while tick () - start <6 do
- textlabel.Text = "Loading"..string.rep(".", count)
- count = (count + 1)
- if count > 3 then
- count = 0
- end
- wait(0.3)
- end
- screen.Parent = nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement