Detect VideoFrame end

How do I detect when a VideoFrame has stopped playing?

Check the Events on VideoFrame

3 Likes
yourVideoFrame.Ended:Connect(function()
    -- Put your code here
end)
1 Like