Advertisement
Exploitable

Untitled

Jun 30th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. local CurrentHealth = Humanoid.Health
  2.  
  3. Humanoid.HealthChanged:connect(function(Health)
  4. if Health < CurrentHealth and Health > 0 then -- Bot Damaged
  5. Torso.HurtSound:Play()
  6. elseif Health <= 0 then
  7. Torso.DeathSound:Play()
  8. end
  9. CurrentHealth = Health
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement