Unity 5 UI Text Help

Hey Guys I’m working a score manager. I have it all setup. I’m using C#. I cannot get the text to update with a int. Thanks

using UnityEngine;
using UnityEngine.UI;
using System.Collections;

publicclassscoreManager:MonoBehaviour{

publicstaticintcurrentScore=0;
publicintmyGuiText;

voidUpdate()
{
myGuiText=currentScore();
}
}

Oh yea and currentScore is being updated in a different script