-- Drone Delivery Cash Farm | by tllh -- MintRequest(nil) -> DeliveryRequest(id) exploit local rs = game:GetService("ReplicatedStorage") local lp = game.Players.LocalPlayer local ls = lp:FindFirstChild("leaderstats") local mintReq = rs.PackageRemotes:WaitForChild("MintRequest") local delivReq = rs.PackageRemotes:WaitForChild("DeliveryRequest") -- Config local BATCH_SIZE = 10 -- max mints per batch (server rate limit ~10) local BATCH_DELAY = 0.01 -- seconds between batches local MINT_DELAY = 0.01 -- seconds between each mint in a batch local running = true local totalEarned = 0 local cycles = 0 local function getCash() return ls and ls:FindFirstChild("Cash") and ls.Cash.Value or 0 end print("[Drone Farm] Started. Press BACKSPACE to stop.") print("[Drone Farm] Cash: " .. getCash()) -- Stop keybind game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.Backspace then running = false print("[Drone Farm] Stopped. Total earned: " .. totalEarned) end end) task.spawn(function() local cashStart = getCash() while running do local batchEarned = 0 local minted = 0 for i = 1, BATCH_SIZE do if not running then break end local pkg = nil local ok = pcall(function() pkg = mintReq:InvokeServer(nil) end) if ok and pkg and pkg.id then pcall(function() delivReq:FireServer(pkg.id) end) batchEarned += (pkg.reward or 0) minted += 1 task.wait(MINT_DELAY) else break end end totalEarned += batchEarned cycles += 1 local cashNow = getCash() print(string.format( "[Drone Farm] Cycle %d | +%d | Session total: +%d | Cash: %d", cycles, batchEarned, (cashNow - cashStart), cashNow )) task.wait(BATCH_DELAY) end end)