null
nil
-
InfoGUI
-
false
4288914085
0
4279970357
1
false
false
MainFrame
1
0
0.25
0
0.5
0
0.5
0
0
0
true
1
-
true
true
4278255360
0
4278190080
1
false
false
0
0
false
OpenCloser
0
-20
0
0
false
0
20
1
0
0
0
4279970357
false
4278190080
1
0
false
2
1
true
1
-
false
Script
open = false
script.Parent.MouseButton1Click:connect(function()
if open == false then
endpos = UDim2.new(0.25,0,0.25,0)
script.Parent.Parent:TweenPosition(endpos,"Out","Quad",0.75,false,nil)
script.Parent.BackgroundColor3 = Color3.new(170,0,0)
open = true
elseif open == true then
endpos = UDim2.new(1,0,0.25,0)
script.Parent.Parent:TweenPosition(endpos,"Out","Quad",0.75,false,nil)
script.Parent.BackgroundColor3 = Color3.new(0,170,0)
open = false
end
end)
-
false
4288914085
0
4279970357
1
false
false
Frame1
0
1
0
0
1
-1
1
-30
0
0
true
1
-
PageNumber
1
-
true
true
4288914085
0
4279970357
1
false
false
0
0
false
PrevPage
0
1
1
-29
false
0.5
-1
0
29
0
0
Prev
4279970357
false
4278190080
1
0
false
2
1
true
1
-
true
true
4288914085
0
4279970357
1
false
false
0
0
false
NextPage
0.5
1
1
-29
false
0.5
-1
0
29
0
0
Next
4279970357
false
4278190080
1
0
false
2
1
true
1
-
false
4283804415
0
4279970357
1
false
false
Frame2
0
1
0
0
1
-1
1
-30
0
0
false
1
-
false
4294901760
0
4279970357
1
false
false
Frame3
0
1
0
0
1
-1
1
-30
0
0
false
1
-
false
Script
pagenumber = script.Parent.PageNumber
script.Parent.NextPage.MouseButton1Click:connect(function()
pagenumber.Value = pagenumber.Value + 1
if script.Parent:FindFirstChild("Frame"..pagenumber.Value) then
c = script.Parent:GetChildren()
for i = 1, #c do
if c[i].ClassName == "Frame" then
if c[i].Name == ("Frame"..pagenumber.Value) then
c[i].Visible = true
else
c[i].Visible = false
end
end
end
elseif script.Parent:FindFirstChild("Frame"..pagenumber.Value) == nil then
c = script.Parent:GetChildren()
for i = 1, #c do
if c[i].ClassName == "Frame" then
if c[i].Name == "Frame1" then
c[i].Visible = true
else
c[i].Visible = false
end
end
end
pagenumber.Value = 1
end
end)
script.Parent.PrevPage.MouseButton1Click:connect(function()
pagenumber.Value = pagenumber.Value - 1
if script.Parent:FindFirstChild("Frame"..pagenumber.Value) then
c = script.Parent:GetChildren()
for i = 1, #c do
if c[i].ClassName == "Frame" then
if c[i].Name == ("Frame"..pagenumber.Value) then
c[i].Visible = true
else
c[i].Visible = false
end
end
end
elseif script.Parent:FindFirstChild("Frame"..pagenumber.Value) == nil then
c = script.Parent:GetChildren()
num_frames = 0
for i = 1, #c do
if c[i].ClassName == "Frame" then
num_frames = num_frames + 1
end
end
c = script.Parent:GetChildren()
for i = 1, #c do
if c[i].ClassName == "Frame" then
if c[i].Name == ("Frame"..num_frames) then
c[i].Visible = true
else
c[i].Visible = false
end
end
end
pagenumber.Value = num_frames
end
end)
-
false
4283782400
0
4279970357
1
false
false
Frame4
0
1
0
0
1
-1
1
-30
0
0
false
1
-
false
4294923775
0
4279970357
1
false
false
Frame5
0
1
0
0
1
-1
1
-30
0
0
false
1