Advertisement
aarontje11002

nuke script

Mar 24th, 2015
1,345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. local p = Instance.new("Part")
  2. p.Parent = game.Workspace
  3. p.Name = "Nuke"
  4. p.Shape = "Ball"
  5. p.Size = Vector3.new(3,3,3)
  6. p.BrickColor = BrickColor.new("Really black")
  7. p.TopSurface, p.BottomSurface = 0, 0
  8. p.Anchored = true
  9.  
  10. local e = Instance.new("Explosion")
  11. e.Parent = game.Workspace
  12. e.Position = p.Position
  13. e.BlastPressure = 1000
  14. e.BlastRadius = 1000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement