How to know when a Level Sequence has finished playing?

LevelSequencePlayer has an OnStop event that you can bind to. It’s exposed in C++ and BP.

The documentation:

Event triggered when the level sequence player is stopped

That event fires when your sequence finishes playing.

(There’s also ones for Play and Pause.)