RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"If the player moves kick them where does it go"
-- local script local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local function onMoved() player:Kick("You moved, so you were kicked from the game.") end humanoid.Running:Connect(onMoved)