I’ve been trying to change a part’s color using attributes, however it turns out black despite the assigned attribute. Any help would be appreciated. Thanks!
color1 is an attribute of the script. This means when you try to get the color1 attribute of the part, it returns nil, which becomes black because you’re basically running Color3.new(nil) which is the same as Color3.new(). You should change your code to
script:GetAttribute("color1")
or add the color1 attribute to the part instead of the script.