multicolor label

Script wich change every millisencond the color of a guitext with any of these 1

Oh you’re so lazy.
And so am I, so I will give you some answers.

Ok so to do something every millisecond you should try this:
void Start()
{
StartCoroutine(“WaitForMilisec”);
}

public IENumerator WaitForMilisec ()
{
    //do something
    yield return new WaitForSeconds(0.001F);
    StartCoroutine("WaitForMilisec");
}

To change color you should first define public color valuables:
(I do it like this)

public Color[] cols;

That creates colors array, that you can insert values in.
And then just change GUI.color to color from array.
You can use foreach for this.

Hope that helped you