Roblox Wiki
Advertisement
Roblox Wiki
Warning
This page is not done.

The ChatService is a special service. It cannot be retrieved with :GetService(). It is received as a parameter from a function used for editing the chat.

AddChannel(ChannelName: string): ChatChannel

Creates a new ChatChannel object.

RemoveChannel(ChannelName: string): void

Removes the given ChatChannel object, disconnecting all ChatSpeakers.

GetChannel(ChannelName: string): Variant

Finds the ChatChannel with the given ChannelName, or nil if it isn't found.

AddSpeaker(speakerName: string): ChatSpeaker

Creates a ChatSpeaker with the given name.

RemoveSpeaker(speakerName: string): void

Removes the ChatSpeaker with the given name.

Advertisement