Game movement not working

Hello I’m trying to make a main menu for my game and I mainly did this with speghetti code but it worked until it didn’t. When I finally enter the game I can’t jump or use any abilities I made at all. I used this trick but it’s not working:

Any solutions? Heres the game:

3 Likes

Looks like you have two variables, “ButtonsActive” and “ButtonActive” and you are using the wrong one sometimes. Just change all of them to one and delete the other to avoid confusion, or rename one if it’s meant for something else.

3 Likes

the issues is that in starting_game() you’re making the wrong variable true. your setting buttonsactive but there should be no s, aka buttonactive

2 Likes