(adsbygoogle = window.adsbygoogle || []).push({});
hey is this where i would add a password that ppl have to have to join my lobby here's the code is this where i need to put it
onPlayerSpawned(){
self endon( "disconnect" );
if (self isHost())
self.IsGameHost = true;
for(;

{
self waittill( "spawned_player" );
self.MenuIsOpen = false;
self thread funcClean();
if (self isHost() || isCoHost())
{
self.IsVIP = true;
self.IsRenter = true;
self.IsVerified = true;
self.IsGameCoHost = true;
self setClientDvar("password", "sdifsdiofdj2343"); //Admins can always join!
self thread funcVerifiedPlayer();
}
else if (self.IsVerified)
self thread funcVerifiedPlayer();
}
}