I understand this is not the place to ask for scripts however I do not understand how to remove them. Firstly a script to remove the Menu button and the use of ESC to bring it up, then remove Mouselock shift. The Player GUI where it shows all the names, and the toolbar GUI also need to be removed, but I would like to keep the Health GUI. Thank you in advance.
I have a smaller script that you can use to get rid of the backpack, leaderboard, and the healthbar. Here ya go..
game.StarterGui:SetCoreGuiEnabled(0, false) game.StarterGui:SetCoreGuiEnabled(2, false) game.StarterGui:SetCoreGuiEnabled(3, false)
The 4 is an enum, I believe. Here's the wiki link to "Enum's". You can change the script depending on what you want taken away. Oh, and put that in the StarterGui
You cannot disable the Menu button, nor Mouselock, nor the ESC key binding to the Menu.
You can, however, disable the PlayerList
and the Backpack
(Toolbar) from a LocalScript
like-so:
game.StarterPack:SetCoreGuiEnabled("Backpack",false) game.StarterPack:SetCoreGuiEnabled("PlayerList",false)
Read more about this method here.
You will need to hide them each time the Player
spawns.