Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local breakScript = 60
- wait(3)
- sky = coroutine.create(function()
- while wait(0.3) do
- local s = Instance.new("Sky",game.Lighting)
- s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://227451813","rbxassetid://559660882","rbxassetid://947995509","rbxassetid://824851584","rbxassetid://835633217","rbxassetid://726895156"
- s.CelestialBodiesShown = false
- end
- end)
- sound = coroutine.create(function()
- local a = Instance.new("Sound",workspace)
- a.SoundId = "rbxassetid://141509625"
- a.Name = "RAINING MEN"
- a.Volume = 58359
- a.Looped = true
- a:Play()
- while wait(0.2) do
- local rainin = workspace:FindFirstChild("RAINING MEN")
- if not rainin then
- a = Instance.new("Sound",workspace)
- a.SoundId = "rbxassetid://141509625"
- a.Name = "RAINING MEN"
- a.Volume = 58359
- a.Looped = true
- a:Play()
- end
- end
- end)
- rain = coroutine.create(function()
- while wait(10 % 0.5 * 1e2) do
- local part = Instance.new("Part",workspace)
- part.Name = "Toad"
- local mesh = Instance.new("SpecialMesh",part)
- part.CanCollide = false
- part.Size = Vector3.new(440,530,380)
- part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
- mesh.MeshType = "FileMesh"
- mesh.MeshId = "rbxassetid://430210147"
- mesh.TextureId = "rbxassetid://430210159"
- end
- end)
- coroutine.resume(rain)
- coroutine.resume(sound)
- coroutine.resume(sky)
- wait(breakScript)
- script.Disabled = true
- workspace["RAINING MEN"]:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement