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.
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 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