Дело в том что при запуске скрипта для изменения текста текст вообще не изменяется
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class UIController : MonoBehaviour
{
[SerializeField] private Text myText;
// Start is called before the first frame update
private void Start()
{
myText.text = "234";
}
// Update is called once per frame
void Update()
{
}
}