cara membuat int ke teks persatuan
private void Start()
{
text = GetComponent<Text>();
}
private void Update()
{
text.text = theInt.ToString();
}
Dull Dingo