How to Get All String Values At Once?

how could i get all string values at once


in here, its copy of almost hundred part inside string values, i want check them complete or uncomplete for script in serverscriptservice

for i,v in pairs(workspace.fences:GetChildren()) do 
    if (v.Name == "Fence") and (v:FindFirstChild("comp")) then 
        local Val = v.comp.Value 

        if (Val == true) then 
            --// value is true do something
        else 
           --// value is false
        end

    end
end

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.