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