What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Auto Collect And Fast Production

Version / Update: v1.0.0
Download / Script Link
local TARGET_VALUE = 0.1
local player = game.Players.LocalPlayer

local function setProductionSpeed(obj)
if obj.Name == "ProductionSpeed" and (obj:IsA("NumberValue") or obj:IsA("IntValue")) then
obj.Value = TARGET_VALUE
end
end

for _, obj in ipairs(workspace:GetDescendants()) do
setProductionSpeed(obj)
end

workspace.DescendantAdded:Connect(setProductionSpeed)

local prompts = {}

for _, v in ipairs(workspace:GetDescendants()) do
if v:IsA("ProximityPrompt") and v.ActionText:lower():find("collect") then
table.insert(prompts, v)
end
end

workspace.DescendantAdded:Connect(function(v)
if v:IsA("ProximityPrompt") and v.ActionText:lower():find("collect") then
table.insert(prompts, v)
end
end)

task.spawn(function()
while true do
for _, prompt in ipairs(prompts) do
pcall(function()
fireproximityprompt(prompt)
end)
end
task.wait(0.5)
end
end)

-- Lynxzcvx
[ View More ]
3faadf8c-d138-4819-882d-4c5352f316ff.webp


Auto Collection And Fast Production By 0.1s
 
Works on mobile
  1. Yes
Back
Top