I have a gui or frames. I wan't these frames to change color but in a fade effect. I can't remember how to do it and when searching it I only get to a really old video or helping pages.
This fades from black to red, green, then blue.
for i = 0,1,0.01 do script.Parent.TextColor3 = Color3.new(0, i, 0) wait() end for i = 0,1,0.01 do script.Parent.TextColor3 = Color3.new(i, 0, 0) wait() end for i = 0,1,0.01 do script.Parent.TextColor3 = Color3.new(0, 0 ,i) wait() end
You can create some good stuff with this. If it helped please accept the answer..
Thx bye