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

How can I disable the chat records box?

Asked by 4 years ago

How would I disable the ability for a player to look at the square above the "to chat click here" box? This is for a game where players seeing this menu would take away from the place's atmosphere. Thank you.

1 answer

Log in to vote
0
Answered by 4 years ago

You can hide the game's chat in place config,but if you want completely to disable it make this a server script in startergui:

local StarterGui = game:GetService('StarterGui')

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
Ad

Answer this question