local Players = game:GetService('Players') local ReplicatedStorage = game:GetService('ReplicatedStorage') local lp = Players.LocalPlayer hookfunction(lp.Kick, function() end) local ac = lp:WaitForChild('PlayerScripts'):WaitForChild('PlayerAntiCheat', 5) if ac then ac.Disabled = true if ac.Parent:FindFirstChild('Audio2') then ac.Parent.Audio2:Destroy() end ac:Destroy() end local stopAnimRemote = ReplicatedStorage:FindFirstChild('StopClientAnim7') if stopAnimRemote then hookfunction(stopAnimRemote.FireServer, function() end) end local function deleteAnticheatRemotes() for _, obj in ipairs(ReplicatedStorage:GetDescendants())do if obj:IsA('RemoteEvent') or obj:IsA('RemoteFunction') or obj:IsA('UnreliableRemoteEvent') then if obj.Name:lower():find('anticheat') then obj:Destroy() end end end end deleteAnticheatRemotes() task.delay(1, deleteAnticheatRemotes)