using TMPro; using UnityEngine; [RequireComponent(typeof(TMP_Text))] public class CopyTextTMP : MonoBehaviour { public TMP_Text origin; TMP_Text _text; void Awake() { _text = GetComponent(); } void Update() { _text.text = origin.text; } }