Ir para o conteúdo principal
Version: latest - a1.148.0 ⚖️

💬 Chat

Configure, send and intercept chat messages.

🗿Static ClassClient & Server🧑‍💻API Source

🎒 Examples

(Chat.BroadcastMessage) Sends a message to everyone
Chat.BroadcastMessage("Welcome to the server!")

Colors in Chat

It is also possible to send colored messages in the Chat! For that, just circumvent a piece of text with a style tag: \<TAG>my awesome text</>.

Server/Index.lua
Chat.BroadcastMessage("Hello with <cyan>Cyan</> text message!")

All supported text styles/tags:

\<cyan> \<green> \<blue> \<purple> \<marengo> \<yellow> \<orange> \<red> \<grey> \<bold> \<italic>

note

It is NOT possible to combine two or more styles together (e.g. \<bold> + \<red>).

🗿 Static Functions

ReturnsNameDescription
AddMessageAdds a chat message which will display local only
BroadcastMessageSends a chat message to all Players
ClearClears all messages
SendMessageSends a chat message to a Player only
SetConfigurationConfigures the Chat visuals and position
SetVisibilitySets if the Chat is visible or not
functionSubscribeSubscribes to an Event
UnsubscribeUnsubscribes from all subscribed Events in this Class and in this Package, optionally passing the function to unsubscribe only that callback

Moderate

AddMessage

Adds a chat message which will display local only
Chat.AddMessage(message)

Parameters

TypeParameterDefaultDescription
stringmessage Required parameter No description provided

Moderate

BroadcastMessage

Sends a chat message to all Players
Chat.BroadcastMessage(message)

Parameters

TypeParameterDefaultDescription
stringmessage Required parameter The message to send to all Players
Chat.BroadcastMessage Examples
Sends a message to everyone
Chat.BroadcastMessage("Welcome to the server!")

Moderate

Clear

Clears all messages
Chat.Clear()

Optimal

SendMessage

Sends a chat message to a Player only
Chat.SendMessage(player, message)

Parameters

TypeParameterDefaultDescription
Playerplayer Required parameter The player to receive the message
stringmessage Required parameter The message

Moderate

SetConfiguration

Configures the Chat visuals and position
Chat.SetConfiguration(screen_location?, size?, anchors_min?, anchors_max?, alignment?, justify?, show_scrollbar?)

Parameters

TypeParameterDefaultDescription
Vector2Dscreen_location?Vector2D(-25, 0)
No description provided
Vector2Dsize?Vector2D(600, 250)
No description provided
Vector2Danchors_min?Vector2D(1, 0.5)
No description provided
Vector2Danchors_max?Vector2D(1, 0.5)
No description provided
Vector2Dalignment?Vector2D(1, 0.5)
No description provided
booleanjustify?true
No description provided
booleanshow_scrollbar?true
No description provided

Optimal

SetVisibility

Sets if the Chat is visible or not
Chat.SetVisibility(is_visible)

Parameters

TypeParameterDefaultDescription
booleanis_visible Required parameter No description provided

Optimal

Subscribe

Subscribes to an Event
local ret = Chat.Subscribe(event_name, callback)

Parameters

TypeParameterDefaultDescription
stringevent_name Required parameter Event to subscribe to
functioncallback Required parameter Callback to run on the event occurring

Returns

TypeDescription
functionThe function callback

Optimal

Unsubscribe

Unsubscribes from all subscribed Events in this Class and in this Package, optionally passing the function to unsubscribe only that callback
Chat.Unsubscribe(event_name, callback?)

Parameters

TypeParameterDefaultDescription
stringevent_name Required parameter Event to unsubscribe to
functioncallback?nil
Optional callback to specifically unsubscribe to

🚀 Events

NameDescription
ChatEntryCalled when a new Chat Message is received, this is also triggered when new messages are sent programatically
CloseWhen player closes the Chat
OpenWhen player opens the Chat
PlayerSubmitCalled when a player submits a message in the chat

ChatEntry

Called when a new Chat Message is received, this is also triggered when new messages are sent programatically

This is useful for creating your own Chat interface while still use the built-in system
Chat.Subscribe("ChatEntry", function(message, player)
-- ChatEntry was called
end)

Arguments

TypeArgumentDescription
stringmessageThe message
Player or nilplayerThe player who sent the message or nil if this was called on client side or was sent through code

Close

When player closes the Chat
Chat.Subscribe("Close", function()
-- Close was called
end)

Open

When player opens the Chat
Chat.Subscribe("Open", function()
-- Open was called
end)

PlayerSubmit

Called when a player submits a message in the chat

Return false to prevent the message from being sent
Chat.Subscribe("PlayerSubmit", function(message, player)
-- PlayerSubmit was called
return true
end)

Arguments

TypeArgumentDescription
stringmessageThe message sent by the player
PlayerplayerThe player who sent the message - on client it will always be the localplayer