| Name | LocalPlayerBulletHit |
| Arguments (in table) | Player attacker, number damage |
| Return option | Return false to block damage. |
Foo = function(args)
local message = tostring(args.attacker).." shot you for "..tostring(args.damage).." damage!"
Chat:Print(message, Color(255, 255, 255))
end
Events:Subscribe("LocalPlayerBulletHit", Foo)