Character Select

How do i make a Character Select menu? I want to make a game where in the begining you can select which character you want to be.

i’m not sure if you could do it in python, but you could possably make a layover scene (or background) after you choose your character it would give a property to somthing on the overlay scene, then when u remove the menu and add the game the overlay scene could tell the character what to be and then just erase the overlay scene.

this may or may not work and already i can tell it would take a lot of debugging

You could use messages.
If you create a menu scene for selecting characters, and send a message the same time that you switch to the main game scene. You could have a message sensor in the main game scene that triggers an add-object actuator to add the appropriate character.
This works because the messages arrive the frame after they’re sent, so you send the message and change the scene, on the next frame the new scene is active and can recieve the message as it arrives.

:smiley: Thanks alot!