I’m trying to figure out how to change the color of my GuiText at any time I want. Right now this is my code but I must be doing something wrong, I’m not getting any errors though.
var scoreColor : GUIText;
function Start() {
scoreColor.material.color = Color(0.8,0.8,0,1.0);
}