local PE = game:GetService("Players").LocalPlayer local PC = pcall local WS = task.wait local CB = PE.Character or PE.CharacterAdded:Wait() local function AS() while WS() do local TS = CB:FindFirstChild("AntiJump") if TS and TS:IsA("LocalScript") then PC(function() TS:Destroy() end) end end end AS()