How to hide roblox default chat annoucements

I am trying to get rid of this message everytime i change team becasue afterwards it just gets filled with these.

-- {Team} You are now part of the 'Blue' team.

1 Like
  1. Fork ChatModules (How to Fork (Wiki))
  2. Open up TeamChat ModuleScript (It’s inside ChatModules).
  3. Go to line 166 and remove everything inside if speakerObj:IsInChannel(channel.Name) statement.
  4. Profit

If you’re not sure about what to delete, you need to delete this:

local msg = ChatLocalization:FormatMessageToSend("GameChat_TeamChat_NowInTeam",
							string.format("You are now on the '%s' team.", player.Team.Name),
							"RBX_NAME",
							player.Team.Name
						)
speakerObj:SendSystemMessage(msg, channel.Name)

Edit: You can also delete the whole if speakerObj:IsInChannel(channel.Name) then statement if you want to, though, you might need it later if you want to edit your chat.

2 Likes

Or he can just remove the string, so if he ever wants to add it back.

It seems when i try to fork the chat system it tells me to make LoadDefaultchat disabled, but when i do that the chat is gone even tho i have the files copied inside chat.

Try doing:

  1. Press Play game button
  2. Copy contents of Chat
  3. Disable LoadDefaultChat
  4. Paste contents of chat

If you still can’t fork it, I’ve attached a rbxm file with pure Chat contents inside, you can give it a chance.
Virustotal
Chat.rbxm (116.3 KB)

That is what i did, but do i press stop after copying the chat

This is what i did:

  1. Press Play game button
  2. Copy contents of Chat
    3: Stop game button
  3. Disable LoadDefaultChat
  4. Paste contents of chat

Yes, that’s how you do it, weird, I just reproduced the steps you replied, and it works.
I’ve added a rbxm file to my reply, if nothing helps, you can give it a chance.

No i opened yours and everything was not in the chat but outside on the explorer workspace. idk what i can do. even when i press play it reverts back to default chat

Play game, try copying just ChatModules folder, stop game, don’t touch LoadDefaultChat, paste ChatModules folder and edit it.

3 Likes