Advertisement
Finnegan5

Nuke

Jul 22nd, 2017
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. --[[local ONOES = Instance.new("Sound")
  2. ONOES.SoundId = "d5609845694b62f45afd8da79aa190f7"
  3. ONOES.Volume = 1
  4. ONOES.Looped = true
  5. ONOES.archivable = false
  6. ONOES.Parent = workspace]]
  7.  
  8. --game:GetService("Debris").MaxItems = 350 -- Decrease if you have a laggy computer
  9. local s = Instance.new("Sound")
  10. s.Volume = 1
  11. sounds = {"rbxasset://sounds\\rocket shot.wav", "rbxasset://sounds\\collide.wav"}
  12. local workspace = game.Workspace
  13.  
  14. function check(object)
  15.  
  16. if object.className == "Model" and object:findFirstChild("Humanoid") == nil then
  17. for i, v in ipairs(object:getChildren()) do
  18. check(v)
  19. wait()
  20. end
  21. end
  22. if object:IsA("Part") then
  23. local soundclone = s:Clone()
  24. soundclone.SoundId = sounds[math.random(1, 2)]
  25. game:GetService("Debris"):AddItem(object, 300)
  26. soundclone.Pitch = math.random(9, 12)/10
  27. soundclone.Parent = object
  28. delay(0.1, function() soundclone:Play() end)
  29. delay(0, function()
  30. for i = 1, 15*1.5 do
  31. local e = Instance.new("Explosion")
  32. e.Parent = workspace
  33. e.BlastPressure = 1e4*object:getMass()
  34. e.Position = object.Position
  35. object.Anchored = false
  36. object:BreakJoints()
  37. wait(1.5)
  38. end
  39. end)
  40. end
  41. end
  42.  
  43. --ONOES:Play()
  44. script.Parent.Parent.Name = ""
  45. local c = script.Parent.CFrame
  46. for i = 0, 1, 0.05 do
  47. script.Parent.CFrame = c - Vector3.new(0, i, 0)
  48. wait()
  49. end
  50. local m = Instance.new("Message")
  51. m.Text = "YOU PUSHED TEH BUTTON NAO U WILL GO BAI BAI."
  52. m.Parent = workspace
  53. local color = game.Lighting.Ambient
  54. delay(0, function()
  55. while true do
  56. game.Lighting.Brightness = 1
  57. game.Lighting.Ambient = Color3.new(100, 0, 0)
  58. game.Lighting.ColorShift_Top = Color3.new(1, 0, 0)
  59. game.Lighting.ColorShift_Bottom = Color3.new(1, 0, 0)
  60. wait(1)
  61. game.Lighting.Brightness = 1
  62. game.Lighting.Ambient = color
  63. game.Lighting.ColorShift_Top = Color3.new(0, 0, 0)
  64. game.Lighting.ColorShift_Bottom = Color3.new(0, 0, 0)
  65. wait(1)
  66. end
  67. end)
  68. wait(5)
  69. m:remove()
  70. script.Parent.Parent.Name = "REVENGE IS... Nuking"
  71. for i, v in ipairs(workspace:getChildren()) do
  72. check(v)
  73. wait()
  74. end
  75. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement