Media texture help

hi i need help with a video working on a object using media texture when i play the game i want it to start the video. when i press the play button only shows the end frame how do i make it so it plays as soon as i press the play button thanks.

Make sure AutoPlay is disabled on the MediaPlayer asset.

In your Blueprint, call MediaPlayer.Play() to start playback from your BeginPlay event, or from some other event, such as a UMG button click. Here is a screenshot of a BP that I use for showing and starting a movie in UMG. The Play node is on the very right - everything else is for creating and adding the UMG widget. The selected node (orange border) is a variable that points to the MediaPlayer widget in the Content Browser.

Thanks mate you are a legend :slight_smile: