Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Is it possible to create a new channel using the roblox default chat?

Asked by 5 years ago

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.

1
'Channels' aren't a default chat api. You would need to script that yourself. Wafflecow321 457 — 5y
0
Oh, alright. Pizzafireme 14 — 5y
0
Yes i did this before, but I am not an expert. I can find the code and send it to you if you want. I'm also trying to find this Roblox tutorial but I can't find it right now. You start with editing their chat script. I basically just read through it and modified it. vissequ 105 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

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]

Ad

Answer this question