[SOLVED] How to make an image slideshow

Hello again everyone. Sorry for being away for so long.

Today I have an issue that I need help with.

In this video, they make an image slideshow, I want to make something similar but different in a few ways, let me explain.

  1. I don’t want 1 slideshow image changing its image value, I want it to shuffle between multiple images in the frame with these below:
    sss
  2. I want there to be a fade out and fade in animation when switching between images

Thanks if you help, if you need any further details, let me know.

Also again, sorry for being gone for so long.

Pretty easy, just make up a table with the images in order and switch up the transparency between each (from 1 to 0, from 0 to 1)

local table = {image1 = script.Parent.Background1, image2 = script.Parent.Background2}

So this is my table, and now I need to figure out how to fade them, could you show me how?