I've looked through the chat modules and I can't seem to find anything about creating new channels or editing current ones, is it possible to add a new channel and if so, how would I do it? Any help would be appreciated.
local Chat = game:GetService("Chat")
local function Run(ChatService)
local Players = game:GetService("Players")
local channel = ChatService:AddChannel("Channel")
channel.Joinable = true
channel.Leavable = true
channel.AutoJoin = true
channel.Private = false
end
return Run
Here you are [Put all inside a ModuleScript in ChatModules]