RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"can you make a script that will kick the player who types the "!kick" command in chat"
-- server script local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) if message == "!kick" then player:Kick() end end) end)