How to play a second cutscene after the first

This is my first time using Godot, I just want to know how to play a second video after the first video ends. Got problem with Coding

This is very little information to go off of. What kind of video do you play? Do you play an actual video file or a simple animation using the AnimationPlayer node?

If you use the AnimationPlayer node, simply use it’s animation_finished signal to know when an animation has finished, so you can start the next one.

If you use the VideoStreamPlayer node, simply use it’s finished signal to know when the video stream you were playing finished, and you can start the next one.