ServerBroadcastAll
Function of: Chat
Returns: Void
Tags: static
Sends a message to all players
Parameters
| Name | Type | Description |
|---|---|---|
| message | String | The message to send |
Example
-- send a player left message to all players
Players.PlayerLeft:connect(function(player)
Chat.ServerBroadcastAll(player.username .. ' has left the server')
end)