Music Tiles Game Creation

Hi, I wanted to create a games like “Piano Tiles”. My sequence tiles will be A1,B1,C1,D1,D2,C2. The next tiles will only be appear when the y-position of the current tiles is more than 540. My problem occur when I want to change from D2 tiles to C2 tiles. It will move together as i want D2 coming first then C2. I was thinking maybe the tiles at the same BoxD not detected the next mode which is “D2-1”.

Do you guys have any idea to fix this problem? Kindly need your help on this matter :grinning_face_with_smiling_eyes:

What are you doing with the old tiles object from C1 and D1? If you don’t delete them, then the Tiles created for C1 and D1 will meet the conditions highlighted below, as there will be tiles with an X value of BoxD and BpxC :

and as a result both the tiles for D2 and C2 will be created at the same time.

Thank you !. Now it can work :grin: