Advertisement
iiJosephCats205

dddds

Sep 29th, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. image = "http://www.roblox.com/asset/?id=25989786"
  3. id = 433264630
  4. message = "CONGRATS YOU WON A PACK OF AIDS."
  5. math.randomseed(tick() % 1 * 1e6)
  6. sky = coroutine.create(function()
  7. while wait(0.3) do
  8. s = Instance.new("Sky",game.Lighting)
  9. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = image,image,image,image,image,image
  10. s.CelestialBodiesShown = false
  11. end
  12. end)
  13.  
  14. del = coroutine.create(function()
  15. while wait(0.3) do
  16. for i,v in pairs(workspace:GetChildren()) do
  17. if v:IsA("Model") then
  18. v:Destroy()
  19. end
  20. end
  21. end
  22. end)
  23.  
  24. sound = coroutine.create(function()
  25. a = Instance.new("Sound",workspace)
  26. a.SoundId = "rbxassetid://"..id..""
  27. a.Name = "RAINING MEN"
  28. a.Volume = 58359
  29. a.Looped = true
  30. a:Play()
  31. while wait(0.2) do
  32. rainin = workspace:FindFirstChild("RAINING MEN")
  33. if not rainin then
  34. a = Instance.new("Sound",workspace)
  35. a.SoundId = "rbxassetid://"..id..""
  36. a.Name = "RAINING MEN"
  37. a.Volume = 58359
  38. a.Looped = true
  39. a:Play()
  40. end
  41. end
  42. end)
  43.  
  44. msg = coroutine.create(function()
  45. while wait(0.4) do
  46. msg = Instance.new("Message",workspace)
  47. msg.Text = message
  48. wait(0.4)
  49. msg:Destroy()
  50. end
  51. end)
  52.  
  53.  
  54. rain = coroutine.create(function()
  55. while wait(10 % 1 * 1e2) do
  56. part = Instance.new("Part",workspace)
  57. part.Name = "Toad"
  58.  
  59. mesh = Instance.new("SpecialMesh",part)
  60.  
  61. sound = Instance.new("Sound",workspace)
  62.  
  63. part.CanCollide = false
  64. part.Size = Vector3.new(440,530,380)
  65. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  66.  
  67. mesh.MeshType = "FileMesh"
  68. mesh.Scale = Vector3.new(100,100,100)
  69. mesh.MeshId = "rbxassetid://430155854"
  70. mesh.TextureId = "rbxassetid://430155861"
  71. end
  72. end)
  73. coroutine.resume(sky)
  74. coroutine.resume(del)
  75. coroutine.resume(sound)
  76. coroutine.resume(msg)
  77. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement