So, I have made a script:
1 | function color() |
2 | Game.Workspace.Part.BrickColor = BrickColor.new( "Toothpaste" ) |
3 | end |
4 |
5 | script.Parent.MouseButton 1 Down:connect(color) |
Which changes a color of a part when clicked. But I would like to know, How would I do multiple? Would I just make multiple clones in the script for each part?
Extra: This is just an extra if you want to help me with this: Make the colors fade to each color, so it will be like, Red, a bit of different colors, and then Blue.