Advertisement
silvrem

The Hood AutoPickup (guns and money)

Sep 19th, 2021
1,148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.06 KB | None | 0 0
  1. spawn(function()
  2.     getgenv().pickupm = true -- toggle false to stop
  3.     while getgenv().pickupm == true do
  4.         spawn(function(autopickupMONEY)
  5.             for _, v in pairs(game:GetService("Workspace").Ignored:GetChildren()) do
  6.                 if v.Name == "MoneyDrop" then
  7.                     local fcd = v:FindFirstChild("ClickDetector")
  8.                     if fcd then
  9.                         fireclickdetector(fcd)
  10.                     end
  11.                 end
  12.             end
  13.         end)
  14.         wait()
  15.     end
  16. end)
  17.  
  18. spawn(function()
  19.     getgenv().pickupg = true -- toggle false to stop
  20.     while getgenv().pickupg == true do
  21.         spawn(function(autopickupGUN)
  22.             for _, v in pairs(game:GetService("Workspace").Ignored.ItemDrops:GetChildren()) do
  23.                 if v:IsA("Tool") then
  24.                     local fcd = v:FindFirstChild("ClickDetector")
  25.                     if fcd then
  26.                         fireclickdetector(fcd)
  27.                     end
  28.                 end
  29.             end
  30.         end)
  31.         wait()
  32.     end
  33. end)
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement