of     1   

RedcommanderV2
#227473906Sunday, November 12, 2017 11:38 AM GMT

How to make a gui that fades from 0% to 100% (It has to be a picture)
mattscy
#227475726Sunday, November 12, 2017 1:18 PM GMT

image.BackgroundTransparency = 1 for i = 1,100 do image.ImageTransparency = image.ImageTransparency + 0.01 wait() end
RedcommanderV2
#227476706Sunday, November 12, 2017 2:07 PM GMT

Thx
rbnzeroday
#227476761Sunday, November 12, 2017 2:10 PM GMT

image = script.Parent -- or wherever the image is located for i = 1, 0, -0.05 do --you can set the start value (1) to image.ImageTransparency if you don't want to start it when it's completely transparent image.ImageTransparency = i wait(0.05) end image.ImageTransparency = 0 --this makes sure that it's opaque If you could reply and notify others if this has been resolved, that'd be nice. -rbnzeroday

    of     1