Team Chatting two teams

Is there a way to make two teams have the same team chat?

1 Like

to make one global channel

  local ChatService = require(game:GetService("ServerScriptService"):WaitForChild("ChatServiceRunner"):WaitForChild("ChatService"))
        local Global = ChatService:GetChannel("All") -- Global
        Global.SpeakerJoined:Connect(function(speakerName)
    	       Global:MuteSpeaker(speakerName)
        end)
1 Like

This is close, but i wanted to make it to where, Team 1 and Team 2, have the same team chat.

Team 3 and 4 will have the same chat also,

This doesn’t have anything to do with team chat, it just sets the type of chat that can be used in game. Combining team chats requires a bit more delving into the code and modifying current team chat code to support the given use case.

3 Likes