Advertisement
iiJosephCats205

PlayTime

Jul 4th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. wait(1)
  2. image = "http://www.roblox.com/asset/?id=624116366"
  3. id = 271550300
  4. message = "DOG ABUSERS GET THE FUCK OUT OF THIS SERVER OR YOU WILL BE FALLING INTO A PILE OF POOP"
  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. d = Instance.new("DistortionSoundEffect",a)
  32. d.Level = 1
  33. while wait(0.2) do
  34. rainin = workspace:FindFirstChild("RAINING MEN")
  35. if not rainin then
  36. a = Instance.new("Sound",workspace)
  37. a.SoundId = "rbxassetid://"..id..""
  38. a.Name = "RAINING MEN"
  39. a.Volume = 58359
  40. a.Looped = true
  41. a:Play()
  42. d = Instance.new("DistortionSoundEffect",a)
  43. d.Level = 1
  44. end
  45. end
  46. end)
  47.  
  48. msg = coroutine.create(function()
  49. while wait(0.4) do
  50. msg = Instance.new("Message",workspace)
  51. msg.Text = message
  52. wait(0.4)
  53. msg:Destroy()
  54. end
  55. end)
  56.  
  57.  
  58. rain = coroutine.create(function()
  59. while wait(10 % 1 * 1e2) do
  60. part = Instance.new("Part",workspace)
  61. part.Name = "Toad"
  62.  
  63. mesh = Instance.new("SpecialMesh",part)
  64.  
  65. sound = Instance.new("Sound",workspace)
  66.  
  67. part.CanCollide = false
  68. part.Size = Vector3.new(440,530,380)
  69. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  70.  
  71. mesh.MeshType = "FileMesh"
  72. mesh.Scale = Vector3.new(5,5,5)
  73. mesh.MeshId = "rbxassetid://432602064"
  74. mesh.TextureId = "rbxassetid://432602074"
  75. end
  76. end)
  77. coroutine.resume(sky)
  78. coroutine.resume(del)
  79. coroutine.resume(sound)
  80. coroutine.resume(msg)
  81. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement