Help Shorten Tween Code

hello, Im making a Gui Menu and it involves a lot of Tweening Transparency, but there’s a lot of lines of me connecting every part I want to Tween, I have to do like 5 extra lines just to tween an image but a different one, how could I tween all my images at the same time instead of separate?

How its currently looking

you could do a for loop that loops through each image, although it would only use one tween and the tween will be all the same for each image:

for _,image in pairs(LocationOfAllImages:GetChildren()) do
       game:GetService("TweenService"):Create(image,TweenInfo.new(2,EnumEasingStyle.Sine,Enum.EasingDirection.Out),{-- do whatever here}):Play()
end

you could do this, or you could just do each separately in a short code, you dont need all of these variables everywhere, you can just keep it in one line for each tween

example code:

game:GetService("TweenService"):Create(ImageHere,TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.Out),{-- your code here}):Play() -- replace this with your desired styles

do this for each one, it shortens the amount of lines in your script by a lot