ServerBroadcast

Function of: Chat
Returns: Void
Tags:  static

Sends a message to a specific player

Parameters
Name Type Description
targetPlayerPlayerThe player to send to
messageStringThe message to send
Example
-- send a welcome message to newly joined players
Players.PlayerJoined:connect(function(player)
    Chat.ServerBroadcast(player, 'Welcome to the server!')
end)