So I've been trying to change the color of a hell of alot of parts and I wanted to use the command bar to sort through them and just recolor it.
For I'm getting something wrong in the Color Value and I don't know how to fix it
for _, v in pairs (game.workspace:GetDescendants())do if v.Name == 'A' then v.Color = (98 71 50) end end
It says something about expected ) not 71. Can someone help me fix this (free reputation amirite)
for _, v in pairs (game.workspace:GetDescendants())do if v.Name == 'A' and v:IsA'BasePart' then --v.Color = (98 71 50) v.BrickColor = Color3.new(98, 71, 50) end end