Hello.
I want this script to show score (Time.time). But i want to activate it 10 second after scene starts. Im a beginner at programming. Thank you
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class scoretext : MonoBehaviour
{
Text text; // Reference to the Text component.
void Awake ()
{
// Set up the reference.
text = GetComponent <Text> ();
}
void Update ()
{
text.text = "Score : " +(int) Time.time;
}
}