The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Da hood auto collect money script pastebin roblox
By da hood auto collect money on 2024-09-22 08:00 am | Syntax: LUA | Views: 22



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local moneyPath = game:GetService("Workspace").Ignored.Drop
  2. getgenv().Enabled = true -- Toggle it on or off
  3.  
  4. -- No seats so they dont block it ofc.
  5. for i,v in pairs(workspace:GetChildren()) do
  6.    if v:IsA("Seat") or v:IsA("VehicleSeat") or v.Seat or v.VehicleSeat then
  7.        v:Destroy()
  8.     end
  9. end
  10. -- Autofarm
  11. while wait() and getgenv().Enabled == true do
  12.     for i,v in pairs(moneyPath:GetChildren()) do
  13.        if v.ClickDetector then
  14.            local CFrameEnd = v.CFrame
  15.            local Time = 3 -- Time in seconds
  16.            local tween =  game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd})
  17.            tween:Play()
  18.            tween.Completed:Wait()
  19.            fireclickdetector(v.ClickDetector)
  20.         end
  21.     end
  22. end



  • Recent Roblox Scripts