Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(1)
- local song = Instance.new("Sound", game.Workspace)
- song.SoundId = "rbxassetid://631556955"
- song.Volume = 10
- song.Looped = true
- song.Name = "IT'S RAINING MEN!"
- song:Play()
- print("it’s nostalgia time")
- 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://268752731","rbxassetid://268752731","rbxassetid://268752731","rbxassetid://268752731","rbxassetid://268752731","rbxassetid://268752731"
- s.CelestialBodiesShown = false
- end
- end)
- 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(0.08,0.08,0.08)
- 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 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,0,0,0,0)
- trail.Texture = "http://www.roblox.com/asset/?id=1864806719"
- --trail.Color = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
- wait(0.1)
- end
- end)
- coroutine.resume(makeitrain)
- coroutine.resume(sky)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement