how do you check if the video is finished?
wait(length of video) print("Video is finished!")
local videoFrame = pathtovideoframe videoFrame:GetPropertyChangedSignal("TimePosition"):Connect(function() if videoFrame.TimePosition >= videoFrame.TimeLength then print('Video Finished') end end)