Answered by
7 years ago Edited 7 years ago
If you want a
2 | (frame name).BackgroundColor 3 = (frame name).BackgroundColor 3 + Color 3. new( 1 , 1 , 1 ) |
3 | if (frame name).BackgroundColor 3 = = Color 3. new( 255 , 255 , 255 ) then |
4 | (frame.name).BackgroundColor 3 = Color 3. new( 0 , 0 , 0 ) |
If this is what you wanted then happy days! :D
Sorry if this isn't what you wanted :C
EDIT:
You can make your own colour table that you want to go on here!
1 | colourtable = { Color.new( 255 , 0 , 0 ), Color.new( 232 , 13 , 6 ) } |
3 | for i = 1 ,#colourtable do |
4 | colourneeded = colourtable [ i ] |
5 | (frame.name).BackgroundColor 3 = colourneeded |
Sorry if this is worse and not what you wanted!