Boss respawn Time

So I want to have a boss to move in a path in a set of 60 seconds.
Once its dead I want it to get back to its original position, once 60 seconds pass the boss goes back selective path.
However once the boss is dead it no longer goes back to the original position
Down in the replies you will find my code

The problem lies with this event :

You never do anything with BossBody1, so the actions are executed every frame that BossBody1 has a health of 0. So you are constantly resetting the timer Boss1Activated, meaning it will never reach 1 second to activate and show Boss1 events.

Either use a trigger once, delete BossBody1 or deactivate Health on BossBody1.