I've tried the fading several different ways, but it just pops away. Like I destroy it before the fade.
Also, the tweening, it's not smooth. It just pops like I changed the Visible property
01 | a = game.Lighting.Welcome_GUI |
02 |
03 | game.Players.PlayerAdded:connect( function (p) |
04 | p:WaitForChild( "PlayerGui" ) |
05 | a:clone().Parent = p.PlayerGui |
06 | wait( 2 ) |
07 | p.PlayerGui.Welcome_GUI.ImageLabel:TweenPosition(UDim 2. new( 0 , 0 , 0 , 0 ), "Out" , "Quad" ,. 99 ) |
08 | repeat |
09 | p.PlayerGui.Welcome_GUI.ImageLabel.ImageTransparency = p.PlayerGui.Welcome_GUI.ImageLabel.ImageTransparency + 0.1 |
10 | wait( 0.01 ) |
11 | until |
12 | p.PlayerGui.Welcome_GUI.ImageLabel.ImageTransparency = = 1 |
13 | p.PlayerGui.Welcome_GUI:Destroy() |
14 | end ) |
The way I fade is, with a loop.
01 | a = game.Lighting.Welcome_GUI |
02 |
03 | game.Players.PlayerAdded:connect( function (p) |
04 | p:WaitForChild( "PlayerGui" ) |
05 | a:Clone().Parent = p.PlayerGui |
06 | wait( 2 ) |
07 | p.Playergui.WelcomeGUI.ImageLabel:TweenPosition(UDim 2. n.ew( 0 , 0 , 0 , 0 ), "Out" , "Quad" , 0.99 ) |
08 | for i = 1 , 10 do |
09 | p.PlayerGui.Welcome_GUI.ImageLabel.ImageTransparency = p.PlayerGui.Welcome_GUI.ImageLabel.ImageTransparency + 0.1 |
10 | end |
11 | p.PlayerGui.Welcome_GUI:Destroy() |
12 | end ) |
This may have some minor typos, I reccomend retyping this just to make sure :P