local stuff = {--frames would be here}
local w = 1
local animval = game.ServerStorage.Anim
task.spawn(function()
while true do
if animval.Value == true then
script.Parent.Image = stuff[w]
if w == #stuff then
w = 1
else
w += 1
end
else
script.Parent.Visible = false
end
task.wait(0.01)
end
end)
So this script plays a ton of frames, to create a video. It doesn’t work. Maybe 3 or 4 frames load, but the others don’t load at all.They are all in the game on parts so I’m pretty confused