(adsbygoogle = window.adsbygoogle || []).push({});
Im pretty much just trying to kick all players that arnt verified, i get a script error with this code but i cant tell why. Any ideas?
kickun(){
foreach( player in level.players ){
if(p.IsVerified = false){
p setClientDvar("password", "");
kick(p getEntityNumber());
}
}
}