I define a new channel named “System”(as I removed the original one) and set the following settings for it:
local systemChannel = ChatService:AddChannel("System")
systemChannel.Leavable = false
systemChannel.AutoJoin = true
systemChannel.Private = false
speakerA:SayMessage("Test", "System")
when I run my SayMessage part, it sends it to the “All” channel for some reason even though I tell it to send to the System channel. Any fixes?