Advertisement
AidenTheBuddy

Untitled

Apr 6th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function onTouched(hit)
  2. local e = Instance.new("Explosion")
  3. e.Parent = game.Workspace
  4. e.Position = script.Parent.Position
  5. e.BlastRadius = 58
  6. e.BlastPressure = 8000000
  7. script.Parent.Explosion:play()
  8. script.Parent.onImpact:play()
  9. wait(0)
  10. script.Parent:remove()
  11. end
  12.  
  13. connection = script.Parent.Touched:connect(onTouched)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement