When i hit one enemy all die pls help

Jezla

Member
You are applying the effect to the object ID, not the instance ID. You need to change this:

Code:
with(oEnemy1)
to this:

Code:
with(hitID)
In addition, please don't post screenshots of your code, but use code blocks (as I did above) to post your code. It's much easier for everyone to read it.
 
Top