How to make a visible stopwatch unity code example
Example: how to create a coutdown time in unity
float timeLeft = 30.0f;
void Update()
{
timeLeft -= Time.deltaTime;
if(timeLeft < 0)
{
GameOver();
}
}