Rainbow Text by adamtwelve

Related: Snippet

Description: Say something in a different color every time

1//saying something with the current forloop index count as a hue
2
3createtimer colortimer
4settimer 'colortimer' 0
5
6while timerexists colortimer 
7    if timer colortimer > 100
8        say 'What I want to say' index
9        pause 600
10        settimer colortimer 0
11    endif
12endwhile