a new channel is created: “Team” when the player changes the team, how to fix it?
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)
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