Advertisement
MESCRIPT

rero again

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