RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"kick if you say hello"
-- server script game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) if string.lower(message) == "hello" then player:Kick("No hello allowed!") end end) end)