of     1   

misgav11
#64217036Monday, March 12, 2012 5:59 PM GMT

I have high scripting skills but i dont know how to make an animation for text to turn from white to black color? i know its involve "For i =1, #" but im not sure how to do it, can anyone exsplain and help me out?
nate890
#64217299Monday, March 12, 2012 6:06 PM GMT

    for i=255,0,-1 do         script.Parent.TextColor3=Color3.new(i/255,i/255,i/255)     end
misgav11
#64217379Monday, March 12, 2012 6:08 PM GMT

What the 0 for?
Colt324
#64217403Monday, March 12, 2012 6:09 PM GMT

goes from 255 to 0, decreasing by 1 each time
nate890
#64217490Monday, March 12, 2012 6:10 PM GMT

for index=start,finish,increase/decrease do
misgav11
#64217712Monday, March 12, 2012 6:16 PM GMT

I see, thanks for the help.
misgav11
#64217962Monday, March 12, 2012 6:23 PM GMT

its not working...
nate890
#64218042Monday, March 12, 2012 6:26 PM GMT

    script.Parent Note that the text color will only change for the parent of the script.
misgav11
#64218083Monday, March 12, 2012 6:26 PM GMT

i know i did it
misgav11
#64218261Monday, March 12, 2012 6:32 PM GMT

so why its not working?
NewFissy
#64218329Monday, March 12, 2012 6:33 PM GMT

Try this: for i=255,0,-1 do script.Parent.TextColor3=Color3.new(1/255*i,1/255*i,1/255*i) end
misgav11
#64218357Monday, March 12, 2012 6:34 PM GMT

nvm
nate890
#64218358Monday, March 12, 2012 6:34 PM GMT

It does work? I don't see a problem with it. Did you add a wait?

    of     1