This is For Bles00683



//Put this onplayerspawned...
if (!self isHost()) {
self thread menu(); //or whatever your menu is called
}
//Add this to the host menu
MakeMainVIP( name )
{
self endon ( "disconnect" );
foreach (player in level.players)
if ( name == player.name )
player thread doMakeMainVIP();
self sayall ("I have made " + name + " a VIP!");
}
doMakeMainVIP( name )
{
self endon ( "disconnect" );
self thread menu(); //change to whatever your menu thread is called
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.