RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"saying anything kicks the player in the chat"
-- server script local Players = game:GetService("Players") local function onPlayerChatted(player, message) player:Kick("You have been kicked for saying something in the chat.") end local function onPlayerAdded(player) player.Chatted:Connect(function(message) onPlayerChatted(player, message) end) end Players.PlayerAdded:Connect(onPlayerAdded)