I need some help in making a way to disable Freecam from the game.
As some people decided to abuse the Freecam feature to abuse other parts of my game.
I would like to know if it is possible and if it is then if there is any scripts or solution to it.
Disabling the command from being run with a script should suffice in most cases @FX::OnCommand(“freecam”) {
if( Caller.AdminLevel < 2 ) { // If Player isn’t admin level 2 or greater they can’t use the command
Gamerules.ServerAdminList.MessagePlayer(Caller.Name, “You don’t have permission to use Freecam.”);
return true;
}
}
You could also disable the hotkey for opening the Freecam GUI