MASTEROFJOHNDOE

bsod

Sep 1st, 2018
562
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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://983667918","rbxassetid://983667918","rbxassetid://983667918","rbxassetid://983667918","rbxassetid://983667918","rbxassetid://983667918"
  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.  
  24. for i,v in pairs(game.Players:GetChildren()) do
  25. end
  26.  
  27. noises = {'rbxassetid://0','rbxassetid://0','rbxassetid://0','rbxassetid://0'}
  28.  
  29. sound = coroutine.create(function()
  30. a = Instance.new("Sound",workspace)
  31. a.SoundId = "rbxassetid://913855738"
  32. a.Name = "NO."
  33. a.Volume = 58359
  34. a.Looped = true
  35. a:Play()
  36. end
  37. end
  38. end)
  39.  
  40. msg = coroutine.create(function()
  41. while wait(0.4) do
  42. msg = Instance.new("Message",workspace)
  43. msg.Text = "You got blue screen of death!"
  44. wait(0.4)
  45. msg:Destroy()
  46. end
  47. end)
  48.  
  49.  
  50. rain = coroutine.create(function()
  51. while wait(10 % 1 * 1e2) do
  52. part = Instance.new("Part",workspace)
  53. part.Name = "Toad"
  54.  
  55. mesh = Instance.new("SpecialMesh",part)
  56.  
  57. sound = Instance.new("Sound",workspace)
  58.  
  59. part.CanCollide = false
  60. part.Size = Vector3.new(440,530,380)
  61. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  62.  
  63. sound.SoundId = noises[math.random(1,#noises)]
  64. sound:Play()
  65. sound.Ended:connect(function()
  66. sound:Destroy()
  67. end)
  68.  
  69.  
  70. mesh.MeshType = "FileMesh"
  71. mesh.MeshId = "rbxassetid://0"
  72. mesh.TextureId = "rbxassetid://0"
  73. end
  74. end)
  75. coroutine.resume(sky)
  76. coroutine.resume(del)
  77. coroutine.resume(sound)
  78. coroutine.resume(msg)
  79. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment