I have made a chat GUI, and it works, but I don't know how to remove the standard roblox chat gui?
The method that you are looking for is called setCoreGuiEnabled
and you use it like this from inside a LocalScript
:
game.StarterGui:setCoreGuiEnabled("Chat",false)
You can disable other CoreGui elements as well, such as "PlayerList"
,"Backpack"
, and "Health"
, or you can enable/disable them all using the "All"
identifier.
If you want to use your chat GUI, but have the chat bubbles above players' heads, simply go into the games "Configure" page and set the chat to "Bubble Only"