Advertisement
p0vdnot

Nuke

Dec 2nd, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. wait(3)
  2. local nuke = Instance.new("Part")
  3. nuke.Name = "NUKE"
  4. nuke.Parent = game.Workspace
  5. nuke.Size = Vector3.new(4, 4, 4)
  6. nuke.Position = Vector3.new(0,0,0) + Vector3.new(0,100,0)
  7. nuke.BackSurface = Enum.SurfaceType.Smooth
  8. nuke.BottomSurface = Enum.SurfaceType.Smooth
  9. nuke.FrontSurface = Enum.SurfaceType.Smooth
  10. nuke.LeftSurface = Enum.SurfaceType.Smooth
  11. nuke.RightSurface = Enum.SurfaceType.Smooth
  12. nuke.TopSurface = Enum.SurfaceType.Smooth
  13. nuke.BrickColor = BrickColor.new("Really black")
  14.  
  15. local decal = Instance.new("Decal")
  16. decal.Parent = nuke
  17. decal.Texture = "rbxassetid://146543147"
  18.  
  19. wait(2)
  20. local clank = Instance.new("Sound")
  21. clank.Name = "Clank"
  22. clank.Parent = game.Workspace
  23. clank.SoundId = "rbxassetid://1545710838"
  24. clank.Volume = 10
  25. clank:Play()
  26.  
  27. local nukewarning = Instance.new("Sound")
  28. nukewarning.Name = "Alarm"
  29. nukewarning.Parent = game.Workspace
  30. nukewarning.SoundId = "rbxassetid://433848566"
  31. nukewarning.Volume = 10
  32. nukewarning:Play()
  33.  
  34. wait(5)
  35.  
  36. nuke:Destroy()
  37.  
  38. nukewarning:Stop()
  39.  
  40. local nukeexplosion = Instance.new("Sound")
  41. nukeexplosion.Name = "Nuke"
  42. nukeexplosion.Parent = game.Workspace
  43. nukeexplosion.SoundId = "rbxassetid://2621252081"
  44. nukeexplosion.Volume = 10
  45. nukeexplosion:Play()
  46.  
  47. for i,v in pairs(game.Players:GetPlayers()) do
  48. local gui = Instance.new("ScreenGui")
  49. gui.Parent = v.PlayerGui
  50. frame = Instance.new("Frame")
  51. frame.Parent = gui
  52. frame.BackgroundTransparency = 1
  53. frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  54. frame.BorderSizePixel = 0
  55. frame.Size = UDim2.new(1, 0, 1, 36)
  56. frame.Position = UDim2.new(0, 0, 0, -36)
  57. end
  58.  
  59.  
  60. for i = 1,10,1 do
  61. frame.BackgroundTransparency = frame.BackgroundTransparency - .1
  62. wait(0.01)
  63. end
  64.  
  65. wait(5)
  66.  
  67. for i,v in pairs(game.Workspace:GetDescendants()) do
  68. if v:IsA("Part") or v:IsA("UnionOperation") then
  69. v.Material = Enum.Material.CorrodedMetal
  70. end
  71. end
  72.  
  73. for i = 1,10,1 do
  74. frame.BackgroundTransparency = frame.BackgroundTransparency + .1
  75. wait(0.01)
  76. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement