So there is a new thing on Roblox called Videos! And I was wondering if anyone knows how to make a pause button for the video yet? Well, that’s all I had to say!
1 Like
A way to pause the video would be setting its “Playing” property to false.
You can also use VideoFrame:Pause()
to stop the video in a function that’s attached to a button’s .MouseButton1Click
event.
1 Like
And if you want to unpause it you can use VideoFrame:Play()
.
1 Like