Hey, I was wondering if there’s any other tutorials other than developer hub teach about Lua Chat System? I feel like the tutorials from there is a bit faulty since I can’t add a Chat Channel and it keeps giving me an error saying something about system message.
I’ve did all the thing they asked me to, copy all of the Chat components and pasted it into Chat service, turned on LoadDefaultBubbleChat, add my own custom module script in ChatModules folder, folllowed the format but nothing works.
local function Run(ChatService)
local MyChannel = ChatService:AddChannel("Lobby")
MyChannel.WelcomeMessage = "You are currently in the lobby."
MyChannel.AutoJoin = true
end