Hello world
Is there a way to change the texture of just the items that are white?
In a folder i have a bounch of Parts, but i want to change the texture of the Parts to SNOW, but just to the ones that are white, not of that ones that are green or smothing else, How i can do that?
Well, for example, if your color is 255,255,255 (pure white) you would use this code:
for _, i in pairs(workspace:GetDescendants()) do if i:IsA("BasePart") then if i.Color == Color3.fromRGB(255,255,255) then -- code here end end end
Hope this helps!