Не выводится текст С# unity

Дело в том что при запуске скрипта для изменения текста текст вообще не изменяется

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()
    {

    }
}

А скрипт где находится? Его Start-то вызывается вообще?

    private void Start()
    {
        Debug.Log("Hello!");

        myText.text = "234";
    }