For link150
01 | local gui = script.Parent |
02 | local background = gui.Frame |
03 | local load = script.Parent.Frame 1 |
04 | local image 1 = gui.Something |
05 | local image 2 = gui.TinPot |
06 |
07 |
08 |
09 | script.Parent.Frame.Visible = true |
10 | wait( 2 ) |
11 | image 1 :TweenPosition(UDim 2. new( 0 , 240 , 0 , 100 ), "Out" , Enum.EasingStyle.Linear, 0.3 ) |
12 | wait( 3 ) |
13 | image 1 :TweenPosition(UDim 2. new( 0 , 900 , 0 , 100 ), "In" , Enum.EasingStyle.Linear, 0.3 ) |
14 | wait( 1 ) |
15 | image 2 :TweenPosition(UDim 2. new( 0 , 240 , 0 , 100 ), "Out" , Enum.EasingStyle.Linear, 0.3 ) |
16 | wait( 3 ) |
17 | image 2 :TweenPosition(UDim 2. new( 0 , - 900 , 0 , 100 ), "In" , Enum.EasingStyle.Linear, 0.3 ) |
18 | wait( 1 ) |
19 | load :TweenPosition(UDim 2. new( 0 , 203 , 0 , 120 ), "Out" , Enum.EasingStyle.Linear, 0.3 ) |
Make sure your GUIs are defined. Use :WaitForChild() so that the game waits for the GUIs to load prior to any action with them.