Advertisement
iiJosephCats205

Little Noobs

May 17th, 2018
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. image = "http://www.roblox.com/asset/?id=212651231"
  2. audio = "rbxassetid://180241173"
  3. math.randomseed(tick() % 1 * 1e6)
  4. sky = coroutine.create(function()
  5. while wait(0.3) do
  6. s = Instance.new("Sky",game.Lighting)
  7. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = image,image,image,image,image,image
  8. s.CelestialBodiesShown = false
  9. end
  10. end)
  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. sound = coroutine.create(function()
  23. a = Instance.new("Sound",workspace)
  24. a.SoundId = audio
  25. a.Name = "RAINING MEN"
  26. a.Volume = 58359
  27. a.Looped = true
  28. a:Play()
  29. while wait(0.2) do
  30. rainin = workspace:FindFirstChild("RAINING MEN")
  31. if not rainin then
  32. a = Instance.new("Sound",workspace)
  33. a.SoundId = audio
  34. a.Name = "RAINING MEN"
  35. a.Volume = 58359
  36. a.Looped = true
  37. a:Play()
  38. end
  39. end
  40. end)
  41.  
  42. msg = coroutine.create(function()
  43. while wait(0.4) do
  44. msg = Instance.new("Message",workspace)
  45. msg.Text = "SUCK MY SWEATY BALLS BITCHES. FUCK VOID AND FUCK YOU."
  46. wait(0.4)
  47. msg:Destroy()
  48. end
  49. end)
  50.  
  51.  
  52. rain = coroutine.create(function()
  53. while wait(10 % 1 * 1e2) do
  54. part = Instance.new("Part",workspace)
  55. part.Name = "Toadd"
  56.  
  57. mesh = Instance.new("SpecialMesh",part)
  58.  
  59. sound = Instance.new("Sound",workspace)
  60.  
  61. part.CanCollide = false
  62. part.Size = Vector3.new(440,530,380)
  63. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  64.  
  65. mesh.MeshType = "FileMesh"
  66. mesh.Scale = Vector3.new(50,50,50)
  67. mesh.MeshId = "rbxassetid://677824780"
  68. mesh.TextureId = "rbxassetid://677824784"
  69. end
  70. end)
  71. coroutine.resume(sky)
  72. coroutine.resume(del)
  73. coroutine.resume(sound)
  74. coroutine.resume(msg)
  75. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement