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?
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:
1 | local StarterGui = game:GetService( 'StarterGui' ) |
2 |
3 | StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false ) |