Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local PlayerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui") |
- PlayerGui:SetTopbarTransparency(0) |
- local screen = Instance.new("ScreenGui") |
- screen.Parent = PlayerGui |
- local textLabe1 = Instance.new("TextLabel") |
- textLabel.Text = "Welcome To Sniper Battles! Loading..." |
- textLabel. FontSize = Enum.FontSize.Size32 |
- textLLabel.Parent = screen |
- Script.Parent:RemoveDefaultLoadingScreen() |
- local count = 0 |
- local start = tick() |
- while tick() - start <6 do |
- textLabel.Text = "Welcome To Sniper Battles! Loading..." .. string.rep(".",count) |
- count = (count + 1) % 4 |
- wait(5) |
- end |
- screen.Parent = nil |
- ____________________________________________________________________________________|
- You can change the text label to your game just edit textLabel.Text = then edit the textLabel.Text = string rep! (Copy the inside of the box)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement