Creating a new channel when changing the team

a new channel is created: “Team” when the player changes the team, how to fix it?
image

You could try this LocalScript in StarterPlayerScripts:

game:GetService("TextChatService"):WaitForChild("TextChannels").ChildAdded:Connect(c)
    if c.Name:find("RBXTeam") then c:Destroy() end
end)

image
nah, its dont work

most likely you have two teams named the same thing. in this new system everytime you change teams, and the text channel for that team is missing. its auto-added