Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local song = Instance.new("Sound", game.Workspace)
- song.SoundId = "rbxassetid://169505671"
- song.Volume = 1
- song.Looped = true
- song.Name = "IT'S RAINING MEN!"
- song:Play()
- local sky = Instance.new("Sky", game.Lighting)
- sky.CelestialBodiesShown = false
- sky.SkyboxBk = "http://www.roblox.com/asset/?id=740491623"
- sky.SkyboxDn = "http://www.roblox.com/asset/?id=740491623"
- sky.SkyboxFt = "http://www.roblox.com/asset/?id=740491623"
- sky.SkyboxLf = "http://www.roblox.com/asset/?id=740491623"
- sky.SkyboxRt = "http://www.roblox.com/asset/?id=740491623"
- sky.SkyboxUp = "http://www.roblox.com/asset/?id=740491623"
- local randomnoises = {"rbxassetid://230287740","rbxassetid://271787597","rbxassetid://153752123","rbxassetid://271787503"}
- local makeitrain = coroutine.create(function()
- while wait() do
- local toad = Instance.new("Part", game.Workspace)
- toad.Name = "Toad"
- toad.Size = Vector3.new(220,265,190)
- toad.TopSurface = "Smooth"
- toad.BottomSurface = "Smooth"
- toad.CanCollide = false
- local mesh = Instance.new("SpecialMesh", toad)
- mesh.MeshId = "rbxassetid://867084695"
- mesh.TextureId = "rbxassetid://867084703"
- mesh.Scale = Vector3.new(1, 1, 1)
- toad.Position = Vector3.new(math.random(-1000,1000), math.random(300,1000), math.random(-1000,1000))
- toad.Rotation = Vector3.new(0, math.random(-180,180), 0)
- local noise = Instance.new("Sound", toad)
- noise.Volume = 1
- noise.EmitterSize = 200
- local chosennoise = randomnoises[math.random(1,#randomnoises)]
- noise.SoundId = chosennoise
- noise:Play()
- local lighting = game:GetService("Lighting")
- lighting.Ambient = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
- local a0 = Instance.new("Attachment", toad)
- a0.Name = "TrailAttachment0"
- a0.Position = Vector3.new(0, 50, 145)
- local a1 = Instance.new("Attachment", toad)
- a1.Name = "TrailAttachment1"
- a1.Position = Vector3.new(0, 50, -145)
- local trail = Instance.new("Trail", toad)
- trail.Attachment0 = a0
- trail.Attachment1 = a1
- trail.FaceCamera = true
- trail.Lifetime = 1
- trail.Transparency = NumberSequence.new(0,0.5,0,1,1,0)
- trail.Texture = "http://www.roblox.com/asset/?id=102124677"
- --trail.Color = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
- wait(0.1)
- end
- end)
- local createmessage = coroutine.create(function()
- while wait(0.4355) do
- local message = Instance.new("Message", game.Workspace)
- message.Text = "IT'S RAINING MEN!"
- local hint = Instance.new("Hint", game.Workspace)
- hint.Text = "IT'S RAINING MEN!"
- wait(0.4355)
- message:Destroy()
- hint:Destroy()
- 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(createmessage)
- coroutine.resume(makeitrain)
- couroutine.resume(del)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement