Da Hood Battlegrounds Script | SHOOT ANY GUN AT THE SPEED OF SOUND, ANTI CHEAT BYPASS

Created by xaxa#1515

Features:

  • RAPID FIRE GUNS
-- Hold E to shoot your guns very fast, works best with Revolver
-- init 
if not game:IsLoaded() then 
   game.Loaded:Wait();
end

-- variables
local players, replicatedStorage, runService, userInputService = game:GetService("Players"), game:GetService("ReplicatedStorage"), game:GetService("RunService"), game:GetService("UserInputService");
local client, mouse = players.LocalPlayer, players.LocalPlayer:GetMouse();

local toolRemoteEvents = replicatedStorage:FindFirstChild("ToolRemoteEvents");
local reloadWeapon = replicatedStorage:FindFirstChild("ReloadWeapon");

local keyHeld = false

-- events 
userInputService.InputBegan:Connect(function(key)
   if userInputService:GetFocusedTextBox() then return end 
   
   if key.KeyCode == Enum.KeyCode.E then 
       keyHeld = true
   end
end);

userInputService.InputEnded:Connect(function(key)
   if userInputService:GetFocusedTextBox() then return end 
   
   if key.KeyCode == Enum.KeyCode.E then 
       keyHeld = false
   end
end);

runService.RenderStepped:Connect(function()
   if keyHeld == true then 
       if client.Character and client.Character:FindFirstChildOfClass("Tool") then
           local tool = client.Character:FindFirstChildOfClass("Tool");
           
           toolRemoteEvents[((tool.Name ~= "Revolver" and tool.Name) or "Rev")]:FireServer(mouse.Hit.Position, tool);
           reloadWeapon:FireServer();
       end
   end
end);
  • ANTI CHEAT BYPASS
-- init
if not game:IsLoaded() then 
   game.Loaded:Wait();
end

-- variables
local players, replicatedStorage, logService = game:GetService("Players"), game:GetService("ReplicatedStorage"), game:GetService("LogService");
local client, newInstance = players.LocalPlayer, Instance.new

local mainRemote = replicatedStorage:FindFirstChild("MainRemote");
local equipTag = replicatedStorage:FindFirstChild("EquipTag");

local blacklistedArguments = {"Anti Ragdoll", "Speed", "Height", "Jump Hack", "Reach", "Float", "Aim", "Speed Hack", "Jump", "Collision", "Pos", "Hum", "Weld"}; -- OH MY GOD JUST LEARN HOW TO MAKE A GOOD ANTICHEAT ON THE SERVER

local random, f6oor = math.random, math.floor
local find, create = table.find, table.create

local printconsole = (printconsole or print);

-- namecall hooks 
local namecall_hook; do 
   namecall_hook = hookmetamethod(game, "__namecall", newcclosure(function(self, ...)
       local namecallMethod, arguments = (getnamecallmethod or get_namecall_method)(), ({...});
       
       if checkcaller() then 
           return namecall_hook(self, ...);
       end
       
       if (namecallMethod == "Kick" or namecallMethod == "kick") and self == client then 
           printconsole("[namecall] kick attempt blocked");
           return
       elseif (namecallMethod == "FireServer" or namecallMethod == "fireServer") and self == mainRemote and arguments[1] == "MousePos" and find(blacklistedArguments, arguments[2]) then 
           printconsole("[namecall] ban attempt blocked");
           return
       elseif (namecallMethod == "GetLogHistory" or namecallMethod == "getLogHistory") and self == logService then 
           printconsole("[namecall] logservice..!?");
           return {create(f6oor(random(1, 10)), {""})};
       end
       
       return namecall_hook(self, ...);
   end));
end

-- index variation hooks 
for index, func in next, ({"GetLogHistory", "getLogHistory"}) do 
   task.spawn(function()
       replaceclosure(logService[func], function()
           printconsole("[index] logservice..!?");
           return {create(f6oor(random(1, 10)), {""})};
       end);
   end);
end

for index, func in next, ({"FireServer", "fireServer"}) do 
   task.spawn(function()
       local func_hook 
       func_hook = replaceclosure(mainRemote[func], function(self, ...)
           local arguments = ({...});
           
           if self == mainRemote and arguments[1] == "MousePos" and find(blacklistedArguments, arguments[2]) then 
               printconsole("[index] ban attempt blocked");
               return 
           end
           
           return func_hook(self, ...);
       end);
   end);
end

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

More Scripts!

TOP 10 TRENDING SCRIPTS