Is their a way to make Models transparent through a script without having to go through each individual child


So i want to make this Transparent through a script but I don’t want to individually go on each part of the model and do “Transparency = 0” is their a faster way?

No there is no other way as there is no model transparency property you can edit.

Surely theirs a script like FindChildren and then make them transparent

You can loop through each part instead:

for _, part in pairs(model:GetDescendants()) do
    if part:IsA("BasePart") then
        part.Transparency = 1
    end
end

“So i want to make this Transparent through a script but I don’t want to individually go on each part of the model and do “Transparency = 0” is their a faster way?”

use the quote tool instead its easier

Thank you :DDD you are very smart

He is right that is exactly what i asked for

Uh you asked for a solution that didn’t require you to loop through every part. His solution loops through every part???

1 Like

shushhhhhhhhhhhhhhhhhhhhhhhhhh ok

I assumed he meant manually instead of through a script

This topic is so confusing lol.

@Dieseires You know you can just select all of the nested models, right click, and click “select children” and set all of their transparency in bulk right through the explorer tab. This solution won’t change how it appears in studio but if it works hey I guess it works for you though it’d be more efficient to just change the property without a script.

no wth i mean, like i want it go transparent through a click of a guI OFC ik how to make it transparent