How to tell how many Health Points the Humanoid Lost?

Starting this topic off simple and not confusing. How to tell how many Health Points the Humanoid Lost? Example: Humanoid lost 20 health - 80 Health - it would print 20. Another Example: The humanoid died. It would print 100 - I want to achieve this in a simple way. As-fore I am making a blood system and the blood amount depends on how many health points you lost.

Any responses would be appreciated relating to this topic.

local HealthLost = (Humanoid.MaxHealth - Humanoid.Health)

print(HealthLost)
1 Like

Thank you this solution worked very well!