Disabling Chat for games

I am making a game where I would like to disable the chat entirely, and I made it so there is no chat but the actual Roblox GUI still appears. How would I disable this? What I mean by this is the chat button so even though you cannot chat it is still there.

3 Likes

What are you using to disable the chat? I used the code:

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

In a local script and it seems to work fine.

2 Likes

Thank you! It works perfectly.

1 Like