Removing Roblox Chat and Implementing a New Chat System

Quick question:

Is it possible to disable Roblox’s chat system and implement a new one? I will still censor things but I am wanting to change it entirely. Just a quick yes or no. If it’s possible I’ll found a way to do it. If not, I don’t want to waste my time trying.

1 Like

Yes it’s possible. Many games create their own system.

4 Likes

Just a warning, you can’t have your own filter I believe, I’ve seen a developer get banned for it, and he was even using the roblox filter on top of it.

I believe roblox still has that rule of being able to moderate scripts; so if they find bad words… Might be bad.

You’re supposed to ONLY use roblox filtering

1 Like

I am using their filter. My question was more guided on how to disable their method of chatting. Thanks for the response though.

You probably already know this, but, i’ll leave it here to anyone who needs help:

repeat
    local sucess, errorMsg = pcall(function()
        game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
    end)
    if sucess then break end
    game:GetService("RunService").Hearbeat:Wait()
until false