This repository has been archived on 2025-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
2025-06-05 14:13:47 +07:00

14 lines
308 B
Lua

function opponentNoteHit()
if not hideHud then
health = getProperty('health')
setProperty('health', health -0.1);
end
if hideHud then
health = getProperty('health')
if getProperty('health') > 0.02264 then
setProperty('health', health- 0.02263);
end
end
end