local stuff=model:GetChildren() -- stuff is now a table full of children of the model
for i=1,#stuff do -- an enumeration from 1 to the number of children in the model
if stuff[i]:IsA('Part') then -- could be "BasePart", not sure, but this checks if child is part
stuff[i].Transparency=0
end
end
made a correction |