This is what I currently have, but for some reason It dosent pick out a video and put it in the video Id. Im using VideoFrame | Roblox Creator Documentation To paste the id onto the videoframe
(The last code you see picks a random video, and it makes sure it is different to the last one.)
Random, different video every 3 seconds;
VideoFrame = script.Parent
local last = ""
local Videos = {5608327482, 5608297917, 5608359401, 5608304953, 5608368298}
local function change()
local rand = "rbxassetid://".. tostring(Videos[math.random(1,#Videos)])
if rand == last then
change()
return
end
VideoFrame.Video = rand
VideoFrame:Play()
last = rand
end
while wait(3) do
change()
end