π€ChatService
Service for sending chat messages.
Events.PlayerAdded(function (event)
ChatService.sendMessage(event.player.name .. " joined the game!")
end)
Events.PlayerRemoving(function (event)
ChatService.sendMessage(event.player.name .. " left the game.")
end)Functions
sendMessage(message: string, color: Color3 | nil)
Last updated