Hello, I am trying to do when mouse is on guiText it changes to my color, however when I do it it always goes black and stays black when i put 255 to 0 and when I keep 255 the text goes invisible and stays invisible.
How can I fix it:
function OnMouseEnter()
{
guiText.material.color -= Color(122,76,55,255);
}
function OnMouseExit()
{
guiText.material.color -= Color(122,80,60,255);
}