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