I have searched and searched and searched even more and I can't seem to find this, Petit World. If anyone can post a code for the game or a link to any video that would be great!
Derp- I will try to make an actually good looking version then sure.
Talen- The engine that the blocks are scrolling on is where 150 sprites get update to the current sprites internal position variable +current x-y position- modulate (current sprite size).This is then updated for every sprite to change costume once time is given. I wouldn't know how to add more without it being too laggy.
It seems like you are trying to make a menu that will pass when you press "A". Here is some code for that.
'YOUR CODE HERE BEFORE BUTTON PRESS
REPEAT
BR=BUTTON(2)
UNTIL BR==#A
'MORE CODE, INGAME MAYBE
Now, what does it mean?
BR=BUTTON(2)- This makes BR your return value. 2 (if i remember) should make it so it won't repeat the press.
The until makes it pass when the button A is pressed