i know how to remove the player tab, but not where it says reset, leave game, and resume. if anybody can help, thanks
wait() game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
how can i completely remove player names off of the settings?
You can't, Roblox gives you 0 control over the menu, you can't do anything with it. If you want to change that for real roblox game it's not possible.
However, if you want to prank your dev sister and have knowledge of C++
, you can modify internal roblox studio files how you want. The changes will be local so only you will see them, they will also reset when roblox publishes new update :(
Try this, (localscript)
game.StarterGui:SetCoreGuiEnabled("PlayerList", false)
Hello, the guy @imKirda is wrong about it, here you can learn how to mess around with player list interface.
https://developer.roblox.com/en-us/articles/Disabling-Parts-of-Game-Interface
And how to disable it is by making a local script and put it inside startergui
Game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
@partykidcrazy2 here is your answer ;D