Do I have to put this in a folder? Workspace, StarterGui, etc Wouldn't work, do I have to do StarterGui.ImageName.ImageTransparency?
01 | wait( 5 ) |
02 | ImageName.ImageTransparency = 0.75 |
03 | wait ( 10 ) |
04 | ImageName.ImageTransparency = 0.6125 |
05 | wait ( 15 ) |
06 | ImageName.ImageTransparency = 0.5 |
07 | wait ( 25 ) |
08 | ImageName.ImageTransparency = 0.25 |
09 | wait ( 27.5 ) |
10 | ImageName.ImageTransparency = 0.125 |
11 | wait ( 30 ) |
12 | ImageName.ImageTransparency = 0 |
13 | end ) |
14 | end |
Put the 'ImageName' into StarterGui.ScreenGui and do this :
01 | local ImageName = game.StarterGui.ScreenGui.ImageName -- local the ImageName |
02 |
03 | ImageName.ImageTransparency = 1 -- When you started the game, the ImageTransparency |
04 | wait( 5 ) |
05 | ImageName.ImageTransparency = 0.75 |
06 | wait ( 10 ) |
07 | ImageName.ImageTransparency = 0.6125 |
08 | wait ( 15 ) |
09 | ImageName.ImageTransparency = 0.5 |
10 | wait ( 25 ) |
11 | ImageName.ImageTransparency = 0.25 |
12 | wait ( 27.5 ) |
13 | ImageName.ImageTransparency = 0.125 |
14 | wait ( 30 ) |
15 | ImageName.ImageTransparency = 0 |
16 | end |
IMPORTANT: Make sure you have a ScreenGui, if your ScreenGui changed the name, replace the script 'ScreenGui' to become your ScreenGui's name.
Hope I helped, have a nice day, happy coding :D
NOTE: I've already upvoted :P