I wanna figure out some way to change videos via a script, not exactly sure how I’d be able to do it but I feel like it’d be some sort of script that would grab the link for the video and display it?
Any feedback or suggestions would be greatly appreciated because I’m trying to create a working movie theater
I think you could use a template for changing music on a playlist or a radio system, just replace some of the classes with VideoFrame. I’d assume video frame works similar to how audio works in script
Each button has a string value inside of it which is the asset id, and when clicked it fires a remote event and changes it. I am probably gonna be switching over to a textbox feature instead of a selection soon.
Dude that looks awesome! That’s advanced, I like it. Do you think there’d be a way to just loop the same 3-4 movies over and over? If so, any suggestions?
local Movies = game.Workspace.Movies
local Video = game.Workspace.Part.SurfaceGui.VideoFrame
for i, v in pairs(Movies:GetChildren()) do
if v:IsA("StringValue") then
Video.Video = v.Value
Video.Ended:Wait()
end
end
It should work provided you set it all up correctly, please ask if you have questions.