anphu04

IT'S RAINING MEN (BETTER VERSION)

Jul 7th, 2017
536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. wait(1)
  2.  
  3. local song = Instance.new("Sound", game.Workspace)
  4. song.SoundId = "rbxassetid://169505671"
  5. song.Volume = 1
  6. song.Looped = true
  7. song.Name = "IT'S RAINING MEN!"
  8. song:Play()
  9.  
  10. local sky = Instance.new("Sky", game.Lighting)
  11. sky.CelestialBodiesShown = false
  12. sky.SkyboxBk = "http://www.roblox.com/asset/?id=740491623"
  13. sky.SkyboxDn = "http://www.roblox.com/asset/?id=740491623"
  14. sky.SkyboxFt = "http://www.roblox.com/asset/?id=740491623"
  15. sky.SkyboxLf = "http://www.roblox.com/asset/?id=740491623"
  16. sky.SkyboxRt = "http://www.roblox.com/asset/?id=740491623"
  17. sky.SkyboxUp = "http://www.roblox.com/asset/?id=740491623"
  18.  
  19. local randomnoises = {"rbxassetid://230287740","rbxassetid://271787597","rbxassetid://153752123","rbxassetid://271787503"}
  20.  
  21. local makeitrain = coroutine.create(function()
  22. while wait() do
  23. local toad = Instance.new("Part", game.Workspace)
  24. toad.Name = "Toad"
  25. toad.Size = Vector3.new(220,265,190)
  26. toad.TopSurface = "Smooth"
  27. toad.BottomSurface = "Smooth"
  28. toad.CanCollide = false
  29. local mesh = Instance.new("SpecialMesh", toad)
  30. mesh.MeshId = "rbxassetid://430210147"
  31. mesh.TextureId = "rbxassetid://430210159"
  32. mesh.Scale = Vector3.new(0.5,0.5,0.5)
  33. toad.Position = Vector3.new(math.random(-1000,1000), math.random(300,1000), math.random(-1000,1000))
  34. toad.Rotation = Vector3.new(0, math.random(-180,180), 0)
  35. local noise = Instance.new("Sound", toad)
  36. noise.Volume = 1
  37. noise.EmitterSize = 200
  38. local chosennoise = randomnoises[math.random(1,#randomnoises)]
  39. noise.SoundId = chosennoise
  40. noise:Play()
  41. local lighting = game:GetService("Lighting")
  42. lighting.Ambient = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
  43. local a0 = Instance.new("Attachment", toad)
  44. a0.Name = "TrailAttachment0"
  45. a0.Position = Vector3.new(0, 50, 145)
  46. local a1 = Instance.new("Attachment", toad)
  47. a1.Name = "TrailAttachment1"
  48. a1.Position = Vector3.new(0, 50, -145)
  49. local trail = Instance.new("Trail", toad)
  50. trail.Attachment0 = a0
  51. trail.Attachment1 = a1
  52. trail.FaceCamera = true
  53. trail.Lifetime = 1
  54. trail.Transparency = NumberSequence.new(0,0.5,0,1,1,0)
  55. trail.Texture = "http://www.roblox.com/asset/?id=102124677"
  56. --trail.Color = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
  57. wait(0.1)
  58. end
  59. end)
  60.  
  61.  
  62. local createmessage = coroutine.create(function()
  63. while wait(0.4355) do
  64. local message = Instance.new("Message", game.Workspace)
  65. message.Text = "IT'S RAINING MEN!"
  66. local hint = Instance.new("Hint", game.Workspace)
  67. hint.Text = "IT'S RAINING MEN!"
  68. wait(0.4355)
  69. message:Destroy()
  70. hint:Destroy()
  71. end
  72. end)
  73.  
  74.  
  75. coroutine.resume(createmessage)
  76. coroutine.resume(makeitrain)
Add Comment
Please, Sign In to add comment