I'm trying to figure out how to keep score based on how many instances of an object are overlapping another object.
I've tried:
For Each + is overlapped > Add 1 to Score
For Each (Ordered) + is overlapped > Add 1 to Score
Object is overlapping > Toggle Instance Boolean
Compare Boolean > Add 1 to Score
All of these seem to work, except the score just keeps running up every tick once an instance is overlapping instead of just adding one to the current score.