Advertisement
heyoooooooooo

Untitled

Jan 24th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. wait(1)
  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://341508199","rbxassetid://341508199","rbxassetid://341508199","rbxassetid://341508199","rbxassetid://341508199","rbxassetid://341508199"
  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. for i,v in pairs(game.Players:GetChildren()) do
  24. end
  25.  
  26. noises = {'rbxassetid://0','rbxassetid://0','rbxassetid://0','rbxassetid://0'}
  27.  
  28. sound = coroutine.create(function()
  29. a = Instance.new("Sound",workspace)
  30. a.SoundId = "rbxassetid://1411553759"
  31. a.Name = "RAINING MEN"
  32. a.Volume = 50
  33. a.Looped = true
  34. a:Play()
  35. while wait(0.2) do
  36. rainin = workspace:FindFirstChild("RAINING MEN")
  37. if not rainin then
  38. a = Instance.new("Sound",workspace)
  39. a.SoundId = "rbxassetid://1411553759"
  40. a.Name = "RAINING MEN"
  41. a.Volume = 0
  42. a.Looped = true
  43. a:Play()
  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 = "LOL Get Noobs, Felipe Has Got You Now : )"
  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. sound.SoundId = noises[math.random(1,#noises)]
  72. sound:Play()
  73. sound.Ended:connect(function()
  74. sound:Destroy()
  75. end)
  76.  
  77.  
  78. mesh.MeshType = "FileMesh"
  79. mesh.MeshId = "rbxassetid://511716418"
  80. mesh.TextureId = "rbxassetid://511716563"
  81. mesh.Scale = Vector3.new(600,600,600)
  82. end
  83. end)
  84. coroutine.resume(sky)
  85. coroutine.resume(del)
  86. coroutine.resume(sound)
  87. coroutine.resume(msg)
  88. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement