Problem:When i run the game it doesnt give me the window for the admin panel, Im trying to make no tabs but only one window specially for admins when login they have tabs for they're verbs.
You're using the incorrect operator.
The && operator is the binary of "and" so you're pretty much calling if(usr.key == "Gamemaster22" AND usr.key == "King-okal")
Instead, replace && with | so it's if(usr.key == "Gamemaster22" | usr.key == "King-okal")
The && operator is the binary of "and" so you're pretty much calling if(usr.key == "Gamemaster22" AND usr.key == "King-okal")
Instead, replace && with | so it's if(usr.key == "Gamemaster22" | usr.key == "King-okal")