Realistic hood Script | ARREST ALL, KICK ALL

 

Created by peke#7374

Features:

  • ARREST ALL
  • KICK ALL
  •  
  • DEV NOTES:
  • If someone is in a car, kicked.
  • If someone has a gun held, kicked.
  • If someone is just standing still, arrested. (YES IT WORKS ON COPS)
  for i , v in pairs(game:GetService("Workspace"):GetChildren()) do
      -- This is the most retarded check but i had to do it lmao
        if v.Name == "WeaponSpawn" and v:FindFirstChild("Gun") then
        if v.Gun:FindFirstChild("MeshPart") then if v.Gun.MeshPart.MeshId == "rbxassetid://6533269281" then
            game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-899,22,996)
            task.wait(1) --Gotta bypass that horrible anticheat
            fireproximityprompt(v.Part.ProximityPrompt)
        end
        end
        end
    end
    task.wait(2)
  for i , v in pairs(game:GetService("Players"):GetChildren()) do
        if v ~= game.Players.LocalPlayer then
            -- Kicks players holding guns, players inside cars
            -- Arrests the other ones left
            game.Players.LocalPlayer.Backpack.DETAIN.JeffBezos:FireServer(v.Character)
        end
    end