It sounds confusing, but I am trying to add up a folders childrens values to a variable outside a for loop. As shown below. But “multi” is still 0 in the end, when that values are more than 0.
local mult = 0
for i,v in pairs(childs) do
if v.Equipped == true then
mult += v.Multiplier1.Value
end
end