RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"saying quit kicks the player"
-- server script local function onChatted(message, player) if message:lower() == "quit" then player:Kick("You have been kicked from the game.") end end game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) onChatted(message, player) end) end)