View difference between Paste ID: hQ9zPctP and J2LSDCtE
SHOW: | | - or go back to the newest paste.
1
--Sound_Id 
2
3
wait(5)
4
5-
 Local Gui = Instance.new('ScreenGui')
5+
6-
Local Frame = Instance.new('Frame')
6+
Gui = Instance.new('ScreenGui')
7-
Local Label = Instance.new('TextLabel')
7+
Frame = Instance.new('Frame')
8
Label = Instance.new('TextLabel')
9
 
10
Gui.Parent = script.Parent
11
Gui.Name = "MyApplicationGui"
12
Frame.Parent = script.Parent.MyApplicationGui
13
Frame.Name = "ApplicationFrame"
14
Label.Parent = script.Parent.MyApplicationGui.ApplicationFrame
15
Label.Name = "MyLabel"
16
17
Frame.Size = UDim2.new(1,0,1,0)
18
Frame.Transparency = 1
19
Frame.Position = UDim2.new(-4,0,0,0)
20
21
Label.Size = UDim2.new(1,0,1,0)
22
Label.Transparency = 0.5
23
Label.Text = "Thanks for Reading my Application"
24
Label.FontSize = Enum.FontSize.Size48
25
26-
Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Bounce", 3)
26+
27-
wait(3) 
27+
Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Linear", 5)
28-
Frame:TweenPosition(UDim2.new(-4, 0, 0, 0), "In", "Bounce", 3)
28+
wait(6) 
29
Frame:TweenPosition(UDim2.new(-4, 0, 0, 0), "In", "Linear", 5)
30
31
Gui:remove()
32
print ("Goodbye")