Emergency Response: Liberty County Script | ANTI CHEAT BYPASS

Created by samuel;#2966

Features:

  • ANTI CHEAT BYPASS
  • DEV NOTES:
  • I was bored, and someone suggested that I make a something that bypasses their walkspeed, jumppower, and fly detection. 
  • Will probably be patched in a few days or less since I was told they are actively patching things released. (You have to execute this everytime you respawn/die)
local function disableConnection(connections)
   for _, p100detection in pairs(getconnections(connections)) do
       p100detection:Disable()
   end
end;

local walkspeedDetection, jumppowerDetection, flyDetection = game.Players.LocalPlayer.Character.Humanoid:GetPropertyChangedSignal('WalkSpeed'), game.Players.LocalPlayer.Character.Humanoid:GetPropertyChangedSignal('JumpPower'), game.Players.LocalPlayer.Character.HumanoidRootPart.DescendantAdded do
   disableConnection(walkspeedDetection);
   disableConnection(jumppowerDetection);
   disableConnection(flyDetection);
end