Advertisement
flyman78

Untitled

Jul 1st, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Tool = Instance.new("Tool",Workspace)
  2. Part = Instance.new("Part",Tool)
  3. Part.Name = "Handle"
  4.  
  5. Part.Activated:connect(function()
  6. Part.Touched:connect(function(hit)
  7. if hit.Parent:findFirstChild("Humanoid") then
  8. humanoid = hit.Parent:findFirstChild("Humanoid")
  9. humanoid.Health = humanoid.Health - 99999999999999999999
  10. end
  11. end)
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement