RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"If the player moves kick them"
-- local script local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local function onCharacterMoved() player:Kick("You moved! You have been kicked from the game.") end character.HumanoidRootPart:GetPropertyChangedSignal("Position"):Connect(onCharacterMoved)