cómo hacer int to t de enviar un texto a la unidad

private void Start()
    {
        text = GetComponent<Text>();
    }
    private void Update()
    {
        text.text = theInt.ToString();
    }
Dull Dingo