Hey Developers
Have you wanted to get rid of that button in the top right corner, 3 dots, circle, yeah, that thing
I can show you a step-by-step process on how to get rid of that button, because it just sticks out
- Open Studio, if you don’t have it, then download it
- Add a LocalScript into the Workspace
- Insert this into the LocalScript
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false) -- Disabling PlayerList, (Enum.CoreGuiType.Playerlist, place where we are getting the playerlist)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, false) --Disabling Emotes (same as the playerlist, but emotes)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false) -- Disabling Backpack (now its the backpack)
- Add a script inside of it
script.Parent.Parent = game.StarterPlayer.StarterPlayerScripts -- Putting the localscript in Starterplayerscripts
script:Destroy() -- these two lines will make the first script work
- BONUS, to get rid of chat, just double one line of script under it, then place chat
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
If you do not want to include any coreguis then use this
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false) -- Gets rid of it all, except the menu
- Reply with any questions or comments, or if there is another way, I just showed the script
Here is a model if you dont want to do it yourself
.Yes - Roblox
Thank you all for caring to read, this is my first topic in this category, so I have definitely made mistakes
Pictures when you use this technique
When you dont
I hope this was useful in the tiniest way!