Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

ello! so i am messing with the code right now and i ran into a problem, the "elif not main_menu:" Is not working this error keeps popping up

and here is what it looks like in the code, I don't know where i went wrong.

Ohhhh taking a look at your code, it looks like you have two many `else`s? And the `else` should always come at the end of a list of ifs.

So you can have:

`if...`

`elif...`

`elif...`

`else...`

In that order, but you can't have an else before an elif and you can only have one else total?? So I would move your `elif` beneath your `if` and get rid of one of the two `else`s. Does that make sense/help at all? 🤔