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

How developers do this with chat?

Asked by 7 years ago

Let me just say I am not asking for a script just how they do it. Usually some developers create their own chat system with gui. I was wondering how they script the regular chat bar to be invisible or remove it? I already know how to do the chat in gui just wondering how I disable the regular roblox chat. Is it with SetSuperSafeChat?

1 answer

Log in to vote
1
Answered by
deris88 146
7 years ago
Edited 7 years ago

It is very simple, you can find all the information here http://wiki.roblox.com/index.php?title=Disabling_parts_of_the_game_interface or Insert local script into your Starter Backpack and use this command:

local StarterGui = game:GetService('StarterGui')

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

Answer this question