IEnumerator Timer()
    {
        while (countdown > 0)
        {
            countdown -= 0.1f;
            yield return(new WaitForSeconds(.1f));
        }

        //2 Seconds Elapsed
        if (countdown <= 0)
        {
            charScript.SetDayStart(true);
        }
        StopCoroutine("Timer");
    }