of     1   

joekingly
#227505905Monday, November 13, 2017 2:21 AM GMT

script.Parent.wallpaper1.ImageColor3 = script.Parent.wallpaper1.ImageColor3 + Color3.fromRGB(1,1,1) Error; attempt to perform arithmetic on field 'ImageColor3' (a userdata value)
joekingly
#227506035Monday, November 13, 2017 2:25 AM GMT

Bump.
joekingly
#227506222Monday, November 13, 2017 2:30 AM GMT

Bump.
Soybeen
#227506385Monday, November 13, 2017 2:34 AM GMT

Well, it's pretty simple, you can't add them You'd have to make a function for that to add each element individually. You got the r and the g and the b, so pull them from the color3, add them together, and slap em back in
joekingly
#227506480Monday, November 13, 2017 2:37 AM GMT

color1 = color1 + 1 color2 = color2 + 1 color3 = color3 + 1 clone2.ImageColor3 = clone2.ImageColor3 + Color3[dot]new(color1,color2,color3) Same error. Had to use [dot] 'cause Roblox censored the period for some reason. Idiots. I'd like to make a smooth transition between colors not an ugly instant change.
Soybeen
#227506597Monday, November 13, 2017 2:40 AM GMT

local oldColor = clone2.ImageColor3 r,g,b = oldColor.r*255,oldColor.g*255,oldColor.b*255 local newColor = ###########################
joekingly
#227506614Monday, November 13, 2017 2:41 AM GMT

Lmao hashtags.
Soybeen
#227506688Monday, November 13, 2017 2:43 AM GMT

pastabin link: /H927HqNv

    of     1