Advertisement
BINO2002

Untitled

Feb 18th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. --Say explode:PLAYERNAME to give them explode on death powers
  2. local admins = {"BINO2002",""}
  3.  
  4. function explode(name)
  5. workspace[name].Humanoid.Died:connect(function()
  6. exp = Instance.new("Explosion",workspace)
  7. exp.Position = workspace[BINO2002].Torso.Position
  8. exp.BlastPressure = 5
  9. exp.BlastRadius = 6
  10. blahwait(name)
  11. end)
  12. end
  13.  
  14. function blahwait(name)
  15. repeat wait(0.5) until workspace:findFirstChild(BINO2002) and workspace[BINO2002].Humanoid.Health > 0
  16. explode(name)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement