L3RG3T

Untitled

Mar 4th, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. wait(1)
  2.  
  3. local song = Instance.new("Sound", game.Workspace)
  4. song.SoundId = "rbxassetid://141509625"
  5. song.Volume = 1
  6. song.Looped = true
  7. song.Name = "FUCK YOU"
  8. song:Play()
  9.  
  10. math.randomseed(tick() % 1 * 1e6)
  11. sky = coroutine.create(function()
  12. while wait(0.3) do
  13. s = Instance.new("Sky",game.Lighting)
  14. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  15. s.CelestialBodiesShown = false
  16. end
  17. end)
  18.  
  19.  
  20. del = coroutine.create(function()
  21. while wait(0.3) do
  22. for i,v in pairs(workspace:GetChildren()) do
  23. if v:IsA("Model") then
  24. v:Destroy()
  25. end
  26. end
  27. end
  28. end)
  29.  
  30.  
  31.  
  32. for i,v in pairs(game.Players:GetChildren()) do
  33. end
  34.  
  35. noises = {'rbxassetid://230287740','rbxassetid://271787597','rbxassetid://153752123','rbxassetid://271787503'}
  36.  
  37. sound = coroutine.create(function()
  38. a = Instance.new("Sound",workspace)
  39. a.SoundId = "rbxassetid://902601313"
  40. a.Name = "RAINING MEN"
  41. a.Volume = 58359
  42. a.Looped = true
  43. a:Play()
  44. while wait(0.2) do
  45. rainin = workspace:FindFirstChild("RAINING MEN")
  46. if not rainin then
  47. a = Instance.new("Sound",workspace)
  48. a.SoundId = "rbxassetid://902601313"
  49. a.Name = "RAINING MEN"
  50. a.Volume = 58359
  51. a.Looped = true
  52. a:Play()
  53. end
  54. end
  55. end)
  56.  
  57. msg = coroutine.create(function()
  58. while wait(0.4) do
  59. msg = Instance.new("Message",workspace)
  60. msg.Text = "ITS RAINING MEAN"
  61. wait(0.4)
  62. msg:Destroy()
  63. end
  64. end)
  65.  
  66.  
  67. rain = coroutine.create(function()
  68. while wait(10 % 1 * 1e2) do
  69. part = Instance.new("Part",workspace)
  70. part.Name = "Toad"
  71.  
  72. mesh = Instance.new("SpecialMesh",part)
  73.  
  74. sound = Instance.new("Sound",workspace)
  75.  
  76. part.CanCollide = false
  77. part.Size = Vector3.new(440,530,380)
  78. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  79.  
  80. sound.SoundId = noises[math.random(1,#noises)]
  81. sound:Play()
  82. sound.Ended:connect(function()
  83. sound:Destroy()
  84. end)
  85.  
  86.  
  87. mesh.MeshType = "FileMesh"
  88. mesh.MeshId = "rbxassetid://430210147"
  89. mesh.TextureId = "rbxassetid://430210159"
  90. end
  91. end)
  92. coroutine.resume(sky)
  93. coroutine.resume(del)
  94. coroutine.resume(sound)
  95. coroutine.resume(msg)
  96. coroutine.resume(rain)
Add Comment
Please, Sign In to add comment