Help with Run Parallel involving Collisions

Hello, I’m currently building a basketball game in CoBlocks where the ball will go through the hoop if the needle stops at the green bar, and it goes air ball when it stops at yellow or red bar. Thus, there are 3 “When Collision” blocks. However, I tried the above code and also parallel, but only the third “When Collision” took place.

Help please.

Hi, If you use Collides with block several times for the same object, it rewrites the waiting loop and only last one is executed.

You can get around it if you make all logic inside one collision block like this:

Or if you change the order of objects in Collides with block:

Hope that helps

Thank you. It works!