Removing Freecam from game

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.

Roblox systems should only allow people with creator acess to use the build in freecam system.

If I go into other games it allowes me to use Free cam.

That shouldnt be possible. Something went wrong there.

A:

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

Freecam is only accessible by the game developers