Advertisement
XxMirayxX21

ConcatLibraryv2

Apr 26th, 2021
1,340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 19.18 KB | None | 0 0
  1. local Core = game:GetService("CoreGui")
  2. local Gui = Core:FindFirstChild("Library2")
  3. if Gui then
  4.     Gui:Destroy()
  5. end
  6.    
  7. local Library = {}
  8.  
  9. function Library.Window(Name)
  10.     --[[
  11.         Name = Title
  12.     ]]
  13.  
  14.     local Library2 = Instance.new("ScreenGui")
  15.     local Main = Instance.new("Frame")
  16.     local Shadow = Instance.new("ImageLabel")
  17.     local UICorner = Instance.new("UICorner")
  18.     local Tabs = Instance.new("Frame")
  19.     local UICorner_2 = Instance.new("UICorner")
  20.     local UIListLayout = Instance.new("UIListLayout")
  21.     local Seperator = Instance.new("Frame")
  22.     local Title = Instance.new("TextLabel")
  23.     local TabFrames = Instance.new("Frame")
  24.     local UIS = game:GetService("UserInputService")
  25.  
  26.     function dragify(Frame)
  27.         dragToggle = nil
  28.         local dragSpeed = nil
  29.         dragInput = nil
  30.         dragStart = nil
  31.         local dragPos = nil
  32.         function updateInput(input)
  33.             local Delta = input.Position - dragStart
  34.             local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  35.             game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.10), {Position = Position}):Play()
  36.         end
  37.         Frame.InputBegan:Connect(function(input)
  38.             if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
  39.                 dragToggle = true
  40.                 dragStart = input.Position
  41.                 startPos = Frame.Position
  42.                 input.Changed:Connect(function()
  43.                     if input.UserInputState == Enum.UserInputState.End then
  44.                         dragToggle = false
  45.                     end
  46.                 end)
  47.             end
  48.         end)
  49.         Frame.InputChanged:Connect(function(input)
  50.             if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  51.                 dragInput = input
  52.             end
  53.         end)
  54.         game:GetService("UserInputService").InputChanged:Connect(function(input)
  55.             if input == dragInput and dragToggle then
  56.                 updateInput(input)
  57.             end
  58.         end)
  59.     end
  60.  
  61.     dragify(Main)
  62.  
  63.     --Properties:
  64.  
  65.     Library2.Name = "Library2"
  66.     Library2.Parent = game:WaitForChild("CoreGui")
  67.     Library2.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  68.  
  69.     Main.Name = "Main"
  70.     Main.Parent = Library2
  71.     Main.BackgroundColor3 = Color3.fromRGB(107, 119, 138)
  72.     Main.BorderSizePixel = 0
  73.     Main.Position = UDim2.new(0.265921146, 0, 0.207720801, 0)
  74.     Main.Size = UDim2.new(0, 587, 0, 354)
  75.  
  76.     Shadow.Name = "Shadow"
  77.     Shadow.Parent = Main
  78.     Shadow.AnchorPoint = Vector2.new(0.5, 0.5)
  79.     Shadow.BackgroundTransparency = 1.000
  80.     Shadow.BorderSizePixel = 0
  81.     Shadow.Position = UDim2.new(0.501402557, 0, 0.49929139, 0)
  82.     Shadow.Size = UDim2.new(0.993281424, 18, 0.986014247, 18)
  83.     Shadow.ZIndex = 0
  84.     Shadow.Image = "rbxassetid://1316045217"
  85.     Shadow.ImageColor3 = Color3.fromRGB(0, 0, 0)
  86.     Shadow.ImageTransparency = 0.700
  87.     Shadow.ScaleType = Enum.ScaleType.Slice
  88.     Shadow.SliceCenter = Rect.new(10, 10, 118, 118)
  89.  
  90.     UICorner.CornerRadius = UDim.new(0, 2)
  91.     UICorner.Parent = Main
  92.  
  93.     Tabs.Name = "Tabs"
  94.     Tabs.Parent = Main
  95.     Tabs.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  96.     Tabs.Size = UDim2.new(0, 120, 0, 354)
  97.  
  98.     UICorner_2.CornerRadius = UDim.new(0, 1)
  99.     UICorner_2.Parent = Tabs
  100.  
  101.     UIListLayout.Parent = Tabs
  102.     UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  103.     UIListLayout.Padding = UDim.new(0, 3)
  104.  
  105.     Seperator.Name = "Seperator"
  106.     Seperator.Parent = Tabs
  107.     Seperator.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  108.     Seperator.BackgroundTransparency = 1.000
  109.     Seperator.Size = UDim2.new(0, 120, 0, 2)
  110.  
  111.     Title.Name = "Title"
  112.     Title.Parent = Tabs
  113.     Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  114.     Title.BackgroundTransparency = 1.000
  115.     Title.Position = UDim2.new(0, 0, 0.0254237279, 0)
  116.     Title.Size = UDim2.new(0, 120, 0, 21)
  117.     Title.Font = Enum.Font.GothamSemibold
  118.     Title.Text = "  " ..Name
  119.     Title.TextColor3 = Color3.fromRGB(232, 232, 232)
  120.     Title.TextSize = 16.000
  121.     Title.TextWrapped = true
  122.     Title.TextXAlignment = Enum.TextXAlignment.Left
  123.  
  124.     TabFrames.Name = "TabFrames"
  125.     TabFrames.Parent = Main
  126.     TabFrames.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  127.     TabFrames.BackgroundTransparency = 1.000
  128.     TabFrames.Position = UDim2.new(0.204429299, 0, 0, 0)
  129.     TabFrames.Size = UDim2.new(0, 467, 0, 354)
  130.  
  131.     local TabTable = {}
  132.  
  133.     function TabTable.Tab(Name)
  134.         --[[
  135.             Name = Tab Title
  136.         ]]
  137.  
  138.         local TabButton = Instance.new("TextButton")
  139.         local TextLabel = Instance.new("TextLabel")
  140.         local UICorner_3 = Instance.new("UICorner")
  141.         local TabPage = Instance.new("Frame")
  142.         local Bottom = Instance.new("Frame")
  143.         local UIGradient = Instance.new("UIGradient")
  144.         local TabContainor = Instance.new("ScrollingFrame")
  145.         local UIListLayout_2 = Instance.new("UIListLayout")
  146.  
  147.         TabButton.Name = "TabButton"
  148.         TabButton.Parent = Tabs
  149.         TabButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  150.         TabButton.BackgroundTransparency = 1.000
  151.         TabButton.Position = UDim2.new(0, 0, 0.0734463334, 0)
  152.         TabButton.Size = UDim2.new(0, 120, 0, 29)
  153.         TabButton.Font = Enum.Font.SourceSans
  154.         TabButton.Text = ""
  155.         TabButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  156.         TabButton.TextSize = 14.000
  157.  
  158.         TextLabel.Parent = TabButton
  159.         TextLabel.BackgroundColor3 = Color3.fromRGB(107, 119, 138)
  160.         TextLabel.Position = UDim2.new(0.0500000007, 0, 0.0689655095, 0)
  161.         TextLabel.Size = UDim2.new(0, 108, 0, 24)
  162.         TextLabel.Font = Enum.Font.Gotham
  163.         TextLabel.Text = Name
  164.         TextLabel.TextColor3 = Color3.fromRGB(227, 227, 227)
  165.         TextLabel.TextSize = 14.000
  166.  
  167.         UICorner_3.CornerRadius = UDim.new(0, 2)
  168.         UICorner_3.Parent = TextLabel
  169.  
  170.         TabPage.Name = Name
  171.         TabPage.Parent = TabFrames
  172.         TabPage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  173.         TabPage.BackgroundTransparency = 1.000
  174.         TabPage.Size = UDim2.new(0, 467, 0, 354)
  175.    
  176.         Bottom.Name = "Bottom"
  177.         Bottom.Parent = TabPage
  178.         Bottom.AnchorPoint = Vector2.new(0, 1)
  179.         Bottom.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  180.         Bottom.BorderSizePixel = 0
  181.         Bottom.Position = UDim2.new(0, 0, 1, 0)
  182.         Bottom.Size = UDim2.new(1, 0, -0.0183885116, 60)
  183.         Bottom.ZIndex = 2
  184.    
  185.         UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(44, 44, 44)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(22, 22, 22))}
  186.         UIGradient.Rotation = 90
  187.         UIGradient.Transparency = NumberSequence.new{NumberSequenceKeypoint.new(0.00, 1.00), NumberSequenceKeypoint.new(1.00, 0.00)}
  188.         UIGradient.Parent = Bottom
  189.    
  190.         TabContainor.Name = "TabContainor"
  191.         TabContainor.Parent = TabPage
  192.         TabContainor.Active = true
  193.         TabContainor.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  194.         TabContainor.BackgroundTransparency = 1.000
  195.         TabContainor.BorderSizePixel = 0
  196.         TabContainor.Position = UDim2.new(0.0128479656, 0, 0.0141242938, 0)
  197.         TabContainor.Size = UDim2.new(0, 475, 0, 349)
  198.         TabContainor.BottomImage = ""
  199.         TabContainor.CanvasSize = UDim2.new(0, 0, 10000, 0)
  200.         TabContainor.MidImage = ""
  201.         TabContainor.TopImage = ""
  202.    
  203.         UIListLayout_2.Parent = TabContainor
  204.         UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder
  205.         UIListLayout_2.Padding = UDim.new(0, 3)
  206.        
  207.         TabButton.MouseButton1Down:Connect(function()
  208.             for i,v in pairs(TabFrames:GetChildren()) do
  209.                 v.Visible = false
  210.             end
  211.  
  212.             TabPage.Visible = true
  213.         end)
  214.  
  215.         local TweenService = game:GetService("TweenService")
  216.  
  217.         local Color1 = {}
  218.         Color1.BackgroundColor3 = Color3.fromRGB(84, 93, 108)
  219.            
  220.         local Color2 = {}
  221.         Color2.BackgroundColor3 = Color3.fromRGB(107, 119, 138)
  222.            
  223.         local TweenTime = TweenInfo.new(0.5)
  224.            
  225.         local Tween1 = TweenService:Create(TextLabel, TweenTime, Color1)
  226.         local Tween2 = TweenService:Create(TextLabel, TweenTime, Color2)
  227.            
  228.         TextLabel.MouseEnter:Connect(function()
  229.             Tween1:Play()
  230.         end)
  231.            
  232.         TextLabel.MouseLeave:Connect(function()
  233.             Tween2:Play()
  234.         end)
  235.  
  236.         local Utility = {}
  237.  
  238.         function Utility.Button(Name, Description, ButtonName, Callback)
  239.             --[[
  240.                 Name = Card Name
  241.                 Description = Card Description
  242.                 ButtonName = Button Name
  243.                 CallBack = Function/Code
  244.             ]]
  245.  
  246.             local Execute = pcall
  247.             local ButtonCard = Instance.new("Frame")
  248.             local UICorner_4 = Instance.new("UICorner")
  249.             local ButtonTitle = Instance.new("TextLabel")
  250.             local ButDesc = Instance.new("TextLabel")
  251.             local ButtonFrame = Instance.new("TextLabel")
  252.             local UICorner_5 = Instance.new("UICorner")
  253.             local Button = Instance.new("TextButton")
  254.  
  255.             ButtonCard.Name = "ButtonCard"
  256.             ButtonCard.Parent = TabContainor
  257.             ButtonCard.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  258.             ButtonCard.BorderColor3 = Color3.fromRGB(27, 42, 53)
  259.             ButtonCard.Size = UDim2.new(0, 454, 0, 72)
  260.  
  261.             UICorner_4.CornerRadius = UDim.new(0, 1)
  262.             UICorner_4.Parent = ButtonCard
  263.  
  264.             ButtonTitle.Name = "ButtonTitle"
  265.             ButtonTitle.Parent = ButtonCard
  266.             ButtonTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  267.             ButtonTitle.BackgroundTransparency = 1.000
  268.             ButtonTitle.Position = UDim2.new(0.0132158594, 0, 0, 0)
  269.             ButtonTitle.Size = UDim2.new(0, 448, 0, 26)
  270.             ButtonTitle.Font = Enum.Font.Gotham
  271.             ButtonTitle.Text = Name
  272.             ButtonTitle.TextColor3 = Color3.fromRGB(239, 239, 239)
  273.             ButtonTitle.TextSize = 14.000
  274.             ButtonTitle.TextXAlignment = Enum.TextXAlignment.Left
  275.  
  276.             ButDesc.Name = "ButDesc"
  277.             ButDesc.Parent = ButtonCard
  278.             ButDesc.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  279.             ButDesc.BackgroundTransparency = 1.000
  280.             ButDesc.Position = UDim2.new(0.0132158594, 0, 0.361111104, 0)
  281.             ButDesc.Size = UDim2.new(0, 368, 0, 40)
  282.             ButDesc.Font = Enum.Font.Gotham
  283.             ButDesc.Text = Description
  284.             ButDesc.TextColor3 = Color3.fromRGB(255, 255, 255)
  285.             ButDesc.TextSize = 12.000
  286.             ButDesc.TextWrapped = true
  287.             ButDesc.TextXAlignment = Enum.TextXAlignment.Left
  288.             ButDesc.TextYAlignment = Enum.TextYAlignment.Top
  289.  
  290.             ButtonFrame.Name = "ButtonFrame"
  291.             ButtonFrame.Parent = ButtonCard
  292.             ButtonFrame.BackgroundColor3 = Color3.fromRGB(107, 119, 138)
  293.             ButtonFrame.Position = UDim2.new(0.840748906, 0, 0.541187704, 0)
  294.             ButtonFrame.Size = UDim2.new(0, 65, 0, 27)
  295.             ButtonFrame.Font = Enum.Font.Gotham
  296.             ButtonFrame.Text = ButtonName
  297.             ButtonFrame.TextColor3 = Color3.fromRGB(227, 227, 227)
  298.             ButtonFrame.TextSize = 12.000
  299.  
  300.             UICorner_5.CornerRadius = UDim.new(0, 2)
  301.             UICorner_5.Parent = ButtonFrame
  302.  
  303.             Button.Name = "Button"
  304.             Button.Parent = ButtonFrame
  305.             Button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  306.             Button.BackgroundTransparency = 1.000
  307.             Button.Size = UDim2.new(0, 65, 0, 27)
  308.             Button.Font = Enum.Font.SourceSans
  309.             Button.TextWrapped = true
  310.             Button.Text = ""
  311.             Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  312.             Button.TextSize = 14.000
  313.  
  314.             Button.MouseButton1Down:Connect(function()
  315.                 Execute(Callback)
  316.             end)
  317.  
  318.             local TweenService = game:GetService("TweenService")
  319.  
  320.             local Color1 = {}
  321.             Color1.BackgroundColor3 = Color3.fromRGB(84, 93, 108)
  322.            
  323.             local Color2 = {}
  324.             Color2.BackgroundColor3 = Color3.fromRGB(107, 119, 138)
  325.            
  326.             local TweenTime = TweenInfo.new(0.5)
  327.            
  328.             local Tween1 = TweenService:Create(ButtonFrame, TweenTime, Color1)
  329.             local Tween2 = TweenService:Create(ButtonFrame, TweenTime, Color2)
  330.            
  331.             ButtonFrame.MouseEnter:Connect(function()
  332.                 Tween1:Play()
  333.             end)
  334.            
  335.             ButtonFrame.MouseLeave:Connect(function()
  336.                 Tween2:Play()
  337.             end)
  338.         end
  339.  
  340.         function Utility.Label(Name, Description)
  341.             local LabelCard = Instance.new("Frame")
  342.             local UICorner = Instance.new("UICorner")
  343.             local LabelDesc = Instance.new("TextLabel")
  344.             local LabelTitle = Instance.new("TextLabel")
  345.  
  346.             LabelCard.Name = "LabelCard"
  347.             LabelCard.Parent = TabContainor
  348.             LabelCard.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  349.             LabelCard.BorderColor3 = Color3.fromRGB(27, 42, 53)
  350.             LabelCard.Size = UDim2.new(0, 454, 0, 72)
  351.  
  352.             UICorner.CornerRadius = UDim.new(0, 1)
  353.             UICorner.Parent = LabelCard
  354.  
  355.             LabelDesc.Name = "LabelDesc"
  356.             LabelDesc.Parent = LabelCard
  357.             LabelDesc.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  358.             LabelDesc.BackgroundTransparency = 1.000
  359.             LabelDesc.Position = UDim2.new(0.0132158594, 0, 0.361111104, 0)
  360.             LabelDesc.Size = UDim2.new(0, 440, 0, 40)
  361.             LabelDesc.Font = Enum.Font.Gotham
  362.             LabelDesc.Text = Description
  363.             LabelDesc.TextColor3 = Color3.fromRGB(255, 255, 255)
  364.             LabelDesc.TextSize = 12.000
  365.             LabelDesc.TextWrapped = true
  366.             LabelDesc.TextXAlignment = Enum.TextXAlignment.Left
  367.             LabelDesc.TextYAlignment = Enum.TextYAlignment.Top
  368.  
  369.             LabelTitle.Name = "LabelTitle"
  370.             LabelTitle.Parent = LabelCard
  371.             LabelTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  372.             LabelTitle.BackgroundTransparency = 1.000
  373.             LabelTitle.Position = UDim2.new(0.0132158594, 0, 0, 0)
  374.             LabelTitle.Size = UDim2.new(0, 448, 0, 26)
  375.             LabelTitle.Font = Enum.Font.Gotham
  376.             LabelTitle.Text = Name
  377.             LabelTitle.TextColor3 = Color3.fromRGB(239, 239, 239)
  378.             LabelTitle.TextSize = 14.000
  379.             LabelTitle.TextXAlignment = Enum.TextXAlignment.Left
  380.         end
  381.  
  382.         function Utility.Input(Name, Description, Callback)
  383.             local InputCard = Instance.new("Frame")
  384.             local UICorner = Instance.new("UICorner")
  385.             local InputDesc = Instance.new("TextLabel")
  386.             local InputTitle = Instance.new("TextLabel")
  387.             local InputFrame = Instance.new("TextLabel")
  388.             local UICorner_2 = Instance.new("UICorner")
  389.             local TextBox = Instance.new("TextBox")
  390.  
  391.             --Properties:
  392.  
  393.             InputCard.Name = "InputCard"
  394.             InputCard.Parent = TabContainor
  395.             InputCard.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  396.             InputCard.BorderColor3 = Color3.fromRGB(27, 42, 53)
  397.             InputCard.Size = UDim2.new(0, 454, 0, 72)
  398.  
  399.             UICorner.CornerRadius = UDim.new(0, 1)
  400.             UICorner.Parent = InputCard
  401.  
  402.             InputDesc.Name = "InputDesc"
  403.             InputDesc.Parent = InputCard
  404.             InputDesc.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  405.             InputDesc.BackgroundTransparency = 1.000
  406.             InputDesc.Position = UDim2.new(0.0132158594, 0, 0.361111104, 0)
  407.             InputDesc.Size = UDim2.new(0, 440, 0, 16)
  408.             InputDesc.Font = Enum.Font.Gotham
  409.             InputDesc.Text = Description
  410.             InputDesc.TextColor3 = Color3.fromRGB(255, 255, 255)
  411.             InputDesc.TextSize = 12.000
  412.             InputDesc.TextWrapped = true
  413.             InputDesc.TextXAlignment = Enum.TextXAlignment.Left
  414.             InputDesc.TextYAlignment = Enum.TextYAlignment.Top
  415.  
  416.             InputTitle.Name = "InputTitle"
  417.             InputTitle.Parent = InputCard
  418.             InputTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  419.             InputTitle.BackgroundTransparency = 1.000
  420.             InputTitle.Position = UDim2.new(0.0132158594, 0, 0, 0)
  421.             InputTitle.Size = UDim2.new(0, 448, 0, 26)
  422.             InputTitle.Font = Enum.Font.Gotham
  423.             InputTitle.Text = Name
  424.             InputTitle.TextColor3 = Color3.fromRGB(239, 239, 239)
  425.             InputTitle.TextSize = 14.000
  426.             InputTitle.TextXAlignment = Enum.TextXAlignment.Left
  427.  
  428.             InputFrame.Name = "InputFrame"
  429.             InputFrame.Parent = InputCard
  430.             InputFrame.BackgroundColor3 = Color3.fromRGB(84, 93, 108)
  431.             InputFrame.Position = UDim2.new(0.0125550926, 0, 0.583333313, 0)
  432.             InputFrame.Size = UDim2.new(0, 440, 0, 23)
  433.             InputFrame.Font = Enum.Font.Gotham
  434.             InputFrame.Text = ""
  435.             InputFrame.TextColor3 = Color3.fromRGB(227, 227, 227)
  436.             InputFrame.TextSize = 12.000
  437.  
  438.             UICorner_2.CornerRadius = UDim.new(0, 2)
  439.             UICorner_2.Parent = InputFrame
  440.  
  441.             TextBox.Parent = InputFrame
  442.             TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  443.             TextBox.BackgroundTransparency = 1.000
  444.             TextBox.Size = UDim2.new(0, 440, 0, 23)
  445.             TextBox.Font = Enum.Font.Gotham
  446.             TextBox.Text = ""
  447.             TextBox.TextColor3 = Color3.fromRGB(241, 241, 241)
  448.             TextBox.TextSize = 12.000
  449.  
  450.             local TweenService = game:GetService("TweenService")
  451.  
  452.             local Color1 = {}
  453.             Color1.BackgroundColor3 = Color3.fromRGB(84, 93, 108)
  454.            
  455.             local Color2 = {}
  456.             Color2.BackgroundColor3 = Color3.fromRGB(107, 119, 138)
  457.            
  458.             local TweenTime = TweenInfo.new(0.5)
  459.            
  460.             local Tween1 = TweenService:Create(InputFrame, TweenTime, Color1)
  461.             local Tween2 = TweenService:Create(InputFrame, TweenTime, Color2)
  462.            
  463.             InputFrame.MouseEnter:Connect(function()
  464.                 Tween1:Play()
  465.             end)
  466.            
  467.             InputFrame.MouseLeave:Connect(function()
  468.                 Tween2:Play()
  469.             end)
  470.  
  471.             TextBox.FocusLost:Connect(function()
  472.                 local Text = TextBox.Text
  473.  
  474.                 pcall(Callback, Text)
  475.             end)
  476.         end
  477.        
  478.         return Utility
  479.     end
  480.    
  481.     function Library.AutoPage(Name)
  482.     for _,v in pairs(game:WaitForChild("CoreGui").Library2.Main.TabFrames:GetChildren()) do
  483.         v.Visible = false
  484.     end
  485.  
  486.     game:WaitForChild("CoreGui").Library2.Main.TabFrames[Name].Visible = true
  487. end
  488.  
  489.     return TabTable
  490. end
  491.  
  492. return Library
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement