Track time of WaitForSeconds()

Is it possible to see the current time the WaitForSeconds() method is at? I want to show the count down for a respawn but I’m wondering if this is possible.

Why don’t you just set up a timer? If you know the respawn time is, say, 5 seconds, just before you run your Coroutine, start a timer with float timer = 5f; then countdown using timer -= Time.deltaTime;in Update() and display the output to a UI Text element. Much simpler than trying to track the time itself.