RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a yellow colored playerjoined and playerleft message that shows up in the chat"
-- server script game.Players.PlayerAdded:Connect(function(player) local message = player.Name.." joined the game!" game.Chat:Chat(nil, message, Enum.ChatColor.Yellow) end) game.Players.PlayerRemoving:Connect(function(player) local message = player.Name.." left the game!" game.Chat:Chat(nil, message, Enum.ChatColor.Yellow) end)