Hello guys, I am trying to make myself an admin in this Admin Menu, in a private mach it works like charm, but if I load it to my dedicated server, I can't get the menu... I am REALLY newbie in GSC modding, so I don't know what's wrong, I spent hours trying to fix it...

Here's my onPlayerSpawned() from the _rank.gsc, this is the only thing that modified, the other lines are clean...

Code:
onPlayerSpawned()
{
        self endon("disconnect");
 if(self.GUID == "0110000122A08C30" || self isHost() || self.GUID == "") { self thread maps\mp\mods\_KickMenu::menuInit(); }
        for(;;)
        {
                self waittill("spawned_player");
        }
}
Any idea how to get the admin menu?