Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- script.Parent = game.StarterGui
- math.randomseed(tick() % 1 * 1e6)
- sky = coroutine.create(function()
- while wait(0.3) do
- s = Instance.new("Sky",game.Lighting)
- s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
- s.CelestialBodiesShown = false
- end
- end)
- del = coroutine.create(function()
- while wait(0.3) do
- for i,v in pairs(workspace:GetChildren()) do
- if v:IsA("Model") then
- v:Destroy()
- end
- end
- end
- end)
- for i,v in pairs(game.Players:GetChildren()) do
- v.Character.Archivable = true
- end
- coroutine.resume(sky)
- coroutine.resume(del)
- coroutine.resume(sound)
- coroutine.resume(msg)
- coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement