In my game I have small bee enemies that attack the player in groups. I want them to do x amounts of damage per second per bee, but no matter the amount of bees overlapping the player it only accounts for the damage of one bee, not 10 for example. Is there a way to count the number of sprites overlapping another sprite so I can just multiply the damage of one bee by the total number of overlapping bees. Or is there a way for every bee to do individual damage on the player? All I have tried is; (bee) overlapping (enemy), every (1) seconds -> (enemy) subtract (x damage) from ( health). I don't get why this doesn't work, but I haven't tried much. Thanks to anyone who can help.