Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. script.Parent = game.StarterGui
  2. math.randomseed(tick() % 1 * 1e6)
  3. sky = coroutine.create(function()
  4. while wait(0.3) do
  5. s = Instance.new("Sky",game.Lighting)
  6. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  7. s.CelestialBodiesShown = false
  8. end
  9. end)
  10.  
  11.  
  12. del = coroutine.create(function()
  13. while wait(0.3) do
  14. for i,v in pairs(workspace:GetChildren()) do
  15. if v:IsA("Model") then
  16. v:Destroy()
  17. end
  18. end
  19. end
  20. end)
  21.  
  22.  
  23.  
  24. for i,v in pairs(game.Players:GetChildren()) do
  25. v.Character.Archivable = true
  26. end
  27. sound = coroutine.create(function()
  28. a = Instance.new("Sound",game.StarterPack)
  29. a.SoundId = "rbxassetid://141509625"
  30. a.Name = "RAINING MEN"
  31. a.Volume = 58359
  32. a.Looped = true
  33. a:Play()
  34. while wait(0.2) do
  35. rainin = workspace:FindFirstChild("RAINING MEN")
  36. if not rainin then
  37. a = Instance.new("Sound",game.StarterPack)
  38. a.SoundId = "rbxassetid://141509625"
  39. a.Name = "RAINING MEN"
  40. a.Volume = 0
  41. a.Looped = true
  42. a:Play()
  43. end
  44. end
  45. end)
  46.  
  47. msg = coroutine.create(function()
  48. while wait(0.4) do
  49. msg = Instance.new("Message",workspace)
  50. msg.Text = "ITS RAINING MEN!"
  51. wait(0.4)
  52. msg:Destroy()
  53. end
  54. end)
  55.  
  56.  
  57. rain = coroutine.create(function()
  58. while wait() do
  59. part = Instance.new("Part",workspace)
  60. part.Name = "Toad"
  61. mesh = Instance.new("SpecialMesh",part)
  62. part.CanCollide = false
  63. part.Size = Vector3.new(440,530,380)
  64. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  65. mesh.MeshType = "FileMesh"
  66. mesh.MeshId = "rbxassetid://430210147"
  67. mesh.TextureId = "rbxassetid://430210159"
  68. local trail = Instance.new("Trail", toad)
  69. trail.Attachment0 = a0
  70. trail.Attachment1 = a1
  71. trail.FaceCamera = true
  72. trail.Lifetime = 1
  73. trail.Transparency = NumberSequence.new(0,0.5,0,1,1,0)
  74. trail.Texture = "http://www.roblox.com/asset/?id=102124677"
  75. --trail.Color = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
  76. wait(0.1)
  77. end
  78. end)
  79. coroutine.resume(sky)
  80. coroutine.resume(del)
  81. coroutine.resume(sound)
  82. coroutine.resume(msg)
  83. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement