Advertisement
DogeHDscript

Very short Nuke script working!

Nov 4th, 2016
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. Fuse = script.Parent
  2.  
  3. function onTouched(hit)
  4. Fuse.Smoke.Enabled = true
  5. wait(5)
  6. explosion = Instance.new("Explosion")
  7. explosion.BlastRadius = 20
  8. explosion.BlastPressure = 100
  9. explosion.Position = script.Parent.Position
  10. explosion.Parent = game.Workspace
  11. script.Parent.Parent:remove()
  12. connection:disconnect()
  13. end
  14.  
  15. connection = Fuse.Touched:connect(onTouched)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement