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

Manipulate with local player's CoreGui?

Asked by
iNicklas 215 Moderation Voter
9 years ago

I want to make a settings gui, and for that a graphics tab.

0
Is it possible? iNicklas 215 — 9y
0
You cannot remove ROBLOX's default menu but http://wiki.roblox.com/index.php?title=RenderSettings should help with graphics and not sure of what Settings you'll want. alphawolvess 1784 — 9y
0
I don't think it's possible to edit the CoreGui from a normal script. You either need to use the command bar or a CoreScript to access it. Spongocardo 1991 — 9y

1 answer

Log in to vote
0
Answered by 9 years ago

You use game.StarterGui:SetCoreGuiEnabled() to enable or disable parts or all of the CoreGui. It can be used from a LocalScript. Check documentation in the wiki Here is an example:

game.StarterGui:SetCoreGuiEnabled(PlayerList,false)

You can then use a standard Gui element positioned where you want inside the CoreGui bar.

0
Graphics, not player list. iNicklas 215 — 9y
0
Ohhhh.... That one :) Try to make a custom one. SetCoreGuiEnabled does not work with that pane. KilowattLaser 5 — 9y
Ad

Answer this question