i attached this script to guitext but… ok when I am pressing the guitext it isn’t changing the color, no erors in console, i really dont know.
function Start(){
guiText.material.color = Color.white;
}
function OnMouseOver(){
guiText.material.color = new Color(0.5, 0.5, 0.5, 1);
}
function OnMouseExit(){
guiText.material.color = Color.white;
}
function OnMouseDown(){
guiText.material.color = Color.green;
}