unity display a variable as text code example
Example: how to make text show a variable in unity
using UnityEngine.UI; //its a must to access new UI in script
public class YourClass : MonoBehaviour
{
public Text Score_UIText; // assign it from inspector
void Start()
{
Score_UIText.text = yourscore_variable;
}