-- LocalScript local player = game.Players.LocalPlayer local uis = game:GetService("UserInputService") local function autoParry() local humanoid = player.Character:WaitForChild("Humanoid") humanoid:LoadAnimation(script:WaitForChild("ParryAnim")):Play() end -- Fake auto parry loop while true do wait(2) -- every 2 seconds autoParry() end