I am not sure where your parts are, so I am going to assume they are in the workspace.
Here's how to change every part named test in the workspace yellow:
Keep in mind that this will only change parts directly inside of the workspace, not parts inside parts or parts inside models.
01 | location = game.Workspace |
04 | for _, child in pairs (location:GetChildren()) do |
07 | if child.Name = = "Test" and child:IsA( "BasePart" ) then |
10 | child.BrickColor = BrickColor.new( "Bright yellow" ) |
If you want to look at ALL parts in the workspace, including parts inside parts or parts inside models.
01 | location = game.Workspace |
04 | for _, descendant in pairs (location:GetDescendants()) do |
07 | if descendant.Name = = "Test" and descendant:IsA( "BasePart" ) then |
10 | descendant.BrickColor = BrickColor.new( "Bright yellow" ) |