Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

how to remove the roblox playerlist in settings?

Asked by 3 years ago

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?

3 answers

Log in to vote
0
Answered by
imKirda 4491 Moderation Voter Community Moderator
3 years ago
Edited 3 years ago

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 :(

1
thanks for telling me. that is a disappointment though, xd. Partykidcrazy2 3 — 3y
0
Hi imKirda, actually your sadly wrong, you have control over playerlists in a couple ways, disabling it, and customizing it, please read this post before guessing, thanks ;D https://developer.roblox.com/en-us/articles/Disabling-Parts-of-Game-Interface CodedStars 70 — 3y
0
but that does not change the playerlist in the [esc] roblox menu :) imKirda 4491 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

Try this, (localscript)

game.StarterGui:SetCoreGuiEnabled("PlayerList", false)
Log in to vote
0
Answered by 3 years ago

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

Answer this question