local function updateProductionSpeeds() for _, object in ipairs(workspace:GetDescendants()) do if object.Name == "ProductionSpeed" then -- Check if it's a value we can change if object:IsA("NumberValue") or object:IsA("IntValue") then local oldValue = object.Value object.Value = 0.1 print(`Changed Speed from {oldValue} to 0.1 in: {object:GetFullName()}`) end end end end -- Run once when the script starts updateProductionSpeeds() -- Optional: Also update if new objects are added later workspace.DescendantAdded:Connect(function(descendant) if descendant.Name == "ProductionSpeed" then if descendant:IsA("NumberValue") or descendant:IsA("IntValue") then descendant.Value = 0.1 print(`New ProductionSpeed found and set to 0.1 in: {descendant:GetFullName()}`) end end end) print("Made By Unknownvr323!")