Como fazer int para enviar uma mensagem de texto
private void Start()
{
text = GetComponent<Text>();
}
private void Update()
{
text.text = theInt.ToString();
}
Dull Dingo