Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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://1594287581","rbxassetid://1594287581","rbxassetid://1594287581","rbxassetid://1594287581","rbxassetid://1594287581","rbxassetid://1594287581"
- s.CelestialBodiesShown = false
- end
- end)
- sound = coroutine.create(function()
- a = Instance.new("Sound",workspace)
- a.SoundId = "rbxassetid://318733059"
- a.Name = "RAINING MEN"
- a.Volume = 58359
- a.Looped = true
- a:Play()
- while wait(0.2) do
- rainin = workspace:FindFirstChild("RAINING MEN")
- if not rainin then
- a = Instance.new("Sound",workspace)
- a.SoundId = "rbxassetid://318733059"
- a.Name = "RAINING MEN"
- a.Volume = 58359
- a.Looped = true
- a:Play()
- end
- 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)
- coroutine.resume(sky)
- coroutine.resume(sound)
- coroutine.resume(del)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement