Answered by
4 years ago Edited 4 years ago
I'm super noob at scripting but I think you can do :
1 | local model = script.Parent |
2 | local children = model:GetDescendants() |
3 | for i , v in pairs (children) do |
4 | if v:IsA( "BasePart" ) then |
5 | v.Color = color 3. new( 1 , 0 , 0 ) |
There we go.
Put it as the model's children
Use a script (not a localscript nor a modulescript)
Note : a basepart is a class that contains everything that is a "part" (part,meshpart,wedgepart,terrain, and many more). You can go check this in the developper hub.
I hoped this helped you !