Is it possible to make jrpg style cutscene and dialogue in unreal engine

Hello @NicoleRose1000 ,
Yes, it’s possible to achieve what you’re trying to do. There are several ways to implement it, depending on the result you’re looking for and how you want the interaction to work. I’ve included some videos, documentation, and forum posts that might help you achieve exactly what you’re looking for.

The first option that might help is using Quick Time Events (QTEs), as @MrAllen1976 mentioned in the previous comment. This can be useful if you want the cutscene to stop at a certain point and not continue until the player presses a key or interacts in some way. It’s a pretty common solution for this type of scene, since it lets you control when the sequence continues instead of playing the entire cinematic all at once.
QuickTime Events Examples:

Another option is to use a Level Sequencer, as you mentioned. In this case, you could pause the sequence at the point you need by using the Pause and Play nodes, then resume it once the player performs the corresponding interaction. You could also use Calling Events through Sequencer, which allows you to trigger Blueprint events directly from the sequence.

I’ve also included a video showing how to add dialogue to a Level Sequence, which might also be of interest to you.
Dialogue System
And if none of these options help, could you show an example of a game that has the same interaction you’re trying to replicate? Or simply name it. That would make it easier to understand what you’re trying to achieve and find a solution that better fits your specific case.

Hope it helps!