Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

the gui wont appear even though the thing is there when it says it is nil or whatever?

Asked by 8 years ago

For link150

01local gui = script.Parent
02local background = gui.Frame
03local load = script.Parent.Frame1
04local image1 = gui.Something
05local image2 = gui.TinPot
06 
07 
08 
09   script.Parent.Frame.Visible = true
10wait(2)
11    image1:TweenPosition(UDim2.new(0,240,0,100), "Out", Enum.EasingStyle.Linear, 0.3)
12    wait(3)
13    image1:TweenPosition(UDim2.new(0,900,0,100), "In", Enum.EasingStyle.Linear, 0.3)
14    wait(1)
15    image2:TweenPosition(UDim2.new(0,240,0,100), "Out", Enum.EasingStyle.Linear, 0.3)
16    wait(3)
17    image2:TweenPosition(UDim2.new(0, -900, 0, 100), "In", Enum.EasingStyle.Linear, 0.3)
18    wait(1)
19    load:TweenPosition(UDim2.new(0,203, 0, 120), "Out", Enum.EasingStyle.Linear, 0.3)

1 answer

Log in to vote
0
Answered by 8 years ago

Make sure your GUIs are defined. Use :WaitForChild() so that the game waits for the GUIs to load prior to any action with them.

Ad

Answer this question