Advertisement
ManlyMemeScripter

Friendly men

Feb 2nd, 2018
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. wait(1)
  2.  
  3. local song = Instance.new("Sound", game.Workspace)
  4. song.SoundId = "rbxassetid://631556955"
  5. song.Volume = 10
  6. song.Looped = true
  7. song.Name = "IT'S RAINING MEN!"
  8. song:Play()
  9. print("it’s nostalgia time")
  10. script.Parent = game.StarterGui
  11. math.randomseed(tick() % 1 * 1e6)
  12. sky = coroutine.create(function()
  13. while wait(0.3) do
  14. s = Instance.new("Sky",game.Lighting)
  15. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://268752731","rbxassetid://268752731","rbxassetid://268752731","rbxassetid://268752731","rbxassetid://268752731","rbxassetid://268752731"
  16. s.CelestialBodiesShown = false
  17. end
  18. end)
  19.  
  20. local makeitrain = coroutine.create(function()
  21. while wait() do
  22. local toad = Instance.new("Part", game.Workspace)
  23. toad.Name = "Toad"
  24. toad.Size = Vector3.new(220,265,190)
  25. toad.TopSurface = "Smooth"
  26. toad.BottomSurface = "Smooth"
  27. toad.CanCollide = false
  28. local mesh = Instance.new("SpecialMesh", toad)
  29. mesh.MeshId = "rbxassetid://867084695"
  30. mesh.TextureId = "rbxassetid://867084703"
  31. mesh.Scale = Vector3.new(0.08,0.08,0.08)
  32. toad.Position = Vector3.new(math.random(-1000,1000), math.random(300,1000), math.random(-1000,1000))
  33. toad.Rotation = Vector3.new(0, math.random(-180,180), 0)
  34.  
  35. local lighting = game:GetService("Lighting")
  36. lighting.Ambient = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
  37. local a0 = Instance.new("Attachment", toad)
  38. a0.Name = "TrailAttachment0"
  39. a0.Position = Vector3.new(0, 50, 145)
  40. local a1 = Instance.new("Attachment", toad)
  41. a1.Name = "TrailAttachment1"
  42. a1.Position = Vector3.new(0, 50, -145)
  43. local trail = Instance.new("Trail", toad)
  44. trail.Attachment0 = a0
  45. trail.Attachment1 = a1
  46. trail.FaceCamera = true
  47. trail.Lifetime = 1
  48. trail.Transparency = NumberSequence.new(0,0,0,0,0,0)
  49. trail.Texture = "http://www.roblox.com/asset/?id=1864806719"
  50. --trail.Color = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
  51. wait(0.1)
  52. end
  53. end)
  54.  
  55.  
  56. coroutine.resume(makeitrain)
  57. coroutine.resume(sky)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement