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