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 ]
Auto Collection And Fast Production By 0.1s
- Works on mobile
- Yes