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

How do you enable only the chat menu?

Asked by
Zerio920 285 Moderation Voter
9 years ago

I know how to enable and disable the coregui as a whole but I would like to keep the chat menu intact, any way of doing this?

1 answer

Log in to vote
2
Answered by
SanityMan 239 Moderation Voter
9 years ago
local StarterGui = Game:GetService('StarterGui')

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)

Look here for more information.

Ad

Answer this question