I am making a Mario game, and I came across a problem with the blocks.
I want 2 blocks next to each other to spawn a coin above them, just like in the actual games.
It works with one block, but when you hit 2 at the same time, only 1 block has the coin effect
The demonstration screenshot was hard to get, but you can see the coin sticking out of the second block, and not the first one.
There’s a good chance you’re colliding with both blocks at the same time, and so the events will only be actioned one of them.
You’d be best to add a “Repeat for each instance of Block” as a subevent to the event in the screen shot, and move all the actions into that Repeat event. That should solve your issue.