IMTHEBO2

newFluxLib

Aug 2nd, 2024
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 95.04 KB | None | 0 0
  1. local Flux = {RainbowColorValue = 0, HueSelectionPosition = 0}
  2. local PresetColor = Color3.fromRGB(66, 134, 255)
  3. local UserInputService = game:GetService("UserInputService")
  4. local TweenService = game:GetService("TweenService")
  5. local RunService = game:GetService("RunService")
  6. local LocalPlayer = game:GetService("Players").LocalPlayer
  7. local Mouse = LocalPlayer:GetMouse()
  8. local CloseBind = Enum.KeyCode.RightControl
  9. local sizeX, sizeY = 706, 484
  10.  
  11. local FluxLib = Instance.new("ScreenGui")
  12. FluxLib.Name = "FluxLib"
  13. FluxLib.Parent = LocalPlayer.PlayerGui  --game.CoreGui
  14. FluxLib.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Flux.ui = FluxLib
  17.  
  18. coroutine.wrap(
  19.     function()
  20.         while wait() do
  21.             Flux.RainbowColorValue = Flux.RainbowColorValue + 1 / 255
  22.             Flux.HueSelectionPosition = Flux.HueSelectionPosition + 1
  23.  
  24.             if Flux.RainbowColorValue >= 1 then
  25.                 Flux.RainbowColorValue = 0
  26.             end
  27.  
  28.             if Flux.HueSelectionPosition == 80 then
  29.                 Flux.HueSelectionPosition = 0
  30.             end
  31.         end
  32.     end
  33. )()
  34.  
  35. local function MakeDraggable(topbarobject, object)
  36.     local Dragging = nil
  37.     local DragInput = nil
  38.     local DragStart = nil
  39.     local StartPosition = nil
  40.  
  41.     local function Update(input)
  42.         local Delta = input.Position - DragStart
  43.         local pos =
  44.             UDim2.new(
  45.                 StartPosition.X.Scale,
  46.                 StartPosition.X.Offset + Delta.X,
  47.                 StartPosition.Y.Scale,
  48.                 StartPosition.Y.Offset + Delta.Y
  49.             )
  50.         object.Position = pos
  51.     end
  52.  
  53.     topbarobject.InputBegan:Connect(
  54.         function(input)
  55.             if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  56.                 Dragging = true
  57.                 DragStart = input.Position
  58.                 StartPosition = object.Position
  59.  
  60.                 input.Changed:Connect(
  61.                     function()
  62.                         if input.UserInputState == Enum.UserInputState.End then
  63.                             Dragging = false
  64.                         end
  65.                     end
  66.                 )
  67.             end
  68.         end
  69.     )
  70.  
  71.     topbarobject.InputChanged:Connect(
  72.         function(input)
  73.             if
  74.                 input.UserInputType == Enum.UserInputType.MouseMovement or
  75.                 input.UserInputType == Enum.UserInputType.Touch
  76.             then
  77.                 DragInput = input
  78.             end
  79.         end
  80.     )
  81.  
  82.     UserInputService.InputChanged:Connect(
  83.         function(input)
  84.             if input == DragInput and Dragging then
  85.                 Update(input)
  86.             end
  87.         end
  88.     )
  89. end
  90.  
  91.  
  92.  
  93. function Flux:Window(text, bottom,mainclr,toclose)
  94.     CloseBind = toclose or Enum.KeyCode.RightControl
  95.     PresetColor = mainclr or Color3.fromRGB(66, 134, 255)
  96.     local fs = false
  97.     local MainFrame = Instance.new("Frame")
  98.     local MainCorner = Instance.new("UICorner")
  99.     local LeftFrame = Instance.new("Frame")
  100.     local LeftCorner = Instance.new("UICorner")
  101.     local GlowTabHolder = Instance.new("ImageLabel")
  102.     local Title = Instance.new("TextLabel")
  103.     local BottomText = Instance.new("TextLabel")
  104.     local TabHold = Instance.new("Frame")
  105.     local TabLayout = Instance.new("UIListLayout")
  106.     local Drag = Instance.new("Frame")
  107.     local ContainerFolder = Instance.new("Folder")
  108.  
  109.     MainFrame.Name = "MainFrame"
  110.     MainFrame.Parent = FluxLib
  111.     MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  112.     MainFrame.BackgroundColor3 = Color3.fromRGB(50, 53, 59)
  113.     MainFrame.ClipsDescendants = true
  114.     MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  115.     MainFrame.Size = UDim2.new(0.7, 0, 0.7, 0)
  116.  
  117.     MainCorner.CornerRadius = UDim.new(0, 5)
  118.     MainCorner.Name = "MainCorner"
  119.     MainCorner.Parent = MainFrame
  120.  
  121.     LeftFrame.Name = "LeftFrame"
  122.     LeftFrame.Parent = MainFrame
  123.     LeftFrame.BackgroundColor3 = Color3.fromRGB(47, 49, 54)
  124.     LeftFrame.Size = UDim2.new(0, 205, 0, 484)
  125.  
  126.     LeftCorner.CornerRadius = UDim.new(0, 5)
  127.     LeftCorner.Name = "LeftCorner"
  128.     LeftCorner.Parent = LeftFrame
  129.  
  130.     GlowTabHolder.Name = "GlowTabHolder"
  131.     GlowTabHolder.Parent = LeftFrame
  132.     GlowTabHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  133.     GlowTabHolder.BackgroundTransparency = 1.000
  134.     GlowTabHolder.BorderSizePixel = 0
  135.     GlowTabHolder.Position = UDim2.new(0, -15, 0, -15)
  136.     GlowTabHolder.Size = UDim2.new(1, 30, 1, 30)
  137.     GlowTabHolder.ZIndex = 0
  138.     GlowTabHolder.Image = "rbxassetid://4996891970"
  139.     GlowTabHolder.ImageColor3 = Color3.fromRGB(15, 15, 15)
  140.     GlowTabHolder.ScaleType = Enum.ScaleType.Slice
  141.     GlowTabHolder.SliceCenter = Rect.new(20, 20, 280, 280)
  142.  
  143.     Title.Name = "Title"
  144.     Title.Parent = LeftFrame
  145.     Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  146.     Title.BackgroundTransparency = 1.000
  147.     Title.Position = UDim2.new(0.097560972, 0, 0.0475206636, 0)
  148.     Title.Size = UDim2.new(0, 111, 0, 34)
  149.     Title.Font = Enum.Font.GothamBold
  150.     Title.Text = text
  151.     Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  152.     Title.TextSize = 25.000
  153.     Title.TextXAlignment = Enum.TextXAlignment.Left
  154.  
  155.     BottomText.Name = "BottomText"
  156.     BottomText.Parent = LeftFrame
  157.     BottomText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  158.     BottomText.BackgroundTransparency = 1.000
  159.     BottomText.Position = UDim2.new(0.097560972, 0, 0.0889999792, 0)
  160.     BottomText.Size = UDim2.new(0, 113, 0, 28)
  161.     BottomText.Font = Enum.Font.Gotham
  162.     BottomText.Text = bottom
  163.     BottomText.TextColor3 = Color3.fromRGB(255, 255, 255)
  164.     BottomText.TextSize = 14.000
  165.     BottomText.TextTransparency = 0.300
  166.     BottomText.TextXAlignment = Enum.TextXAlignment.Left
  167.  
  168.     TabHold.Name = "TabHold"
  169.     TabHold.Parent = LeftFrame
  170.     TabHold.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  171.     TabHold.BackgroundTransparency = 1.000
  172.     TabHold.Position = UDim2.new(0, 0, 0.167355374, 0)
  173.     TabHold.Size = UDim2.new(0, 205, 0, 403)
  174.  
  175.     TabLayout.Name = "TabLayout"
  176.     TabLayout.Parent = TabHold
  177.     TabLayout.SortOrder = Enum.SortOrder.LayoutOrder
  178.     TabLayout.Padding = UDim.new(0, 3)
  179.  
  180.     Drag.Name = "Drag"
  181.     Drag.Parent = MainFrame
  182.     Drag.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  183.     Drag.BackgroundTransparency = 1.000
  184.     Drag.Position = UDim2.new(0.290368259, 0, 0, 0)
  185.     Drag.Size = UDim2.new(0, 501, 0, 23)
  186.  
  187.     ContainerFolder.Name = "ContainerFolder"
  188.     ContainerFolder.Parent = MainFrame
  189.  
  190.     MakeDraggable(Drag,MainFrame)
  191.     MakeDraggable(LeftFrame,MainFrame)
  192.     MainFrame:TweenSize(UDim2.new(0, sizeX, 0, sizeY), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  193.  
  194.     local uitoggled = false
  195.    
  196.     local function toggle()
  197.         if uitoggled == false then
  198.             MainFrame:TweenSize(UDim2.new(0, 0, 0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  199.             uitoggled = true
  200.             wait(.5)
  201.             -- FluxLib.Enabled = false
  202.             MainFrame.Visible = false
  203.         else
  204.             MainFrame:TweenSize(UDim2.new(0, sizeX, 0, sizeY), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  205.             --FluxLib.Enabled = true
  206.             MainFrame.Visible = true
  207.             uitoggled = false
  208.         end
  209.     end
  210.    
  211.     if typeof(CloseBind) == "Instance" then
  212.         MakeDraggable(CloseBind, CloseBind)
  213.         CloseBind.Activated:Connect(toggle)
  214.     else
  215.         UserInputService.InputBegan:Connect(
  216.             function(io, p)
  217.                 if io.KeyCode == CloseBind then
  218.                     toggle()
  219.                 end
  220.             end
  221.         )
  222.     end
  223.     function Flux:Notification(desc,buttontitle)
  224.         for i, v in next, MainFrame:GetChildren() do
  225.             if v.Name == "NotificationBase" then
  226.                 v:Destroy()
  227.             end
  228.         end
  229.         local NotificationBase = Instance.new("TextButton")
  230.         local NotificationBaseCorner = Instance.new("UICorner")
  231.         local NotificationFrame = Instance.new("Frame")
  232.         local NotificationFrameCorner = Instance.new("UICorner")
  233.         local NotificationFrameGlow = Instance.new("ImageLabel")
  234.         local NotificationTitle = Instance.new("TextLabel")
  235.         local CloseBtn = Instance.new("TextButton")
  236.         local CloseBtnCorner = Instance.new("UICorner")
  237.         local NotificationDesc = Instance.new("TextLabel")
  238.  
  239.         NotificationBase.Name = "NotificationBase"
  240.         NotificationBase.Parent = MainFrame
  241.         NotificationBase.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  242.         NotificationBase.BackgroundTransparency = 1
  243.         NotificationBase.Size = UDim2.new(0, 706, 0, 484)
  244.         NotificationBase.AutoButtonColor = false
  245.         NotificationBase.Font = Enum.Font.SourceSans
  246.         NotificationBase.Text = ""
  247.         NotificationBase.TextColor3 = Color3.fromRGB(0, 0, 0)
  248.         NotificationBase.TextSize = 14.000
  249.         NotificationBase.Visible = true
  250.  
  251.         NotificationBaseCorner.CornerRadius = UDim.new(0, 5)
  252.         NotificationBaseCorner.Name = "NotificationBaseCorner"
  253.         NotificationBaseCorner.Parent = NotificationBase
  254.  
  255.         NotificationFrame.Name = "NotificationFrame"
  256.         NotificationFrame.Parent = NotificationBase
  257.         NotificationFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  258.         NotificationFrame.BackgroundColor3 = Color3.fromRGB(50, 53, 59)
  259.         NotificationFrame.ClipsDescendants = true
  260.         NotificationFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  261.         NotificationFrame.Size = UDim2.new(0, 0, 0, 0)
  262.  
  263.         NotificationFrameCorner.CornerRadius = UDim.new(0, 5)
  264.         NotificationFrameCorner.Name = "NotificationFrameCorner"
  265.         NotificationFrameCorner.Parent = NotificationFrame
  266.  
  267.         NotificationFrameGlow.Name = "NotificationFrameGlow"
  268.         NotificationFrameGlow.Parent = NotificationFrame
  269.         NotificationFrameGlow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  270.         NotificationFrameGlow.BackgroundTransparency = 1.000
  271.         NotificationFrameGlow.BorderSizePixel = 0
  272.         NotificationFrameGlow.Position = UDim2.new(0, -15, 0, -15)
  273.         NotificationFrameGlow.Size = UDim2.new(1, 30, 1, 30)
  274.         NotificationFrameGlow.ZIndex = 0
  275.         NotificationFrameGlow.Image = "rbxassetid://4996891970"
  276.         NotificationFrameGlow.ImageColor3 = Color3.fromRGB(15, 15, 15)
  277.         NotificationFrameGlow.ScaleType = Enum.ScaleType.Slice
  278.         NotificationFrameGlow.SliceCenter = Rect.new(20, 20, 280, 280)
  279.  
  280.         NotificationTitle.Name = "NotificationTitle"
  281.         NotificationTitle.Parent = NotificationFrame
  282.         NotificationTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  283.         NotificationTitle.BackgroundTransparency = 1.000
  284.         NotificationTitle.Position = UDim2.new(0.0400609747, 0, 0.0761325806, 0)
  285.         NotificationTitle.Size = UDim2.new(0, 111, 0, 34)
  286.         NotificationTitle.Font = Enum.Font.GothamBold
  287.         NotificationTitle.Text = Title.Text .. " | NOTIFICATION"
  288.         NotificationTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  289.         NotificationTitle.TextSize = 24.000
  290.         NotificationTitle.TextXAlignment = Enum.TextXAlignment.Left
  291.         NotificationTitle.TextTransparency = 1
  292.  
  293.         CloseBtn.Name = "CloseBtn"
  294.         CloseBtn.Parent = NotificationFrame
  295.         CloseBtn.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  296.         CloseBtn.ClipsDescendants = true
  297.         CloseBtn.Position = UDim2.new(0.0403124988, 0, 0.720855951, 0)
  298.         CloseBtn.Size = UDim2.new(0, 366, 0, 43)
  299.         CloseBtn.AutoButtonColor = false
  300.         CloseBtn.Font = Enum.Font.Gotham
  301.         CloseBtn.Text = buttontitle
  302.         CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  303.         CloseBtn.TextSize = 15.000
  304.         CloseBtn.TextTransparency = 1
  305.         CloseBtn.BackgroundTransparency = 1
  306.  
  307.         CloseBtnCorner.CornerRadius = UDim.new(0, 4)
  308.         CloseBtnCorner.Name = "CloseBtnCorner"
  309.         CloseBtnCorner.Parent = CloseBtn
  310.  
  311.         NotificationDesc.Name = "NotificationDesc"
  312.         NotificationDesc.Parent = NotificationFrame
  313.         NotificationDesc.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  314.         NotificationDesc.BackgroundTransparency = 1.000
  315.         NotificationDesc.Position = UDim2.new(0.112499997, 0, 0.266355127, 0)
  316.         NotificationDesc.Size = UDim2.new(0, 309, 0, 82)
  317.         NotificationDesc.Font = Enum.Font.Gotham
  318.         NotificationDesc.Text = desc
  319.         NotificationDesc.TextColor3 = Color3.fromRGB(255, 255, 255)
  320.         NotificationDesc.TextSize = 15.000
  321.         NotificationDesc.TextWrapped = true
  322.         NotificationDesc.TextTransparency = 1
  323.  
  324.         CloseBtn.MouseEnter:Connect(function()
  325.             TweenService:Create(
  326.                 CloseBtn,
  327.                 TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  328.                 {TextTransparency = 0}
  329.             ):Play()
  330.         end)
  331.  
  332.         CloseBtn.MouseLeave:Connect(function()
  333.             TweenService:Create(
  334.                 CloseBtn,
  335.                 TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  336.                 {TextTransparency = 0.3}
  337.             ):Play()
  338.         end)
  339.  
  340.         CloseBtn.MouseButton1Click:Connect(function()
  341.  
  342.             TweenService:Create(
  343.                 NotificationDesc,
  344.                 TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  345.                 {TextTransparency = 1}
  346.             ):Play()
  347.             TweenService:Create(
  348.                 CloseBtn,
  349.                 TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  350.                 {TextTransparency = 1}
  351.             ):Play()
  352.             TweenService:Create(
  353.                 NotificationTitle,
  354.                 TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  355.                 {TextTransparency = 1}
  356.             ):Play()
  357.             TweenService:Create(
  358.                 CloseBtn,
  359.                 TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  360.                 {BackgroundTransparency = 1}
  361.             ):Play()
  362.  
  363.             wait(.4)
  364.             CloseBtn.Visible = false
  365.             NotificationFrame:TweenSize(UDim2.new(0, 0, 0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  366.  
  367.             wait(.2)
  368.  
  369.             TweenService:Create(
  370.                 NotificationBase,
  371.                 TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  372.                 {BackgroundTransparency = 1}
  373.             ):Play()
  374.  
  375.             wait(.2)
  376.  
  377.             NotificationBase.Visible = false
  378.         end)
  379.  
  380.  
  381.         TweenService:Create(
  382.             NotificationBase,
  383.             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  384.             {BackgroundTransparency = 0.550}
  385.         ):Play()
  386.  
  387.         wait(.1)
  388.  
  389.         NotificationFrame:TweenSize(UDim2.new(0, 400, 0, 214), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  390.  
  391.         wait(.4)
  392.         TweenService:Create(
  393.             NotificationDesc,
  394.             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  395.             {TextTransparency = .3}
  396.         ):Play()
  397.         TweenService:Create(
  398.             CloseBtn,
  399.             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  400.             {TextTransparency = .3}
  401.         ):Play()
  402.         TweenService:Create(
  403.             NotificationTitle,
  404.             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  405.             {TextTransparency = 0}
  406.         ):Play()
  407.         TweenService:Create(
  408.             CloseBtn,
  409.             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  410.             {BackgroundTransparency = 0}
  411.         ):Play()
  412.     end
  413.     local Tabs = {}
  414.     function Tabs:Tab(text,ico)
  415.         local Tab = Instance.new("TextButton")
  416.         local TabIcon = Instance.new("ImageLabel")
  417.         local TabTitle = Instance.new("TextLabel")
  418.  
  419.         Tab.Name = "Tab"
  420.         Tab.Parent = TabHold
  421.         Tab.BackgroundColor3 = PresetColor
  422.         Tab.BorderSizePixel = 0
  423.         Tab.Size = UDim2.new(0, 205, 0, 40)
  424.         Tab.AutoButtonColor = false
  425.         Tab.Font = Enum.Font.SourceSans
  426.         Tab.Text = ""
  427.         Tab.TextColor3 = Color3.fromRGB(0, 0, 0)
  428.         Tab.TextSize = 14.000
  429.         Tab.BackgroundTransparency = 1
  430.  
  431.         TabIcon.Name = "TabIcon"
  432.         TabIcon.Parent = Tab
  433.         TabIcon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  434.         TabIcon.BackgroundTransparency = 1.000
  435.         TabIcon.Position = UDim2.new(0.0634146333, 0, 0.25, 0)
  436.         TabIcon.Size = UDim2.new(0, 20, 0, 20)
  437.         TabIcon.Image = ico
  438.         TabIcon.ImageTransparency = .3
  439.  
  440.         TabTitle.Name = "TabTitle"
  441.         TabTitle.Parent = Tab
  442.         TabTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  443.         TabTitle.BackgroundTransparency = 1.000
  444.         TabTitle.Position = UDim2.new(0.1902439, 0, 0.25, 0)
  445.         TabTitle.Size = UDim2.new(0, 113, 0, 19)
  446.         TabTitle.Font = Enum.Font.Gotham
  447.         TabTitle.Text = text
  448.         TabTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  449.         TabTitle.TextSize = 15.000
  450.         TabTitle.TextXAlignment = Enum.TextXAlignment.Left
  451.         TabTitle.TextTransparency = .3
  452.  
  453.         local Container = Instance.new("ScrollingFrame")
  454.         local ContainerLayout = Instance.new("UIListLayout")
  455.  
  456.  
  457.         Container.Name = "Container"
  458.         Container.Parent = ContainerFolder
  459.         Container.Active = true
  460.         Container.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  461.         Container.BackgroundTransparency = 1.000
  462.         Container.BorderSizePixel = 0
  463.         Container.Position = UDim2.new(0.321529746, 0, 0.0475206599, 0)
  464.         Container.Size = UDim2.new(0, 470, 0, 438)
  465.         Container.CanvasSize = UDim2.new(0, 0, 0, 0)
  466.         Container.ScrollBarThickness = 5
  467.         Container.Visible = false
  468.         Container.ScrollBarImageColor3 = Color3.fromRGB(71, 76, 84)
  469.  
  470.         ContainerLayout.Name = "ContainerLayout"
  471.         ContainerLayout.Parent = Container
  472.         ContainerLayout.SortOrder = Enum.SortOrder.LayoutOrder
  473.         ContainerLayout.Padding = UDim.new(0, 15)
  474.  
  475.         if fs == false then
  476.             fs = true
  477.             TabTitle.TextTransparency = 0
  478.             TabIcon.ImageTransparency = 0
  479.             Tab.BackgroundTransparency = 0
  480.             Container.Visible = true
  481.         end
  482.  
  483.         Tab.MouseButton1Click:Connect(function()
  484.             for i, v in next, ContainerFolder:GetChildren() do
  485.                 if v.Name == "Container" then
  486.                     v.Visible = false
  487.                 end
  488.                 Container.Visible = true
  489.             end
  490.             for i, v in next, TabHold:GetChildren() do
  491.                 if v.Name == "Tab" then
  492.                     TweenService:Create(
  493.                         v,
  494.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  495.                         {BackgroundTransparency = 1}
  496.                     ):Play()
  497.                     TweenService:Create(
  498.                         v.TabIcon,
  499.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  500.                         {ImageTransparency = .3}
  501.                     ):Play()
  502.                     TweenService:Create(
  503.                         v.TabTitle,
  504.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  505.                         {TextTransparency = .3}
  506.                     ):Play()
  507.                     TweenService:Create(
  508.                         Tab,
  509.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  510.                         {BackgroundTransparency = 0}
  511.                     ):Play()
  512.                     TweenService:Create(
  513.                         TabIcon,
  514.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  515.                         {ImageTransparency = 0}
  516.                     ):Play()
  517.                     TweenService:Create(
  518.                         TabTitle,
  519.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  520.                         {TextTransparency = 0}
  521.                     ):Play()
  522.                 end
  523.             end
  524.         end)
  525.         local ContainerContent = {}
  526.         function ContainerContent:Button(text, desc, callback)
  527.             if desc == "" then
  528.                 desc = "There is no description for this button."
  529.             end
  530.             local BtnDescToggled = false
  531.             local Button = Instance.new("TextButton")
  532.             local ButtonCorner = Instance.new("UICorner")
  533.             local Title = Instance.new("TextLabel")
  534.             local Circle = Instance.new("Frame")
  535.             local CircleCorner = Instance.new("UICorner")
  536.             local CircleSmall = Instance.new("Frame")
  537.             local CircleSmallCorner = Instance.new("UICorner")
  538.             local Description = Instance.new("TextLabel")
  539.             local ArrowBtn = Instance.new("ImageButton")
  540.             local ArrowIco = Instance.new("ImageLabel")
  541.  
  542.             Button.Name = "Button"
  543.             Button.Parent = Container
  544.             Button.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  545.             Button.ClipsDescendants = true
  546.             Button.Position = UDim2.new(0.370312512, 0, 0.552631557, 0)
  547.             Button.Size = UDim2.new(0, 457, 0, 43)
  548.             Button.AutoButtonColor = false
  549.             Button.Font = Enum.Font.SourceSans
  550.             Button.Text = ""
  551.             Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  552.             Button.TextSize = 14.000
  553.  
  554.             ButtonCorner.CornerRadius = UDim.new(0, 4)
  555.             ButtonCorner.Name = "ButtonCorner"
  556.             ButtonCorner.Parent = Button
  557.  
  558.             Title.Name = "Title"
  559.             Title.Parent = Button
  560.             Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  561.             Title.BackgroundTransparency = 1.000
  562.             Title.Position = UDim2.new(0.0822437406, 0, 0, 0)
  563.             Title.Size = UDim2.new(0, 113, 0, 42)
  564.             Title.Font = Enum.Font.Gotham
  565.             Title.Text = text
  566.             Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  567.             Title.TextSize = 15.000
  568.             Title.TextTransparency = 0.300
  569.             Title.TextXAlignment = Enum.TextXAlignment.Left
  570.  
  571.             Circle.Name = "Circle"
  572.             Circle.Parent = Title
  573.             Circle.Active = true
  574.             Circle.AnchorPoint = Vector2.new(0.5, 0.5)
  575.             Circle.BackgroundColor3 = Color3.fromRGB(211, 211, 211)
  576.             Circle.Position = UDim2.new(-0.150690272, 0, 0.503000021, 0)
  577.             Circle.Size = UDim2.new(0, 11, 0, 11)
  578.  
  579.             CircleCorner.CornerRadius = UDim.new(2, 6)
  580.             CircleCorner.Name = "CircleCorner"
  581.             CircleCorner.Parent = Circle
  582.  
  583.             CircleSmall.Name = "CircleSmall"
  584.             CircleSmall.Parent = Circle
  585.             CircleSmall.Active = true
  586.             CircleSmall.AnchorPoint = Vector2.new(0.5, 0.5)
  587.             CircleSmall.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  588.             CircleSmall.BackgroundTransparency = 1.000
  589.             CircleSmall.Position = UDim2.new(0.485673368, 0, 0.503000021, 0)
  590.             CircleSmall.Size = UDim2.new(0, 9, 0, 9)
  591.  
  592.             CircleSmallCorner.CornerRadius = UDim.new(2, 6)
  593.             CircleSmallCorner.Name = "CircleSmallCorner"
  594.             CircleSmallCorner.Parent = CircleSmall
  595.  
  596.             Description.Name = "Description"
  597.             Description.Parent = Title
  598.             Description.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  599.             Description.BackgroundTransparency = 1.000
  600.             Description.Position = UDim2.new(-0.200942323, 0, 0.785714269, 0)
  601.             Description.Size = UDim2.new(0, 432, 0, 31)
  602.             Description.Font = Enum.Font.Gotham
  603.             Description.Text = desc
  604.             Description.TextColor3 = Color3.fromRGB(255, 255, 255)
  605.             Description.TextSize = 15.000
  606.             Description.TextTransparency = 1
  607.             Description.TextWrapped = true
  608.             Description.TextXAlignment = Enum.TextXAlignment.Left
  609.  
  610.             ArrowBtn.Name = "ArrowBtn"
  611.             ArrowBtn.Parent = Button
  612.             ArrowBtn.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  613.             ArrowBtn.BackgroundTransparency = 1.000
  614.             ArrowBtn.Position = UDim2.new(0.903719902, 0, 0, 0)
  615.             ArrowBtn.Size = UDim2.new(0, 33, 0, 37)
  616.             ArrowBtn.SliceCenter = Rect.new(30, 30, 30, 30)
  617.             ArrowBtn.SliceScale = 7.000
  618.  
  619.             ArrowIco.Name = "ArrowIco"
  620.             ArrowIco.Parent = ArrowBtn
  621.             ArrowIco.AnchorPoint = Vector2.new(0.5, 0.5)
  622.             ArrowIco.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  623.             ArrowIco.BackgroundTransparency = 1.000
  624.             ArrowIco.Position = UDim2.new(0.495753437, 0, 0.554054081, 0)
  625.             ArrowIco.Selectable = true
  626.             ArrowIco.Size = UDim2.new(0, 28, 0, 24)
  627.             ArrowIco.Image = "http://www.roblox.com/asset/?id=6034818372"
  628.             ArrowIco.ImageTransparency = .3
  629.  
  630.             Button.MouseEnter:Connect(function()
  631.                 TweenService:Create(
  632.                     Title,
  633.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  634.                     {TextTransparency = 0}
  635.                 ):Play()
  636.             end)
  637.  
  638.             Button.MouseLeave:Connect(function()
  639.                 TweenService:Create(
  640.                     Title,
  641.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  642.                     {TextTransparency = 0.3}
  643.                 ):Play()
  644.             end)
  645.  
  646.             Button.MouseButton1Click:Connect(function()
  647.                 pcall(callback)
  648.             end)
  649.  
  650.             ArrowBtn.MouseButton1Click:Connect(function()
  651.                 if BtnDescToggled == false then
  652.                     Button:TweenSize(UDim2.new(0, 457, 0, 74), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  653.                     TweenService:Create(
  654.                         Title,
  655.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  656.                         {TextColor3 = PresetColor}
  657.                     ):Play()
  658.                     TweenService:Create(
  659.                         ArrowIco,
  660.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  661.                         {ImageColor3 = PresetColor}
  662.                     ):Play()
  663.                     TweenService:Create(
  664.                         ArrowIco,
  665.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  666.                         {ImageTransparency = 0}
  667.                     ):Play()
  668.                     TweenService:Create(
  669.                         ArrowIco,
  670.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  671.                         {Rotation = 180}
  672.                     ):Play()
  673.                     TweenService:Create(
  674.                         Circle,
  675.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  676.                         {BackgroundColor3 = PresetColor}
  677.                     ):Play()
  678.                     TweenService:Create(
  679.                         CircleSmall,
  680.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  681.                         {BackgroundTransparency = 0}
  682.                     ):Play()
  683.                     TweenService:Create(
  684.                         Title,
  685.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  686.                         {TextTransparency = 0}
  687.                     ):Play()
  688.                     TweenService:Create(
  689.                         Description,
  690.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  691.                         {TextTransparency = 0.3}
  692.                     ):Play()
  693.                     wait(.4)
  694.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  695.                 else
  696.                     Button:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  697.                     TweenService:Create(
  698.                         Title,
  699.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  700.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  701.                     ):Play()
  702.                     TweenService:Create(
  703.                         ArrowIco,
  704.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  705.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  706.                     ):Play()
  707.                     TweenService:Create(
  708.                         ArrowIco,
  709.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  710.                         {ImageTransparency = .3}
  711.                     ):Play()
  712.                     TweenService:Create(
  713.                         ArrowIco,
  714.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  715.                         {Rotation = 0}
  716.                     ):Play()
  717.                     TweenService:Create(
  718.                         Circle,
  719.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  720.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  721.                     ):Play()
  722.                     TweenService:Create(
  723.                         CircleSmall,
  724.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  725.                         {BackgroundTransparency = 1}
  726.                     ):Play()
  727.                     TweenService:Create(
  728.                         Title,
  729.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  730.                         {TextTransparency = 0.3}
  731.                     ):Play()
  732.                     TweenService:Create(
  733.                         Description,
  734.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  735.                         {TextTransparency = 1}
  736.                     ):Play()
  737.                     wait(.4)
  738.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  739.                 end
  740.                 BtnDescToggled = not BtnDescToggled
  741.             end)
  742.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  743.         end
  744.         function ContainerContent:Toggle(text, desc,default, callback)
  745.             local ToggleDescToggled = false
  746.             local Toggled = false
  747.             if desc == "" then
  748.                 desc = "There is no description for this toggle."
  749.             end
  750.             local Toggle = Instance.new("TextButton")
  751.             local ToggleCorner = Instance.new("UICorner")
  752.             local Title = Instance.new("TextLabel")
  753.             local Circle = Instance.new("Frame")
  754.             local CircleCorner = Instance.new("UICorner")
  755.             local CircleSmall = Instance.new("Frame")
  756.             local CircleSmallCorner = Instance.new("UICorner")
  757.             local ToggleFrame = Instance.new("Frame")
  758.             local ToggleFrameCorner = Instance.new("UICorner")
  759.             local ToggleCircle = Instance.new("Frame")
  760.             local ToggleCircleCorner = Instance.new("UICorner")
  761.             local Description = Instance.new("TextLabel")
  762.             local ArrowBtn = Instance.new("ImageButton")
  763.             local ArrowIco = Instance.new("ImageLabel")
  764.  
  765.             Toggle.Name = "Toggle"
  766.             Toggle.Parent = Container
  767.             Toggle.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  768.             Toggle.ClipsDescendants = true
  769.             Toggle.Position = UDim2.new(0.110937506, 0, 0.67653507, 0)
  770.             Toggle.Size = UDim2.new(0, 457, 0, 43)
  771.             Toggle.AutoButtonColor = false
  772.             Toggle.Font = Enum.Font.SourceSans
  773.             Toggle.Text = ""
  774.             Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  775.             Toggle.TextSize = 14.000
  776.  
  777.             ToggleCorner.CornerRadius = UDim.new(0, 4)
  778.             ToggleCorner.Name = "ToggleCorner"
  779.             ToggleCorner.Parent = Toggle
  780.  
  781.             Title.Name = "Title"
  782.             Title.Parent = Toggle
  783.             Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  784.             Title.BackgroundTransparency = 1.000
  785.             Title.Position = UDim2.new(0.0822437406, 0, 0, 0)
  786.             Title.Size = UDim2.new(0, 113, 0, 42)
  787.             Title.Font = Enum.Font.Gotham
  788.             Title.Text = text
  789.             Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  790.             Title.TextSize = 15.000
  791.             Title.TextTransparency = 0.300
  792.             Title.TextXAlignment = Enum.TextXAlignment.Left
  793.  
  794.             Circle.Name = "Circle"
  795.             Circle.Parent = Title
  796.             Circle.Active = true
  797.             Circle.AnchorPoint = Vector2.new(0.5, 0.5)
  798.             Circle.BackgroundColor3 = Color3.fromRGB(211, 211, 211)
  799.             Circle.Position = UDim2.new(-0.150690272, 0, 0.503000021, 0)
  800.             Circle.Size = UDim2.new(0, 11, 0, 11)
  801.  
  802.             CircleCorner.CornerRadius = UDim.new(2, 6)
  803.             CircleCorner.Name = "CircleCorner"
  804.             CircleCorner.Parent = Circle
  805.  
  806.             CircleSmall.Name = "CircleSmall"
  807.             CircleSmall.Parent = Circle
  808.             CircleSmall.Active = true
  809.             CircleSmall.AnchorPoint = Vector2.new(0.5, 0.5)
  810.             CircleSmall.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  811.             CircleSmall.BackgroundTransparency = 1.000
  812.             CircleSmall.Position = UDim2.new(0.485673368, 0, 0.503000021, 0)
  813.             CircleSmall.Size = UDim2.new(0, 9, 0, 9)
  814.  
  815.             CircleSmallCorner.CornerRadius = UDim.new(2, 6)
  816.             CircleSmallCorner.Name = "CircleSmallCorner"
  817.             CircleSmallCorner.Parent = CircleSmall
  818.  
  819.             ToggleFrame.Name = "ToggleFrame"
  820.             ToggleFrame.Parent = Circle
  821.             ToggleFrame.BackgroundColor3 = Color3.fromRGB(226, 227, 227)
  822.             ToggleFrame.Position = UDim2.new(33.0856934, 0, 0, 0)
  823.             ToggleFrame.Size = UDim2.new(0, 27, 0, 11)
  824.  
  825.             ToggleFrameCorner.Name = "ToggleFrameCorner"
  826.             ToggleFrameCorner.Parent = ToggleFrame
  827.  
  828.             ToggleCircle.Name = "ToggleCircle"
  829.             ToggleCircle.Parent = ToggleFrame
  830.             ToggleCircle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  831.             ToggleCircle.Position = UDim2.new(0, 0, -0.272727281, 0)
  832.             ToggleCircle.Selectable = true
  833.             ToggleCircle.Size = UDim2.new(0, 17, 0, 17)
  834.  
  835.             ToggleCircleCorner.CornerRadius = UDim.new(2, 8)
  836.             ToggleCircleCorner.Name = "ToggleCircleCorner"
  837.             ToggleCircleCorner.Parent = ToggleCircle
  838.  
  839.             Description.Name = "Description"
  840.             Description.Parent = Title
  841.             Description.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  842.             Description.BackgroundTransparency = 1.000
  843.             Description.Position = UDim2.new(-0.200942323, 0, 0.785714269, 0)
  844.             Description.Size = UDim2.new(0, 432, 0, 31)
  845.             Description.Font = Enum.Font.Gotham
  846.             Description.Text = desc
  847.             Description.TextColor3 = Color3.fromRGB(255, 255, 255)
  848.             Description.TextSize = 15.000
  849.             Description.TextTransparency = 1
  850.             Description.TextWrapped = true
  851.             Description.TextXAlignment = Enum.TextXAlignment.Left
  852.  
  853.             ArrowBtn.Name = "ArrowBtn"
  854.             ArrowBtn.Parent = Toggle
  855.             ArrowBtn.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  856.             ArrowBtn.BackgroundTransparency = 1.000
  857.             ArrowBtn.Position = UDim2.new(0.903719902, 0, 0, 0)
  858.             ArrowBtn.Size = UDim2.new(0, 33, 0, 37)
  859.             ArrowBtn.SliceCenter = Rect.new(30, 30, 30, 30)
  860.             ArrowBtn.SliceScale = 7.000
  861.  
  862.             ArrowIco.Name = "ArrowIco"
  863.             ArrowIco.Parent = ArrowBtn
  864.             ArrowIco.AnchorPoint = Vector2.new(0.5, 0.5)
  865.             ArrowIco.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  866.             ArrowIco.BackgroundTransparency = 1.000
  867.             ArrowIco.Position = UDim2.new(0.495753437, 0, 0.554054081, 0)
  868.             ArrowIco.Selectable = true
  869.             ArrowIco.Size = UDim2.new(0, 28, 0, 24)
  870.             ArrowIco.Image = "http://www.roblox.com/asset/?id=6034818372"
  871.             ArrowIco.ImageTransparency = .3
  872.  
  873.             Toggle.MouseEnter:Connect(function()
  874.                 TweenService:Create(
  875.                     Title,
  876.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  877.                     {TextTransparency = 0}
  878.                 ):Play()
  879.             end)
  880.  
  881.             Toggle.MouseLeave:Connect(function()
  882.                 TweenService:Create(
  883.                     Title,
  884.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  885.                     {TextTransparency = 0.3}
  886.                 ):Play()
  887.             end)
  888.  
  889.             Toggle.MouseButton1Click:Connect(function()
  890.                 if Toggled == false then
  891.                     ToggleCircle:TweenPosition(UDim2.new(0.37, 0,-0.273, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
  892.                     TweenService:Create(
  893.                         ToggleCircle,
  894.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  895.                         {BackgroundColor3 =PresetColor}
  896.                     ):Play()
  897.                 else
  898.                     ToggleCircle:TweenPosition(UDim2.new(0, 0,-0.273, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
  899.                     TweenService:Create(
  900.                         ToggleCircle,
  901.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  902.                         {BackgroundColor3 = Color3.fromRGB(255,255,255)}
  903.                     ):Play()
  904.                 end
  905.                 Toggled = not Toggled
  906.                 pcall(callback, Toggled)
  907.             end)
  908.  
  909.             ArrowBtn.MouseButton1Click:Connect(function()
  910.                 if ToggleDescToggled == false then
  911.                     Toggle:TweenSize(UDim2.new(0, 457, 0, 74), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  912.                     TweenService:Create(
  913.                         Title,
  914.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  915.                         {TextColor3 = PresetColor}
  916.                     ):Play()
  917.                     TweenService:Create(
  918.                         ArrowIco,
  919.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  920.                         {ImageColor3 = PresetColor}
  921.                     ):Play()
  922.                     TweenService:Create(
  923.                         ArrowIco,
  924.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  925.                         {ImageTransparency = 0}
  926.                     ):Play()
  927.                     TweenService:Create(
  928.                         ArrowIco,
  929.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  930.                         {Rotation = 180}
  931.                     ):Play()
  932.                     TweenService:Create(
  933.                         Circle,
  934.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  935.                         {BackgroundColor3 = PresetColor}
  936.                     ):Play()
  937.                     TweenService:Create(
  938.                         CircleSmall,
  939.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  940.                         {BackgroundTransparency = 0}
  941.                     ):Play()
  942.                     TweenService:Create(
  943.                         Title,
  944.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  945.                         {TextTransparency = 0}
  946.                     ):Play()
  947.                     TweenService:Create(
  948.                         Description,
  949.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  950.                         {TextTransparency = 0.3}
  951.                     ):Play()
  952.                     wait(.4)
  953.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  954.                 else
  955.                     Toggle:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  956.                     TweenService:Create(
  957.                         Title,
  958.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  959.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  960.                     ):Play()
  961.                     TweenService:Create(
  962.                         ArrowIco,
  963.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  964.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  965.                     ):Play()
  966.                     TweenService:Create(
  967.                         ArrowIco,
  968.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  969.                         {ImageTransparency = .3}
  970.                     ):Play()
  971.                     TweenService:Create(
  972.                         ArrowIco,
  973.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  974.                         {Rotation = 0}
  975.                     ):Play()
  976.                     TweenService:Create(
  977.                         Circle,
  978.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  979.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  980.                     ):Play()
  981.                     TweenService:Create(
  982.                         CircleSmall,
  983.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  984.                         {BackgroundTransparency = 1}
  985.                     ):Play()
  986.                     TweenService:Create(
  987.                         Title,
  988.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  989.                         {TextTransparency = 0.3}
  990.                     ):Play()
  991.                     TweenService:Create(
  992.                         Description,
  993.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  994.                         {TextTransparency = 1}
  995.                     ):Play()
  996.                     wait(.4)
  997.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  998.                 end
  999.                 ToggleDescToggled = not ToggleDescToggled
  1000.             end)
  1001.             if default == true then
  1002.                 ToggleCircle:TweenPosition(UDim2.new(0.37, 0,-0.273, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
  1003.                 TweenService:Create(
  1004.                     ToggleCircle,
  1005.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1006.                     {BackgroundColor3 =PresetColor}
  1007.                 ):Play()
  1008.                 Toggled = not Toggled
  1009.                 pcall(callback, Toggled)
  1010.             end
  1011.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1012.         end
  1013.  
  1014.         function ContainerContent:Slider(text,desc,min,max,start,callback)
  1015.             local SliderFunc = {}
  1016.             local SliderDescToggled = false
  1017.             local dragging = false
  1018.             if desc == "" then
  1019.                 desc = "There is no description for this slider."
  1020.             end
  1021.             local Slider = Instance.new("TextButton")
  1022.             local SliderCorner = Instance.new("UICorner")
  1023.             local Title = Instance.new("TextLabel")
  1024.             local Circle = Instance.new("Frame")
  1025.             local CircleCorner = Instance.new("UICorner")
  1026.             local CircleSmall = Instance.new("Frame")
  1027.             local CircleSmallCorner = Instance.new("UICorner")
  1028.             local Description = Instance.new("TextLabel")
  1029.             local SlideFrame = Instance.new("Frame")
  1030.             local CurrentValueFrame = Instance.new("Frame")
  1031.             local SlideCircle = Instance.new("ImageButton")
  1032.             local ArrowBtn = Instance.new("ImageButton")
  1033.             local ArrowIco = Instance.new("ImageLabel")
  1034.             local Value = Instance.new("TextLabel")
  1035.  
  1036.             Slider.Name = "Slider"
  1037.             Slider.Parent = Container
  1038.             Slider.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1039.             Slider.ClipsDescendants = true
  1040.             Slider.Position = UDim2.new(0.189062506, 0, 0.648612201, 0)
  1041.             Slider.Size = UDim2.new(0, 457, 0, 60)
  1042.             Slider.AutoButtonColor = false
  1043.             Slider.Font = Enum.Font.SourceSans
  1044.             Slider.Text = ""
  1045.             Slider.TextColor3 = Color3.fromRGB(0, 0, 0)
  1046.             Slider.TextSize = 14.000
  1047.  
  1048.             SliderCorner.CornerRadius = UDim.new(0, 4)
  1049.             SliderCorner.Name = "SliderCorner"
  1050.             SliderCorner.Parent = Slider
  1051.  
  1052.             Title.Name = "Title"
  1053.             Title.Parent = Slider
  1054.             Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1055.             Title.BackgroundTransparency = 1.000
  1056.             Title.Position = UDim2.new(0.0822437406, 0, 0, 0)
  1057.             Title.Size = UDim2.new(0, 113, 0, 42)
  1058.             Title.Font = Enum.Font.Gotham
  1059.             Title.Text = text
  1060.             Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1061.             Title.TextSize = 15.000
  1062.             Title.TextTransparency = 0.300
  1063.             Title.TextXAlignment = Enum.TextXAlignment.Left
  1064.  
  1065.             Circle.Name = "Circle"
  1066.             Circle.Parent = Title
  1067.             Circle.Active = true
  1068.             Circle.AnchorPoint = Vector2.new(0.5, 0.5)
  1069.             Circle.BackgroundColor3 = Color3.fromRGB(211, 211, 211)
  1070.             Circle.Position = UDim2.new(-0.150690272, 0, 0.503000021, 0)
  1071.             Circle.Size = UDim2.new(0, 11, 0, 11)
  1072.  
  1073.  
  1074.             CircleCorner.CornerRadius = UDim.new(2, 6)
  1075.             CircleCorner.Name = "CircleCorner"
  1076.             CircleCorner.Parent = Circle
  1077.  
  1078.             CircleSmall.Name = "CircleSmall"
  1079.             CircleSmall.Parent = Circle
  1080.             CircleSmall.Active = true
  1081.             CircleSmall.AnchorPoint = Vector2.new(0.5, 0.5)
  1082.             CircleSmall.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1083.             CircleSmall.BackgroundTransparency = 1.000
  1084.             CircleSmall.Position = UDim2.new(0.485673368, 0, 0.503000021, 0)
  1085.             CircleSmall.Size = UDim2.new(0, 9, 0, 9)
  1086.  
  1087.             CircleSmallCorner.CornerRadius = UDim.new(2, 6)
  1088.             CircleSmallCorner.Name = "CircleSmallCorner"
  1089.             CircleSmallCorner.Parent = CircleSmall
  1090.  
  1091.             Description.Name = "Description"
  1092.             Description.Parent = Title
  1093.             Description.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1094.             Description.BackgroundTransparency = 1.000
  1095.             Description.Position = UDim2.new(-0.201000005, 0, 1.38600004, 0)
  1096.             Description.Size = UDim2.new(0, 432, 0, 31)
  1097.             Description.Font = Enum.Font.Gotham
  1098.             Description.Text = desc
  1099.             Description.TextColor3 = Color3.fromRGB(255, 255, 255)
  1100.             Description.TextSize = 15.000
  1101.             Description.TextTransparency = 0.300
  1102.             Description.TextWrapped = true
  1103.             Description.TextXAlignment = Enum.TextXAlignment.Left
  1104.  
  1105.             SlideFrame.Name = "SlideFrame"
  1106.             SlideFrame.Parent = Title
  1107.             SlideFrame.BackgroundColor3 = Color3.fromRGB(235, 234, 235)
  1108.             SlideFrame.BorderSizePixel = 0
  1109.             SlideFrame.Position = UDim2.new(-0.197140202, 0, 0.986091495, 0)
  1110.             SlideFrame.Size = UDim2.new(0, 426, 0, 3)
  1111.  
  1112.             CurrentValueFrame.Name = "CurrentValueFrame"
  1113.             CurrentValueFrame.Parent = SlideFrame
  1114.             CurrentValueFrame.BackgroundColor3 = PresetColor
  1115.             CurrentValueFrame.BorderSizePixel = 0
  1116.             CurrentValueFrame.Size = UDim2.new((start or 0) / max, 0, 0, 3)
  1117.  
  1118.             SlideCircle.Name = "SlideCircle"
  1119.             SlideCircle.Parent = SlideFrame
  1120.             SlideCircle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1121.             SlideCircle.BackgroundTransparency = 1.000
  1122.             SlideCircle.Position = UDim2.new((start or 0)/max, -6,-1.30499995, 0)
  1123.             SlideCircle.Size = UDim2.new(0, 11, 0, 11)
  1124.             SlideCircle.Image = "rbxassetid://3570695787"
  1125.             SlideCircle.ImageColor3 = PresetColor
  1126.  
  1127.             ArrowBtn.Name = "ArrowBtn"
  1128.             ArrowBtn.Parent = Slider
  1129.             ArrowBtn.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  1130.             ArrowBtn.BackgroundTransparency = 1.000
  1131.             ArrowBtn.Position = UDim2.new(0.903719902, 0, 0, 0)
  1132.             ArrowBtn.Size = UDim2.new(0, 33, 0, 37)
  1133.             ArrowBtn.SliceCenter = Rect.new(30, 30, 30, 30)
  1134.             ArrowBtn.SliceScale = 7.000
  1135.  
  1136.             ArrowIco.Name = "ArrowIco"
  1137.             ArrowIco.Parent = ArrowBtn
  1138.             ArrowIco.AnchorPoint = Vector2.new(0.5, 0.5)
  1139.             ArrowIco.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1140.             ArrowIco.BackgroundTransparency = 1.000
  1141.             ArrowIco.Position = UDim2.new(0.495753437, 0, 0.554054081, 0)
  1142.             ArrowIco.Selectable = true
  1143.             ArrowIco.Size = UDim2.new(0, 28, 0, 24)
  1144.             ArrowIco.Image = "http://www.roblox.com/asset/?id=6034818372"
  1145.             ArrowIco.ImageTransparency = .3
  1146.  
  1147.             Value.Name = "Value"
  1148.             Value.Parent = Title
  1149.             Value.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1150.             Value.BackgroundTransparency = 1.000
  1151.             Value.Position = UDim2.new(2.27693367, 0, 0, 0)
  1152.             Value.Size = UDim2.new(0, 113, 0, 41)
  1153.             Value.Font = Enum.Font.Gotham
  1154.             Value.Text = tostring(start and math.floor((start / max) * (max - min) + min) or 0)
  1155.             Value.TextColor3 = Color3.fromRGB(255, 255, 255)
  1156.             Value.TextSize = 15.000
  1157.             Value.TextTransparency = 0.300
  1158.             Value.TextXAlignment = Enum.TextXAlignment.Right
  1159.  
  1160.             ArrowBtn.MouseButton1Click:Connect(function()
  1161.                 if SliderDescToggled == false then
  1162.                     Slider:TweenSize(UDim2.new(0, 457, 0, 101), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  1163.                     TweenService:Create(
  1164.                         Title,
  1165.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1166.                         {TextColor3 = PresetColor}
  1167.                     ):Play()
  1168.                     TweenService:Create(
  1169.                         Value,
  1170.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1171.                         {TextColor3 = PresetColor}
  1172.                     ):Play()
  1173.                     TweenService:Create(
  1174.                         ArrowIco,
  1175.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1176.                         {ImageColor3 = PresetColor}
  1177.                     ):Play()
  1178.                     TweenService:Create(
  1179.                         ArrowIco,
  1180.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1181.                         {ImageTransparency = 0}
  1182.                     ):Play()
  1183.                     TweenService:Create(
  1184.                         ArrowIco,
  1185.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1186.                         {Rotation = 180}
  1187.                     ):Play()
  1188.                     TweenService:Create(
  1189.                         Circle,
  1190.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1191.                         {BackgroundColor3 =PresetColor}
  1192.                     ):Play()
  1193.                     TweenService:Create(
  1194.                         CircleSmall,
  1195.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1196.                         {BackgroundTransparency = 0}
  1197.                     ):Play()
  1198.                     TweenService:Create(
  1199.                         Title,
  1200.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1201.                         {TextTransparency = 0}
  1202.                     ):Play()
  1203.                     TweenService:Create(
  1204.                         Description,
  1205.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1206.                         {TextTransparency = 0.3}
  1207.                     ):Play()
  1208.                     wait(.4)
  1209.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1210.                 else
  1211.                     Slider:TweenSize(UDim2.new(0, 457, 0, 60), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  1212.                     TweenService:Create(
  1213.                         Title,
  1214.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1215.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  1216.                     ):Play()
  1217.                     TweenService:Create(
  1218.                         Value,
  1219.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1220.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  1221.                     ):Play()
  1222.                     TweenService:Create(
  1223.                         ArrowIco,
  1224.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1225.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  1226.                     ):Play()
  1227.                     TweenService:Create(
  1228.                         ArrowIco,
  1229.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1230.                         {ImageTransparency = .3}
  1231.                     ):Play()
  1232.                     TweenService:Create(
  1233.                         ArrowIco,
  1234.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1235.                         {Rotation = 0}
  1236.                     ):Play()
  1237.                     TweenService:Create(
  1238.                         Circle,
  1239.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1240.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  1241.                     ):Play()
  1242.                     TweenService:Create(
  1243.                         CircleSmall,
  1244.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1245.                         {BackgroundTransparency = 1}
  1246.                     ):Play()
  1247.                     TweenService:Create(
  1248.                         Title,
  1249.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1250.                         {TextTransparency = 0.3}
  1251.                     ):Play()
  1252.                     TweenService:Create(
  1253.                         Description,
  1254.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1255.                         {TextTransparency = 1}
  1256.                     ):Play()
  1257.                     wait(.4)
  1258.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1259.                 end
  1260.                 SliderDescToggled = not SliderDescToggled
  1261.             end)
  1262.  
  1263.             local function move(input)
  1264.                 local pos =
  1265.                     UDim2.new(
  1266.                         math.clamp((input.Position.X - SlideFrame.AbsolutePosition.X) / SlideFrame.AbsoluteSize.X, 0, 1),
  1267.                         -6,
  1268.                         -1.30499995,
  1269.                         0
  1270.                     )
  1271.                 local pos1 =
  1272.                     UDim2.new(
  1273.                         math.clamp((input.Position.X - SlideFrame.AbsolutePosition.X) / SlideFrame.AbsoluteSize.X, 0, 1),
  1274.                         0,
  1275.                         0,
  1276.                         3
  1277.                     )
  1278.                 CurrentValueFrame:TweenSize(pos1, "Out", "Sine", 0.1, true)
  1279.                 SlideCircle:TweenPosition(pos, "Out", "Sine", 0.1, true)
  1280.                 local value = math.floor(((pos.X.Scale * max) / max) * (max - min) + min)
  1281.                 Value.Text = tostring(value)
  1282.                 pcall(callback, value)
  1283.             end
  1284.             SlideCircle.InputBegan:Connect(
  1285.                 function(input)
  1286.                     if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1287.                         dragging = true
  1288.                     end
  1289.                 end
  1290.             )
  1291.             SlideCircle.InputEnded:Connect(
  1292.                 function(input)
  1293.                     if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1294.                         dragging = false
  1295.                     end
  1296.                 end
  1297.             )
  1298.             game:GetService("UserInputService").InputChanged:Connect(
  1299.             function(input)
  1300.                 if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
  1301.                     move(input)
  1302.                 end
  1303.             end
  1304.             )
  1305.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1306.             function SliderFunc:Change(tochange)
  1307.                 CurrentValueFrame.Size = UDim2.new((tochange or 0) / max, 0, 0, 3)
  1308.                 SlideCircle.Position = UDim2.new((tochange or 0)/max, -6,-1.30499995, 0)
  1309.                 Value.Text = tostring(tochange and math.floor((tochange / max) * (max - min) + min) or 0)
  1310.                 pcall(callback,tochange)
  1311.             end
  1312.             return SliderFunc
  1313.         end
  1314.         function ContainerContent:Dropdown(text,list,callback)
  1315.             local DropFunc = {}
  1316.             local Selected = text
  1317.             local FrameSize = 43
  1318.             local ItemCount = 0
  1319.             local DropToggled = false
  1320.             local Dropdown = Instance.new("TextButton")
  1321.             local DropdownCorner = Instance.new("UICorner")
  1322.             local Title = Instance.new("TextLabel")
  1323.             local Circle = Instance.new("Frame")
  1324.             local CircleCorner = Instance.new("UICorner")
  1325.             local CircleSmall = Instance.new("Frame")
  1326.             local CircleSmallCorner = Instance.new("UICorner")
  1327.             local ArrowIco = Instance.new("ImageLabel")
  1328.             local DropItemHolder = Instance.new("ScrollingFrame")
  1329.             local DropLayout = Instance.new("UIListLayout")
  1330.  
  1331.             Dropdown.Name = "Dropdown"
  1332.             Dropdown.Parent = Container
  1333.             Dropdown.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1334.             Dropdown.ClipsDescendants = true
  1335.             Dropdown.Position = UDim2.new(0.110937499, 0, 0.67653507, 0)
  1336.             Dropdown.Size = UDim2.new(0, 457, 0, 43)
  1337.             Dropdown.AutoButtonColor = false
  1338.             Dropdown.Font = Enum.Font.SourceSans
  1339.             Dropdown.Text = ""
  1340.             Dropdown.TextColor3 = Color3.fromRGB(0, 0, 0)
  1341.             Dropdown.TextSize = 14.000
  1342.  
  1343.             DropdownCorner.CornerRadius = UDim.new(0, 4)
  1344.             DropdownCorner.Name = "DropdownCorner"
  1345.             DropdownCorner.Parent = Dropdown
  1346.  
  1347.             Title.Name = "Title"
  1348.             Title.Parent = Dropdown
  1349.             Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1350.             Title.BackgroundTransparency = 1.000
  1351.             Title.Position = UDim2.new(0.0822437406, 0, 0, 0)
  1352.             Title.Size = UDim2.new(0, 113, 0, 42)
  1353.             Title.Font = Enum.Font.Gotham
  1354.             Title.Text = text
  1355.             Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1356.             Title.TextSize = 15.000
  1357.             Title.TextTransparency = 0.300
  1358.             Title.TextXAlignment = Enum.TextXAlignment.Left
  1359.  
  1360.             Circle.Name = "Circle"
  1361.             Circle.Parent = Title
  1362.             Circle.Active = true
  1363.             Circle.AnchorPoint = Vector2.new(0.5, 0.5)
  1364.             Circle.BackgroundColor3 = Color3.fromRGB(211, 211, 211)
  1365.             Circle.Position = UDim2.new(-0.150690272, 0, 0.503000021, 0)
  1366.             Circle.Size = UDim2.new(0, 11, 0, 11)
  1367.  
  1368.             CircleCorner.CornerRadius = UDim.new(2, 6)
  1369.             CircleCorner.Name = "CircleCorner"
  1370.             CircleCorner.Parent = Circle
  1371.  
  1372.             CircleSmall.Name = "CircleSmall"
  1373.             CircleSmall.Parent = Circle
  1374.             CircleSmall.Active = true
  1375.             CircleSmall.AnchorPoint = Vector2.new(0.5, 0.5)
  1376.             CircleSmall.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1377.             CircleSmall.BackgroundTransparency = 1.000
  1378.             CircleSmall.Position = UDim2.new(0.485673368, 0, 0.503000021, 0)
  1379.             CircleSmall.Size = UDim2.new(0, 9, 0, 9)
  1380.  
  1381.             CircleSmallCorner.CornerRadius = UDim.new(2, 6)
  1382.             CircleSmallCorner.Name = "CircleSmallCorner"
  1383.             CircleSmallCorner.Parent = CircleSmall
  1384.  
  1385.             ArrowIco.Name = "ArrowIco"
  1386.             ArrowIco.Parent = Title
  1387.             ArrowIco.AnchorPoint = Vector2.new(0.5, 0.5)
  1388.             ArrowIco.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1389.             ArrowIco.BackgroundTransparency = 1.000
  1390.             ArrowIco.Position = UDim2.new(3.45979357, 0, 0.508096159, 0)
  1391.             ArrowIco.Selectable = true
  1392.             ArrowIco.Size = UDim2.new(0, 28, 0, 24)
  1393.             ArrowIco.Image = "http://www.roblox.com/asset/?id=6035047377"
  1394.             ArrowIco.ImageTransparency = .3
  1395.  
  1396.             DropItemHolder.Name = "DropItemHolder"
  1397.             DropItemHolder.Parent = Title
  1398.             DropItemHolder.Active = true
  1399.             DropItemHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1400.             DropItemHolder.BackgroundTransparency = 1.000
  1401.             DropItemHolder.BorderSizePixel = 0
  1402.             DropItemHolder.Position = UDim2.new(-0.203539819, 0, 1.02380955, 0)
  1403.             DropItemHolder.Size = UDim2.new(0, 436, 0, 82)
  1404.             DropItemHolder.CanvasSize = UDim2.new(0, 0, 0, 0)
  1405.             DropItemHolder.ScrollBarThickness = 5
  1406.             DropItemHolder.ScrollBarImageColor3 = Color3.fromRGB(41, 42, 48)
  1407.  
  1408.             DropLayout.Name = "DropLayout"
  1409.             DropLayout.Parent = DropItemHolder
  1410.             DropLayout.SortOrder = Enum.SortOrder.LayoutOrder
  1411.             DropLayout.Padding = UDim.new(0, 2)
  1412.  
  1413.             Dropdown.MouseEnter:Connect(function()
  1414.                 TweenService:Create(
  1415.                     Title,
  1416.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1417.                     {TextTransparency = 0}
  1418.                 ):Play()
  1419.             end)
  1420.  
  1421.             Dropdown.MouseLeave:Connect(function()
  1422.                 TweenService:Create(
  1423.                     Title,
  1424.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1425.                     {TextTransparency = 0.3}
  1426.                 ):Play()
  1427.             end)
  1428.  
  1429.  
  1430.             Dropdown.MouseButton1Click:Connect(function()
  1431.                 if DropToggled == false then
  1432.                     Title.Text = Selected
  1433.                     Dropdown:TweenSize(UDim2.new(0, 457, 0, FrameSize), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  1434.                     TweenService:Create(
  1435.                         Title,
  1436.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1437.                         {TextColor3 = PresetColor}
  1438.                     ):Play()
  1439.                     TweenService:Create(
  1440.                         ArrowIco,
  1441.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1442.                         {ImageColor3 = PresetColor}
  1443.                     ):Play()
  1444.                     TweenService:Create(
  1445.                         ArrowIco,
  1446.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1447.                         {ImageTransparency = 0}
  1448.                     ):Play()
  1449.                     TweenService:Create(
  1450.                         ArrowIco,
  1451.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1452.                         {Rotation = 180}
  1453.                     ):Play()
  1454.                     TweenService:Create(
  1455.                         Circle,
  1456.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1457.                         {BackgroundColor3 = PresetColor}
  1458.                     ):Play()
  1459.                     TweenService:Create(
  1460.                         CircleSmall,
  1461.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1462.                         {BackgroundTransparency = 0}
  1463.                     ):Play()
  1464.                     TweenService:Create(
  1465.                         Title,
  1466.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1467.                         {TextTransparency = 0}
  1468.                     ):Play()
  1469.                     wait(.4)
  1470.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1471.                 else
  1472.                     Title.Text = Selected
  1473.                     Dropdown:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  1474.                     TweenService:Create(
  1475.                         Title,
  1476.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1477.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  1478.                     ):Play()
  1479.                     TweenService:Create(
  1480.                         ArrowIco,
  1481.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1482.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  1483.                     ):Play()
  1484.                     TweenService:Create(
  1485.                         ArrowIco,
  1486.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1487.                         {ImageTransparency = .3}
  1488.                     ):Play()
  1489.                     TweenService:Create(
  1490.                         ArrowIco,
  1491.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1492.                         {Rotation = 0}
  1493.                     ):Play()
  1494.                     TweenService:Create(
  1495.                         Circle,
  1496.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1497.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  1498.                     ):Play()
  1499.                     TweenService:Create(
  1500.                         CircleSmall,
  1501.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1502.                         {BackgroundTransparency = 1}
  1503.                     ):Play()
  1504.                     TweenService:Create(
  1505.                         Title,
  1506.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1507.                         {TextTransparency = 0.3}
  1508.                     ):Play()
  1509.                     wait(.4)
  1510.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1511.                 end
  1512.                 DropToggled = not DropToggled
  1513.             end)
  1514.  
  1515.             for i,v in next, list do
  1516.                 ItemCount = ItemCount + 1
  1517.  
  1518.                 if ItemCount == 1 then
  1519.                     FrameSize = 78
  1520.                 elseif ItemCount == 2 then
  1521.                     FrameSize = 107
  1522.                 elseif ItemCount >= 3 then
  1523.                     FrameSize = 133
  1524.                 end
  1525.                 local Item = Instance.new("TextButton")
  1526.                 local ItemCorner = Instance.new("UICorner")
  1527.  
  1528.                 Item.Name = "Item"
  1529.                 Item.Parent = DropItemHolder
  1530.                 Item.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1531.                 Item.ClipsDescendants = true
  1532.                 Item.Size = UDim2.new(0, 427, 0, 25)
  1533.                 Item.AutoButtonColor = false
  1534.                 Item.Font = Enum.Font.Gotham
  1535.                 Item.Text = v
  1536.                 Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  1537.                 Item.TextSize = 15.000
  1538.                 Item.TextTransparency = 0.300
  1539.  
  1540.                 ItemCorner.CornerRadius = UDim.new(0, 4)
  1541.                 ItemCorner.Name = "ItemCorner"
  1542.                 ItemCorner.Parent = Item
  1543.                 DropItemHolder.CanvasSize = UDim2.new(0, 0, 0, DropLayout.AbsoluteContentSize.Y)
  1544.  
  1545.                 Item.MouseEnter:Connect(function()
  1546.                     TweenService:Create(
  1547.                         Item,
  1548.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1549.                         {TextTransparency = 0}
  1550.                     ):Play()
  1551.                 end)
  1552.  
  1553.                 Item.MouseLeave:Connect(function()
  1554.                     TweenService:Create(
  1555.                         Item,
  1556.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1557.                         {TextTransparency = 0.3}
  1558.                     ):Play()
  1559.                 end)
  1560.  
  1561.                 Item.MouseButton1Click:Connect(function()
  1562.                     pcall(callback, v)
  1563.                     Title.Text = text
  1564.                     Selected = v
  1565.                     DropToggled = not DropToggled
  1566.                     Dropdown:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  1567.                     TweenService:Create(
  1568.                         Title,
  1569.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1570.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  1571.                     ):Play()
  1572.                     TweenService:Create(
  1573.                         ArrowIco,
  1574.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1575.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  1576.                     ):Play()
  1577.                     TweenService:Create(
  1578.                         ArrowIco,
  1579.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1580.                         {ImageTransparency = .3}
  1581.                     ):Play()
  1582.                     TweenService:Create(
  1583.                         ArrowIco,
  1584.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1585.                         {Rotation = 0}
  1586.                     ):Play()
  1587.                     TweenService:Create(
  1588.                         Circle,
  1589.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1590.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  1591.                     ):Play()
  1592.                     TweenService:Create(
  1593.                         CircleSmall,
  1594.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1595.                         {BackgroundTransparency = 1}
  1596.                     ):Play()
  1597.                     TweenService:Create(
  1598.                         Title,
  1599.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1600.                         {TextTransparency = 0.3}
  1601.                     ):Play()
  1602.                     wait(.4)
  1603.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1604.  
  1605.                 end)
  1606.             end
  1607.             function DropFunc:Add(addtext)
  1608.                 ItemCount = ItemCount + 1
  1609.  
  1610.                 if ItemCount == 1 then
  1611.                     FrameSize = 78
  1612.                 elseif ItemCount == 2 then
  1613.                     FrameSize = 107
  1614.                 elseif ItemCount >= 3 then
  1615.                     FrameSize = 133
  1616.                 end
  1617.                 local Item = Instance.new("TextButton")
  1618.                 local ItemCorner = Instance.new("UICorner")
  1619.  
  1620.                 Item.Name = "Item"
  1621.                 Item.Parent = DropItemHolder
  1622.                 Item.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1623.                 Item.ClipsDescendants = true
  1624.                 Item.Size = UDim2.new(0, 427, 0, 25)
  1625.                 Item.AutoButtonColor = false
  1626.                 Item.Font = Enum.Font.Gotham
  1627.                 Item.Text = addtext
  1628.                 Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  1629.                 Item.TextSize = 15.000
  1630.                 Item.TextTransparency = 0.300
  1631.  
  1632.                 ItemCorner.CornerRadius = UDim.new(0, 4)
  1633.                 ItemCorner.Name = "ItemCorner"
  1634.                 ItemCorner.Parent = Item
  1635.                 DropItemHolder.CanvasSize = UDim2.new(0, 0, 0, DropLayout.AbsoluteContentSize.Y)
  1636.  
  1637.                 Item.MouseEnter:Connect(function()
  1638.                     TweenService:Create(
  1639.                         Item,
  1640.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1641.                         {TextTransparency = 0}
  1642.                     ):Play()
  1643.                 end)
  1644.  
  1645.                 Item.MouseLeave:Connect(function()
  1646.                     TweenService:Create(
  1647.                         Item,
  1648.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1649.                         {TextTransparency = 0.3}
  1650.                     ):Play()
  1651.                 end)
  1652.  
  1653.                 Item.MouseButton1Click:Connect(function()
  1654.                     pcall(callback, addtext)
  1655.                     Title.Text = text
  1656.                     Selected = addtext
  1657.                     DropToggled = not DropToggled
  1658.                     Dropdown:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  1659.                     TweenService:Create(
  1660.                         Title,
  1661.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1662.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  1663.                     ):Play()
  1664.                     TweenService:Create(
  1665.                         ArrowIco,
  1666.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1667.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  1668.                     ):Play()
  1669.                     TweenService:Create(
  1670.                         ArrowIco,
  1671.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1672.                         {ImageTransparency = .3}
  1673.                     ):Play()
  1674.                     TweenService:Create(
  1675.                         ArrowIco,
  1676.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1677.                         {Rotation = 0}
  1678.                     ):Play()
  1679.                     TweenService:Create(
  1680.                         Circle,
  1681.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1682.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  1683.                     ):Play()
  1684.                     TweenService:Create(
  1685.                         CircleSmall,
  1686.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1687.                         {BackgroundTransparency = 1}
  1688.                     ):Play()
  1689.                     TweenService:Create(
  1690.                         Title,
  1691.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1692.                         {TextTransparency = 0.3}
  1693.                     ):Play()
  1694.                     wait(.4)
  1695.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1696.                 end)
  1697.                 if DropToggled == true then
  1698.                     Title.Text = Selected
  1699.                     Dropdown:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  1700.                     TweenService:Create(
  1701.                         Title,
  1702.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1703.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  1704.                     ):Play()
  1705.                     TweenService:Create(
  1706.                         ArrowIco,
  1707.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1708.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  1709.                     ):Play()
  1710.                     TweenService:Create(
  1711.                         ArrowIco,
  1712.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1713.                         {ImageTransparency = .3}
  1714.                     ):Play()
  1715.                     TweenService:Create(
  1716.                         ArrowIco,
  1717.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1718.                         {Rotation = 0}
  1719.                     ):Play()
  1720.                     TweenService:Create(
  1721.                         Circle,
  1722.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1723.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  1724.                     ):Play()
  1725.                     TweenService:Create(
  1726.                         CircleSmall,
  1727.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1728.                         {BackgroundTransparency = 1}
  1729.                     ):Play()
  1730.                     TweenService:Create(
  1731.                         Title,
  1732.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1733.                         {TextTransparency = 0.3}
  1734.                     ):Play()
  1735.                     wait(.4)
  1736.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1737.                 end
  1738.             end
  1739.             function DropFunc:Clear()
  1740.                 Title.Text = text
  1741.                 FrameSize = 0
  1742.                 ItemCount = 0
  1743.                 for i, v in next, DropItemHolder:GetChildren() do
  1744.                     if v.Name == "Item" then
  1745.                         v:Destroy()
  1746.                     end
  1747.                 end
  1748.                 if DropToggled == true then
  1749.                     Title.Text = Selected
  1750.                     Dropdown:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  1751.                     TweenService:Create(
  1752.                         Title,
  1753.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1754.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  1755.                     ):Play()
  1756.                     TweenService:Create(
  1757.                         ArrowIco,
  1758.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1759.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  1760.                     ):Play()
  1761.                     TweenService:Create(
  1762.                         ArrowIco,
  1763.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1764.                         {ImageTransparency = .3}
  1765.                     ):Play()
  1766.                     TweenService:Create(
  1767.                         ArrowIco,
  1768.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1769.                         {Rotation = 0}
  1770.                     ):Play()
  1771.                     TweenService:Create(
  1772.                         Circle,
  1773.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1774.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  1775.                     ):Play()
  1776.                     TweenService:Create(
  1777.                         CircleSmall,
  1778.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1779.                         {BackgroundTransparency = 1}
  1780.                     ):Play()
  1781.                     TweenService:Create(
  1782.                         Title,
  1783.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1784.                         {TextTransparency = 0.3}
  1785.                     ):Play()
  1786.                     wait(.4)
  1787.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1788.                 end
  1789.             end
  1790.             return DropFunc
  1791.         end
  1792.         function ContainerContent:Colorpicker(text,preset,callback)
  1793.             local ColorPickerToggled = false
  1794.             local OldToggleColor = Color3.fromRGB(0, 0, 0)
  1795.             local OldColor = Color3.fromRGB(0, 0, 0)
  1796.             local OldColorSelectionPosition = nil
  1797.             local OldHueSelectionPosition = nil
  1798.             local ColorH, ColorS, ColorV = 1, 1, 1
  1799.             local RainbowColorPicker = false
  1800.             local ColorPickerInput = nil
  1801.             local ColorInput = nil
  1802.             local HueInput = nil
  1803.  
  1804.             local Colorpicker = Instance.new("Frame")
  1805.             local ColorpickerCorner = Instance.new("UICorner")
  1806.             local Title = Instance.new("TextLabel")
  1807.             local Circle = Instance.new("Frame")
  1808.             local CircleCorner = Instance.new("UICorner")
  1809.             local CircleSmall = Instance.new("Frame")
  1810.             local CircleSmallCorner = Instance.new("UICorner")
  1811.             local Hue = Instance.new("ImageLabel")
  1812.             local HueCorner = Instance.new("UICorner")
  1813.             local HueGradient = Instance.new("UIGradient")
  1814.             local HueSelection = Instance.new("ImageLabel")
  1815.             local Color = Instance.new("ImageLabel")
  1816.             local ColorCorner = Instance.new("UICorner")
  1817.             local ColorSelection = Instance.new("ImageLabel")
  1818.             local Toggle = Instance.new("TextLabel")
  1819.             local ToggleFrame = Instance.new("Frame")
  1820.             local ToggleFrameCorner = Instance.new("UICorner")
  1821.             local ToggleCircle = Instance.new("Frame")
  1822.             local ToggleCircleCorner = Instance.new("UICorner")
  1823.             local Confirm = Instance.new("TextButton")
  1824.             local ConfirmCorner = Instance.new("UICorner")
  1825.             local ConfirmTitle = Instance.new("TextLabel")
  1826.             local BoxColor = Instance.new("Frame")
  1827.             local BoxColorCorner = Instance.new("UICorner")
  1828.             local ColorpickerBtn = Instance.new("TextButton")
  1829.             local ToggleBtn = Instance.new("TextButton")
  1830.  
  1831.  
  1832.             Colorpicker.Name = "Colorpicker"
  1833.             Colorpicker.Parent = Container
  1834.             Colorpicker.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1835.             Colorpicker.ClipsDescendants = true
  1836.             Colorpicker.Position = UDim2.new(0.110937499, 0, 0.67653507, 0)
  1837.             Colorpicker.Size = UDim2.new(0, 457, 0, 43)
  1838.  
  1839.             ColorpickerCorner.CornerRadius = UDim.new(0, 4)
  1840.             ColorpickerCorner.Name = "ColorpickerCorner"
  1841.             ColorpickerCorner.Parent = Colorpicker
  1842.  
  1843.             Title.Name = "Title"
  1844.             Title.Parent = Colorpicker
  1845.             Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1846.             Title.BackgroundTransparency = 1.000
  1847.             Title.Position = UDim2.new(0.0822437406, 0, 0, 0)
  1848.             Title.Size = UDim2.new(0, 113, 0, 42)
  1849.             Title.Font = Enum.Font.Gotham
  1850.             Title.Text = "Colorpicker"
  1851.             Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1852.             Title.TextSize = 15.000
  1853.             Title.TextTransparency = 0.300
  1854.             Title.TextXAlignment = Enum.TextXAlignment.Left
  1855.  
  1856.  
  1857.             ColorpickerBtn.Name = "ColorpickerBtn"
  1858.             ColorpickerBtn.Parent = Title
  1859.             ColorpickerBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1860.             ColorpickerBtn.BackgroundTransparency = 1.000
  1861.             ColorpickerBtn.Position = UDim2.new(-0.336283177, 0, 0, 0)
  1862.             ColorpickerBtn.Size = UDim2.new(0, 457, 0, 42)
  1863.             ColorpickerBtn.Font = Enum.Font.SourceSans
  1864.             ColorpickerBtn.Text = ""
  1865.             ColorpickerBtn.TextColor3 = Color3.fromRGB(0, 0, 0)
  1866.             ColorpickerBtn.TextSize = 14.000
  1867.  
  1868.             Circle.Name = "Circle"
  1869.             Circle.Parent = Title
  1870.             Circle.Active = true
  1871.             Circle.AnchorPoint = Vector2.new(0.5, 0.5)
  1872.             Circle.BackgroundColor3 = Color3.fromRGB(211, 211, 211)
  1873.             Circle.Position = UDim2.new(-0.150690272, 0, 0.503000021, 0)
  1874.             Circle.Size = UDim2.new(0, 11, 0, 11)
  1875.  
  1876.             CircleCorner.CornerRadius = UDim.new(2, 6)
  1877.             CircleCorner.Name = "CircleCorner"
  1878.             CircleCorner.Parent = Circle
  1879.  
  1880.             CircleSmall.Name = "CircleSmall"
  1881.             CircleSmall.Parent = Circle
  1882.             CircleSmall.Active = true
  1883.             CircleSmall.AnchorPoint = Vector2.new(0.5, 0.5)
  1884.             CircleSmall.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1885.             CircleSmall.BackgroundTransparency = 1.000
  1886.             CircleSmall.Position = UDim2.new(0.485673368, 0, 0.503000021, 0)
  1887.             CircleSmall.Size = UDim2.new(0, 9, 0, 9)
  1888.  
  1889.             CircleSmallCorner.CornerRadius = UDim.new(2, 6)
  1890.             CircleSmallCorner.Name = "CircleSmallCorner"
  1891.             CircleSmallCorner.Parent = CircleSmall
  1892.  
  1893.             Hue.Name = "Hue"
  1894.             Hue.Parent = Title
  1895.             Hue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1896.             Hue.Position = UDim2.new(0, 229, 0, 46)
  1897.             Hue.Size = UDim2.new(0, 25, 0, 80)
  1898.  
  1899.             HueCorner.CornerRadius = UDim.new(0, 3)
  1900.             HueCorner.Name = "HueCorner"
  1901.             HueCorner.Parent = Hue
  1902.  
  1903.             HueGradient.Color = ColorSequence.new {
  1904.                 ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 0, 4)),
  1905.                 ColorSequenceKeypoint.new(0.20, Color3.fromRGB(234, 255, 0)),
  1906.                 ColorSequenceKeypoint.new(0.40, Color3.fromRGB(21, 255, 0)),
  1907.                 ColorSequenceKeypoint.new(0.60, Color3.fromRGB(0, 255, 255)),
  1908.                 ColorSequenceKeypoint.new(0.80, Color3.fromRGB(0, 17, 255)),
  1909.                 ColorSequenceKeypoint.new(0.90, Color3.fromRGB(255, 0, 251)),
  1910.                 ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 0, 4))
  1911.             }          
  1912.             HueGradient.Rotation = 270
  1913.             HueGradient.Name = "HueGradient"
  1914.             HueGradient.Parent = Hue
  1915.  
  1916.             HueSelection.Name = "HueSelection"
  1917.             HueSelection.Parent = Hue
  1918.             HueSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  1919.             HueSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1920.             HueSelection.BackgroundTransparency = 1.000
  1921.             HueSelection.Position = UDim2.new(0.48, 0, 1 - select(1, Color3.toHSV(preset)))
  1922.             HueSelection.Size = UDim2.new(0, 18, 0, 18)
  1923.             HueSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  1924.             HueSelection.Visible = false
  1925.  
  1926.             Color.Name = "Color"
  1927.             Color.Parent = Title
  1928.             Color.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  1929.             Color.Position = UDim2.new(0, -23, 0, 46)
  1930.             Color.Size = UDim2.new(0, 246, 0, 80)
  1931.             Color.ZIndex = 10
  1932.             Color.Image = "rbxassetid://4155801252"
  1933.  
  1934.             ColorCorner.CornerRadius = UDim.new(0, 3)
  1935.             ColorCorner.Name = "ColorCorner"
  1936.             ColorCorner.Parent = Color
  1937.  
  1938.             ColorSelection.Name = "ColorSelection"
  1939.             ColorSelection.Parent = Color
  1940.             ColorSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  1941.             ColorSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1942.             ColorSelection.BackgroundTransparency = 1.000
  1943.             ColorSelection.Position = UDim2.new(preset and select(3, Color3.toHSV(preset)))
  1944.             ColorSelection.Size = UDim2.new(0, 18, 0, 18)
  1945.             ColorSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  1946.             ColorSelection.ScaleType = Enum.ScaleType.Fit
  1947.             ColorSelection.Visible = false
  1948.  
  1949.             Toggle.Name = "Toggle"
  1950.             Toggle.Parent = Title
  1951.             Toggle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1952.             Toggle.BackgroundTransparency = 1.000
  1953.             Toggle.Position = UDim2.new(2.37430048, 0, 1.07157099, 0)
  1954.             Toggle.Size = UDim2.new(0, 137, 0, 38)
  1955.             Toggle.Font = Enum.Font.Gotham
  1956.             Toggle.Text = "Rainbow"
  1957.             Toggle.TextColor3 = Color3.fromRGB(255, 255, 255)
  1958.             Toggle.TextSize = 15.000
  1959.             Toggle.TextTransparency = 0.300
  1960.             Toggle.TextXAlignment = Enum.TextXAlignment.Left
  1961.  
  1962.             ToggleFrame.Name = "ToggleFrame"
  1963.             ToggleFrame.Parent = Toggle
  1964.             ToggleFrame.BackgroundColor3 = Color3.fromRGB(226, 227, 227)
  1965.             ToggleFrame.Position = UDim2.new(0.778387249, 0, 0.357142866, 0)
  1966.             ToggleFrame.Size = UDim2.new(0, 27, 0, 11)
  1967.  
  1968.             ToggleFrameCorner.Name = "ToggleFrameCorner"
  1969.             ToggleFrameCorner.Parent = ToggleFrame
  1970.  
  1971.             ToggleCircle.Name = "ToggleCircle"
  1972.             ToggleCircle.Parent = ToggleFrame
  1973.             ToggleCircle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1974.             ToggleCircle.Position = UDim2.new(0, 0, -0.273000002, 0)
  1975.             ToggleCircle.Selectable = true
  1976.             ToggleCircle.Size = UDim2.new(0, 17, 0, 17)
  1977.  
  1978.             ToggleCircleCorner.CornerRadius = UDim.new(2, 8)
  1979.             ToggleCircleCorner.Name = "ToggleCircleCorner"
  1980.             ToggleCircleCorner.Parent = ToggleCircle
  1981.  
  1982.             Confirm.Name = "Confirm"
  1983.             Confirm.Parent = Title
  1984.             Confirm.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  1985.             Confirm.ClipsDescendants = true
  1986.             Confirm.Position = UDim2.new(2.3791616, 0, 1.97633278, 0)
  1987.             Confirm.Size = UDim2.new(0, 144, 0, 42)
  1988.             Confirm.AutoButtonColor = false
  1989.             Confirm.Font = Enum.Font.SourceSans
  1990.             Confirm.Text = ""
  1991.             Confirm.TextColor3 = Color3.fromRGB(0, 0, 0)
  1992.             Confirm.TextSize = 14.000
  1993.  
  1994.             ConfirmCorner.CornerRadius = UDim.new(0, 4)
  1995.             ConfirmCorner.Name = "ConfirmCorner"
  1996.             ConfirmCorner.Parent = Confirm
  1997.  
  1998.             ConfirmTitle.Name = "ConfirmTitle"
  1999.             ConfirmTitle.Parent = Confirm
  2000.             ConfirmTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2001.             ConfirmTitle.BackgroundTransparency = 1.000
  2002.             ConfirmTitle.Size = UDim2.new(0, 116, 0, 40)
  2003.             ConfirmTitle.Font = Enum.Font.Gotham
  2004.             ConfirmTitle.Text = "Confirm"
  2005.             ConfirmTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  2006.             ConfirmTitle.TextSize = 15.000
  2007.             ConfirmTitle.TextTransparency = 0.300
  2008.             ConfirmTitle.TextXAlignment = Enum.TextXAlignment.Left
  2009.  
  2010.             BoxColor.Name = "BoxColor"
  2011.             BoxColor.Parent = Title
  2012.             BoxColor.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2013.             BoxColor.Position = UDim2.new(3.26915574, 0, 0.261904776, 0)
  2014.             BoxColor.Size = UDim2.new(0, 35, 0, 19)
  2015.  
  2016.             BoxColorCorner.CornerRadius = UDim.new(0, 4)
  2017.             BoxColorCorner.Name = "BoxColorCorner"
  2018.             BoxColorCorner.Parent = BoxColor
  2019.  
  2020.             ToggleBtn.Name = "ToggleBtn"
  2021.             ToggleBtn.Parent = Toggle
  2022.             ToggleBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2023.             ToggleBtn.BackgroundTransparency = 1.000
  2024.             ToggleBtn.Size = UDim2.new(0, 137, 0, 38)
  2025.             ToggleBtn.Font = Enum.Font.SourceSans
  2026.             ToggleBtn.Text = ""
  2027.             ToggleBtn.TextColor3 = Color3.fromRGB(0, 0, 0)
  2028.             ToggleBtn.TextSize = 14.000
  2029.  
  2030.             ColorpickerBtn.MouseEnter:Connect(function()
  2031.                 TweenService:Create(
  2032.                     Title,
  2033.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2034.                     {TextTransparency = 0}
  2035.                 ):Play()
  2036.             end)
  2037.  
  2038.             ColorpickerBtn.MouseLeave:Connect(function()
  2039.                 TweenService:Create(
  2040.                     Title,
  2041.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2042.                     {TextTransparency = 0.3}
  2043.                 ):Play()
  2044.             end)
  2045.  
  2046.             ColorpickerBtn.MouseButton1Click:Connect(function()
  2047.                 if ColorPickerToggled == false then
  2048.                     ColorSelection.Visible = true
  2049.                     HueSelection.Visible = true
  2050.                     Colorpicker:TweenSize(UDim2.new(0, 457, 0, 138), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  2051.                     TweenService:Create(
  2052.                         Title,
  2053.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2054.                         {TextColor3 = PresetColor}
  2055.                     ):Play()
  2056.                     TweenService:Create(
  2057.                         Circle,
  2058.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2059.                         {BackgroundColor3 = PresetColor}
  2060.                     ):Play()
  2061.                     TweenService:Create(
  2062.                         CircleSmall,
  2063.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2064.                         {BackgroundTransparency = 0}
  2065.                     ):Play()
  2066.                     TweenService:Create(
  2067.                         Title,
  2068.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2069.                         {TextTransparency = 0}
  2070.                     ):Play()
  2071.                     wait(.4)
  2072.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2073.                 else
  2074.                     ColorSelection.Visible = false
  2075.                     HueSelection.Visible = false
  2076.                     Colorpicker:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  2077.                     TweenService:Create(
  2078.                         Title,
  2079.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2080.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  2081.                     ):Play()
  2082.                     TweenService:Create(
  2083.                         Circle,
  2084.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2085.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  2086.                     ):Play()
  2087.                     TweenService:Create(
  2088.                         CircleSmall,
  2089.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2090.                         {BackgroundTransparency = 1}
  2091.                     ):Play()
  2092.                     TweenService:Create(
  2093.                         Title,
  2094.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2095.                         {TextTransparency = 0.3}
  2096.                     ):Play()
  2097.                     wait(.4)
  2098.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2099.                 end
  2100.                 ColorPickerToggled = not ColorPickerToggled
  2101.             end)
  2102.  
  2103.  
  2104.             local function UpdateColorPicker(nope)
  2105.                 BoxColor.BackgroundColor3 = Color3.fromHSV(ColorH, ColorS, ColorV)
  2106.                 Color.BackgroundColor3 = Color3.fromHSV(ColorH, 1, 1)
  2107.  
  2108.                 pcall(callback, BoxColor.BackgroundColor3)
  2109.             end
  2110.  
  2111.             ColorH =
  2112.                 1 -
  2113.                 (math.clamp(HueSelection.AbsolutePosition.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) /
  2114.                     Hue.AbsoluteSize.Y)
  2115.             ColorS =
  2116.                 (math.clamp(ColorSelection.AbsolutePosition.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) /
  2117.                     Color.AbsoluteSize.X)
  2118.             ColorV =
  2119.                 1 -
  2120.                 (math.clamp(ColorSelection.AbsolutePosition.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) /
  2121.                     Color.AbsoluteSize.Y)
  2122.  
  2123.             BoxColor.BackgroundColor3 = preset
  2124.             Color.BackgroundColor3 = preset
  2125.             pcall(callback, BoxColor.BackgroundColor3)
  2126.  
  2127.             Color.InputBegan:Connect(
  2128.                 function(input)
  2129.                     if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2130.                         if RainbowColorPicker then
  2131.                             return
  2132.                         end
  2133.  
  2134.                         if ColorInput then
  2135.                             ColorInput:Disconnect()
  2136.                         end
  2137.  
  2138.                         ColorInput =
  2139.                             RunService.RenderStepped:Connect(
  2140.                                 function()
  2141.                                     local ColorX =
  2142.                                     (math.clamp(Mouse.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) /
  2143.                                         Color.AbsoluteSize.X)
  2144.                                     local ColorY =
  2145.                                     (math.clamp(Mouse.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) /
  2146.                                         Color.AbsoluteSize.Y)
  2147.  
  2148.                                     ColorSelection.Position = UDim2.new(ColorX, 0, ColorY, 0)
  2149.                                     ColorS = ColorX
  2150.                                     ColorV = 1 - ColorY
  2151.  
  2152.                                     UpdateColorPicker(true)
  2153.                                 end
  2154.                             )
  2155.                     end
  2156.                 end
  2157.             )
  2158.  
  2159.             Color.InputEnded:Connect(
  2160.                 function(input)
  2161.                     if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2162.                         if ColorInput then
  2163.                             ColorInput:Disconnect()
  2164.                         end
  2165.                     end
  2166.                 end
  2167.             )
  2168.  
  2169.             Hue.InputBegan:Connect(
  2170.                 function(input)
  2171.                     if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2172.                         if RainbowColorPicker then
  2173.                             return
  2174.                         end
  2175.  
  2176.                         if HueInput then
  2177.                             HueInput:Disconnect()
  2178.                         end
  2179.  
  2180.                         HueInput =
  2181.                             RunService.RenderStepped:Connect(
  2182.                                 function()
  2183.                                     local HueY =
  2184.                                     (math.clamp(Mouse.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) /
  2185.                                         Hue.AbsoluteSize.Y)
  2186.  
  2187.                                     HueSelection.Position = UDim2.new(0.48, 0, HueY, 0)
  2188.                                     ColorH = 1 - HueY
  2189.  
  2190.                                     UpdateColorPicker(true)
  2191.                                 end
  2192.                             )
  2193.                     end
  2194.                 end
  2195.             )
  2196.  
  2197.             Hue.InputEnded:Connect(
  2198.                 function(input)
  2199.                     if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2200.                         if HueInput then
  2201.                             HueInput:Disconnect()
  2202.                         end
  2203.                     end
  2204.                 end
  2205.             )
  2206.  
  2207.             ToggleBtn.MouseButton1Down:Connect(
  2208.                 function()
  2209.                     RainbowColorPicker = not RainbowColorPicker
  2210.  
  2211.                     if ColorInput then
  2212.                         ColorInput:Disconnect()
  2213.                     end
  2214.  
  2215.                     if HueInput then
  2216.                         HueInput:Disconnect()
  2217.                     end
  2218.  
  2219.                     if RainbowColorPicker then
  2220.                         ToggleCircle:TweenPosition(UDim2.new(0.37, 0,-0.273, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
  2221.                         TweenService:Create(
  2222.                             ToggleCircle,
  2223.                             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2224.                             {BackgroundColor3 =PresetColor}
  2225.                         ):Play()
  2226.  
  2227.                         OldToggleColor = BoxColor.BackgroundColor3
  2228.                         OldColor = Color.BackgroundColor3
  2229.                         OldColorSelectionPosition = ColorSelection.Position
  2230.                         OldHueSelectionPosition = HueSelection.Position
  2231.  
  2232.                         while RainbowColorPicker do
  2233.                             BoxColor.BackgroundColor3 = Color3.fromHSV(Flux.RainbowColorValue, 1, 1)
  2234.                             Color.BackgroundColor3 = Color3.fromHSV(Flux.RainbowColorValue, 1, 1)
  2235.  
  2236.                             ColorSelection.Position = UDim2.new(1, 0, 0, 0)
  2237.                             HueSelection.Position = UDim2.new(0.48, 0, 0, Flux.HueSelectionPosition)
  2238.  
  2239.                             pcall(callback, BoxColor.BackgroundColor3)
  2240.                             wait()
  2241.                         end
  2242.                     elseif not RainbowColorPicker then
  2243.                         ToggleCircle:TweenPosition(UDim2.new(0, 0,-0.273, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
  2244.                         TweenService:Create(
  2245.                             ToggleCircle,
  2246.                             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2247.                             {BackgroundColor3 = Color3.fromRGB(255,255,255)}
  2248.                         ):Play()
  2249.  
  2250.                         BoxColor.BackgroundColor3 = OldToggleColor
  2251.                         Color.BackgroundColor3 = OldColor
  2252.  
  2253.                         ColorSelection.Position = OldColorSelectionPosition
  2254.                         HueSelection.Position = OldHueSelectionPosition
  2255.  
  2256.                         pcall(callback, BoxColor.BackgroundColor3)
  2257.                     end
  2258.                 end
  2259.             )
  2260.  
  2261.             Confirm.MouseButton1Click:Connect(
  2262.                 function()
  2263.                     ColorPickerToggled = not ColorPickerToggled
  2264.                     Colorpicker:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  2265.                     TweenService:Create(
  2266.                         Title,
  2267.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2268.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  2269.                     ):Play()
  2270.                     TweenService:Create(
  2271.                         Circle,
  2272.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2273.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  2274.                     ):Play()
  2275.                     TweenService:Create(
  2276.                         CircleSmall,
  2277.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2278.                         {BackgroundTransparency = 1}
  2279.                     ):Play()
  2280.                     TweenService:Create(
  2281.                         Title,
  2282.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2283.                         {TextTransparency = 0.3}
  2284.                     ):Play()
  2285.                     wait(.4)
  2286.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2287.                 end
  2288.             )
  2289.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2290.         end
  2291.         function ContainerContent:Line()
  2292.             local Line = Instance.new("TextButton")
  2293.             local LineCorner = Instance.new("UICorner")
  2294.  
  2295.             Line.Name = "Line"
  2296.             Line.Parent = Container
  2297.             Line.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  2298.             Line.ClipsDescendants = true
  2299.             Line.Position = UDim2.new(0, 0, 0.70091325, 0)
  2300.             Line.Size = UDim2.new(0, 457, 0, 4)
  2301.             Line.AutoButtonColor = false
  2302.             Line.Font = Enum.Font.SourceSans
  2303.             Line.Text = ""
  2304.             Line.TextColor3 = Color3.fromRGB(0, 0, 0)
  2305.             Line.TextSize = 14.000
  2306.  
  2307.             LineCorner.CornerRadius = UDim.new(0, 4)
  2308.             LineCorner.Name = "LineCorner"
  2309.             LineCorner.Parent = Line
  2310.  
  2311.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2312.         end
  2313.         function ContainerContent:Label(text)
  2314.             local Label = Instance.new("TextButton")
  2315.             local LabelCorner = Instance.new("UICorner")
  2316.             local Title = Instance.new("TextLabel")
  2317.  
  2318.             Label.Name = "Label"
  2319.             Label.Parent = Container
  2320.             Label.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  2321.             Label.ClipsDescendants = true
  2322.             Label.Position = UDim2.new(0.370312512, 0, 0.552631557, 0)
  2323.             Label.Size = UDim2.new(0, 457, 0, 43)
  2324.             Label.AutoButtonColor = false
  2325.             Label.Font = Enum.Font.SourceSans
  2326.             Label.Text = ""
  2327.             Label.TextColor3 = Color3.fromRGB(0, 0, 0)
  2328.             Label.TextSize = 14.000
  2329.  
  2330.             LabelCorner.CornerRadius = UDim.new(0, 4)
  2331.             LabelCorner.Name = "LabelCorner"
  2332.             LabelCorner.Parent = Label
  2333.  
  2334.             Title.Name = "Title"
  2335.             Title.Parent = Label
  2336.             Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2337.             Title.BackgroundTransparency = 1.000
  2338.             Title.Position = UDim2.new(0.038480062, 0, 0, 0)
  2339.             Title.Size = UDim2.new(0, 113, 0, 42)
  2340.             Title.Font = Enum.Font.Gotham
  2341.             Title.Text = text
  2342.             Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  2343.             Title.TextSize = 15.000
  2344.             Title.TextTransparency = 0.300
  2345.             Title.TextXAlignment = Enum.TextXAlignment.Left
  2346.  
  2347.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2348.            
  2349.             return function(txt)
  2350.                 Title.Text = txt
  2351.             end
  2352.         end
  2353.         function ContainerContent:Textbox(text,desc,disapper,callback)
  2354.             if desc == "" then
  2355.                 desc = "There is no description for this textbox."
  2356.             end
  2357.             local TextboxDescToggled = false
  2358.             local Textbox = Instance.new("TextButton")
  2359.             local TextboxCorner = Instance.new("UICorner")
  2360.             local Title = Instance.new("TextLabel")
  2361.             local Circle = Instance.new("Frame")
  2362.             local CircleCorner = Instance.new("UICorner")
  2363.             local CircleSmall = Instance.new("Frame")
  2364.             local CircleSmallCorner = Instance.new("UICorner")
  2365.             local Description = Instance.new("TextLabel")
  2366.             local TextboxFrame = Instance.new("Frame")
  2367.             local TextboxFrameCorner = Instance.new("UICorner")
  2368.             local TextBox = Instance.new("TextBox")
  2369.             local ArrowBtn = Instance.new("ImageButton")
  2370.             local ArrowIco = Instance.new("ImageLabel")
  2371.  
  2372.             Textbox.Name = "Textbox"
  2373.             Textbox.Parent = Container
  2374.             Textbox.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  2375.             Textbox.ClipsDescendants = true
  2376.             Textbox.Position = UDim2.new(0.0459499061, 0, 0.734449744, 0)
  2377.             Textbox.Size = UDim2.new(0, 457, 0, 43)
  2378.             Textbox.AutoButtonColor = false
  2379.             Textbox.Font = Enum.Font.SourceSans
  2380.             Textbox.Text = ""
  2381.             Textbox.TextColor3 = Color3.fromRGB(0, 0, 0)
  2382.             Textbox.TextSize = 14.000
  2383.  
  2384.             TextboxCorner.CornerRadius = UDim.new(0, 4)
  2385.             TextboxCorner.Name = "TextboxCorner"
  2386.             TextboxCorner.Parent = Textbox
  2387.  
  2388.             Title.Name = "Title"
  2389.             Title.Parent = Textbox
  2390.             Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2391.             Title.BackgroundTransparency = 1.000
  2392.             Title.Position = UDim2.new(0.0822437406, 0, 0, 0)
  2393.             Title.Size = UDim2.new(0, 113, 0, 42)
  2394.             Title.Font = Enum.Font.Gotham
  2395.             Title.Text = text
  2396.             Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  2397.             Title.TextSize = 15.000
  2398.             Title.TextTransparency = 0.300
  2399.             Title.TextXAlignment = Enum.TextXAlignment.Left
  2400.  
  2401.             Circle.Name = "Circle"
  2402.             Circle.Parent = Title
  2403.             Circle.Active = true
  2404.             Circle.AnchorPoint = Vector2.new(0.5, 0.5)
  2405.             Circle.BackgroundColor3 = Color3.fromRGB(211, 211, 211)
  2406.             Circle.Position = UDim2.new(-0.150690272, 0, 0.503000021, 0)
  2407.             Circle.Size = UDim2.new(0, 11, 0, 11)
  2408.  
  2409.             CircleCorner.CornerRadius = UDim.new(2, 6)
  2410.             CircleCorner.Name = "CircleCorner"
  2411.             CircleCorner.Parent = Circle
  2412.  
  2413.             CircleSmall.Name = "CircleSmall"
  2414.             CircleSmall.Parent = Circle
  2415.             CircleSmall.Active = true
  2416.             CircleSmall.AnchorPoint = Vector2.new(0.5, 0.5)
  2417.             CircleSmall.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  2418.             CircleSmall.BackgroundTransparency = 1.000
  2419.             CircleSmall.Position = UDim2.new(0.485673368, 0, 0.503000021, 0)
  2420.             CircleSmall.Size = UDim2.new(0, 9, 0, 9)
  2421.  
  2422.             CircleSmallCorner.CornerRadius = UDim.new(2, 6)
  2423.             CircleSmallCorner.Name = "CircleSmallCorner"
  2424.             CircleSmallCorner.Parent = CircleSmall
  2425.  
  2426.             Description.Name = "Description"
  2427.             Description.Parent = Title
  2428.             Description.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2429.             Description.BackgroundTransparency = 1.000
  2430.             Description.Position = UDim2.new(-0.200942323, 0, 0.985714269, 0)
  2431.             Description.Size = UDim2.new(0, 432, 0, 31)
  2432.             Description.Font = Enum.Font.Gotham
  2433.             Description.Text = desc
  2434.             Description.TextColor3 = Color3.fromRGB(255, 255, 255)
  2435.             Description.TextSize = 15.000
  2436.             Description.TextTransparency = 1
  2437.             Description.TextWrapped = true
  2438.             Description.TextXAlignment = Enum.TextXAlignment.Left
  2439.  
  2440.             TextboxFrame.Name = "TextboxFrame"
  2441.             TextboxFrame.Parent = Title
  2442.             TextboxFrame.BackgroundColor3 = Color3.fromRGB(50, 53, 59)
  2443.             TextboxFrame.Position = UDim2.new(1.82300889, 0, 0.202380955, 0)
  2444.             TextboxFrame.Size = UDim2.new(0, 161, 0, 26)
  2445.  
  2446.             TextboxFrameCorner.CornerRadius = UDim.new(0, 4)
  2447.             TextboxFrameCorner.Name = "TextboxFrameCorner"
  2448.             TextboxFrameCorner.Parent = TextboxFrame
  2449.  
  2450.             TextBox.Parent = TextboxFrame
  2451.             TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2452.             TextBox.BackgroundTransparency = 1.000
  2453.             TextBox.Size = UDim2.new(0, 161, 0, 26)
  2454.             TextBox.Font = Enum.Font.Gotham
  2455.             TextBox.Text = ""
  2456.             TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  2457.             TextBox.TextSize = 15.000
  2458.             TextBox.TextTransparency = 0.300
  2459.  
  2460.             ArrowBtn.Name = "ArrowBtn"
  2461.             ArrowBtn.Parent = Textbox
  2462.             ArrowBtn.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  2463.             ArrowBtn.BackgroundTransparency = 1.000
  2464.             ArrowBtn.Position = UDim2.new(0.903719902, 0, 0, 0)
  2465.             ArrowBtn.Size = UDim2.new(0, 33, 0, 37)
  2466.             ArrowBtn.SliceCenter = Rect.new(30, 30, 30, 30)
  2467.             ArrowBtn.SliceScale = 7.000
  2468.  
  2469.             ArrowIco.Name = "ArrowIco"
  2470.             ArrowIco.Parent = ArrowBtn
  2471.             ArrowIco.AnchorPoint = Vector2.new(0.5, 0.5)
  2472.             ArrowIco.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2473.             ArrowIco.BackgroundTransparency = 1.000
  2474.             ArrowIco.Position = UDim2.new(0.495753437, 0, 0.554054081, 0)
  2475.             ArrowIco.Selectable = true
  2476.             ArrowIco.Size = UDim2.new(0, 28, 0, 24)
  2477.             ArrowIco.Image = "http://www.roblox.com/asset/?id=6034818372"
  2478.  
  2479.             TextBox.FocusLost:Connect(
  2480.                 function(ep)
  2481.                     if ep then
  2482.                         if #TextBox.Text > 0 then
  2483.                             pcall(callback, TextBox.Text)
  2484.                             if disapper then
  2485.                                 TextBox.Text = ""
  2486.                             end
  2487.                         end
  2488.                     end
  2489.                 end
  2490.             )
  2491.  
  2492.             ArrowBtn.MouseButton1Click:Connect(function()
  2493.                 if TextboxDescToggled == false then
  2494.                     Textbox:TweenSize(UDim2.new(0, 457, 0, 81), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  2495.                     TweenService:Create(
  2496.                         Title,
  2497.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2498.                         {TextColor3 = PresetColor}
  2499.                     ):Play()
  2500.                     TweenService:Create(
  2501.                         ArrowIco,
  2502.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2503.                         {ImageColor3 = PresetColor}
  2504.                     ):Play()
  2505.                     TweenService:Create(
  2506.                         ArrowIco,
  2507.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2508.                         {ImageTransparency = 0}
  2509.                     ):Play()
  2510.                     TweenService:Create(
  2511.                         ArrowIco,
  2512.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2513.                         {Rotation = 180}
  2514.                     ):Play()
  2515.                     TweenService:Create(
  2516.                         Circle,
  2517.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2518.                         {BackgroundColor3 = PresetColor}
  2519.                     ):Play()
  2520.                     TweenService:Create(
  2521.                         CircleSmall,
  2522.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2523.                         {BackgroundTransparency = 0}
  2524.                     ):Play()
  2525.                     TweenService:Create(
  2526.                         Title,
  2527.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2528.                         {TextTransparency = 0}
  2529.                     ):Play()
  2530.                     TweenService:Create(
  2531.                         Description,
  2532.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2533.                         {TextTransparency = 0.3}
  2534.                     ):Play()
  2535.                     wait(.4)
  2536.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2537.                 else
  2538.                     Textbox:TweenSize(UDim2.new(0, 457, 0, 43), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  2539.                     TweenService:Create(
  2540.                         Title,
  2541.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2542.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  2543.                     ):Play()
  2544.                     TweenService:Create(
  2545.                         ArrowIco,
  2546.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2547.                         {ImageColor3 = Color3.fromRGB(255,255,255)}
  2548.                     ):Play()
  2549.                     TweenService:Create(
  2550.                         ArrowIco,
  2551.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2552.                         {ImageTransparency = .3}
  2553.                     ):Play()
  2554.                     TweenService:Create(
  2555.                         ArrowIco,
  2556.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2557.                         {Rotation = 0}
  2558.                     ):Play()
  2559.                     TweenService:Create(
  2560.                         Circle,
  2561.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2562.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  2563.                     ):Play()
  2564.                     TweenService:Create(
  2565.                         CircleSmall,
  2566.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2567.                         {BackgroundTransparency = 1}
  2568.                     ):Play()
  2569.                     TweenService:Create(
  2570.                         Title,
  2571.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2572.                         {TextTransparency = 0.3}
  2573.                     ):Play()
  2574.                     TweenService:Create(
  2575.                         Description,
  2576.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2577.                         {TextTransparency = 1}
  2578.                     ):Play()
  2579.                     wait(.4)
  2580.                     Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2581.                 end
  2582.                 TextboxDescToggled = not TextboxDescToggled
  2583.             end)
  2584.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2585.         end
  2586.         function ContainerContent:Bind(text,presetbind,callback)
  2587.             local Key = presetbind.Name
  2588.             local Bind = Instance.new("TextButton")
  2589.             local BindCorner = Instance.new("UICorner")
  2590.             local Title = Instance.new("TextLabel")
  2591.             local Circle = Instance.new("Frame")
  2592.             local CircleCorner = Instance.new("UICorner")
  2593.             local CircleSmall = Instance.new("Frame")
  2594.             local CircleSmallCorner = Instance.new("UICorner")
  2595.             local BindLabel = Instance.new("TextLabel")
  2596.  
  2597.             Bind.Name = "Bind"
  2598.             Bind.Parent = Container
  2599.             Bind.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  2600.             Bind.ClipsDescendants = true
  2601.             Bind.Position = UDim2.new(0.40625, 0, 0.828947306, 0)
  2602.             Bind.Size = UDim2.new(0, 457, 0, 43)
  2603.             Bind.AutoButtonColor = false
  2604.             Bind.Font = Enum.Font.SourceSans
  2605.             Bind.Text = ""
  2606.             Bind.TextColor3 = Color3.fromRGB(0, 0, 0)
  2607.             Bind.TextSize = 14.000
  2608.  
  2609.             BindCorner.CornerRadius = UDim.new(0, 4)
  2610.             BindCorner.Name = "BindCorner"
  2611.             BindCorner.Parent = Bind
  2612.  
  2613.             Title.Name = "Title"
  2614.             Title.Parent = Bind
  2615.             Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2616.             Title.BackgroundTransparency = 1.000
  2617.             Title.Position = UDim2.new(0.0822437406, 0, 0, 0)
  2618.             Title.Size = UDim2.new(0, 113, 0, 42)
  2619.             Title.Font = Enum.Font.Gotham
  2620.             Title.Text = text
  2621.             Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  2622.             Title.TextSize = 15.000
  2623.             Title.TextTransparency = 0.300
  2624.             Title.TextXAlignment = Enum.TextXAlignment.Left
  2625.  
  2626.             Circle.Name = "Circle"
  2627.             Circle.Parent = Title
  2628.             Circle.Active = true
  2629.             Circle.AnchorPoint = Vector2.new(0.5, 0.5)
  2630.             Circle.BackgroundColor3 = Color3.fromRGB(211, 211, 211)
  2631.             Circle.Position = UDim2.new(-0.150690272, 0, 0.503000021, 0)
  2632.             Circle.Size = UDim2.new(0, 11, 0, 11)
  2633.  
  2634.             CircleCorner.CornerRadius = UDim.new(2, 6)
  2635.             CircleCorner.Name = "CircleCorner"
  2636.             CircleCorner.Parent = Circle
  2637.  
  2638.             CircleSmall.Name = "CircleSmall"
  2639.             CircleSmall.Parent = Circle
  2640.             CircleSmall.Active = true
  2641.             CircleSmall.AnchorPoint = Vector2.new(0.5, 0.5)
  2642.             CircleSmall.BackgroundColor3 = Color3.fromRGB(64, 68, 75)
  2643.             CircleSmall.BackgroundTransparency = 1.000
  2644.             CircleSmall.Position = UDim2.new(0.485673368, 0, 0.503000021, 0)
  2645.             CircleSmall.Size = UDim2.new(0, 9, 0, 9)
  2646.  
  2647.             CircleSmallCorner.CornerRadius = UDim.new(2, 6)
  2648.             CircleSmallCorner.Name = "CircleSmallCorner"
  2649.             CircleSmallCorner.Parent = CircleSmall
  2650.  
  2651.             BindLabel.Name = "BindLabel"
  2652.             BindLabel.Parent = Title
  2653.             BindLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2654.             BindLabel.BackgroundTransparency = 1.000
  2655.             BindLabel.Position = UDim2.new(2.56011987, 0, 0, 0)
  2656.             BindLabel.Size = UDim2.new(0, 113, 0, 42)
  2657.             BindLabel.Font = Enum.Font.Gotham
  2658.             BindLabel.Text = Key
  2659.             BindLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  2660.             BindLabel.TextSize = 15.000
  2661.             BindLabel.TextTransparency = 0.300
  2662.             BindLabel.TextXAlignment = Enum.TextXAlignment.Right
  2663.  
  2664.             Bind.MouseEnter:Connect(function()
  2665.                 TweenService:Create(
  2666.                     Title,
  2667.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2668.                     {TextTransparency = 0}
  2669.                 ):Play()
  2670.             end)
  2671.  
  2672.             Bind.MouseLeave:Connect(function()
  2673.                 TweenService:Create(
  2674.                     Title,
  2675.                     TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2676.                     {TextTransparency = 0.3}
  2677.                 ):Play()
  2678.             end)
  2679.  
  2680.             Bind.MouseButton1Click:connect(
  2681.                 function()
  2682.                     TweenService:Create(
  2683.                         Title,
  2684.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2685.                         {TextColor3 = PresetColor}
  2686.                     ):Play()
  2687.                     TweenService:Create(
  2688.                         BindLabel,
  2689.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2690.                         {TextColor3 = PresetColor}
  2691.                     ):Play()
  2692.                     TweenService:Create(
  2693.                         Circle,
  2694.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2695.                         {BackgroundColor3 = PresetColor}
  2696.                     ):Play()
  2697.                     TweenService:Create(
  2698.                         CircleSmall,
  2699.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2700.                         {BackgroundTransparency = 0}
  2701.                     ):Play()
  2702.                     TweenService:Create(
  2703.                         Title,
  2704.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2705.                         {TextTransparency = 0}
  2706.                     ):Play()
  2707.                     TweenService:Create(
  2708.                         BindLabel,
  2709.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2710.                         {TextTransparency = 0}
  2711.                     ):Play()
  2712.                     BindLabel.Text = "..."
  2713.                     local inputwait = game:GetService("UserInputService").InputBegan:wait()
  2714.                     if inputwait.KeyCode.Name ~= "Unknown" then
  2715.                         BindLabel.Text = inputwait .KeyCode.Name
  2716.                         Key = inputwait .KeyCode.Name
  2717.                     end
  2718.                     TweenService:Create(
  2719.                         Title,
  2720.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2721.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  2722.                     ):Play()
  2723.                     TweenService:Create(
  2724.                         BindLabel,
  2725.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2726.                         {TextColor3 = Color3.fromRGB(255,255,255)}
  2727.                     ):Play()
  2728.                     TweenService:Create(
  2729.                         Circle,
  2730.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2731.                         {BackgroundColor3 = Color3.fromRGB(211, 211, 211)}
  2732.                     ):Play()
  2733.                     TweenService:Create(
  2734.                         CircleSmall,
  2735.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2736.                         {BackgroundTransparency = 1}
  2737.                     ):Play()
  2738.                     TweenService:Create(
  2739.                         Title,
  2740.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2741.                         {TextTransparency = 0.3}
  2742.                     ):Play()
  2743.                     TweenService:Create(
  2744.                         BindLabel,
  2745.                         TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2746.                         {TextTransparency = 0.3}
  2747.                     ):Play()
  2748.                 end
  2749.             )
  2750.  
  2751.             game:GetService("UserInputService").InputBegan:connect(
  2752.             function(current, pressed)
  2753.                 if not pressed then
  2754.                     if current.KeyCode.Name == Key then
  2755.                         pcall(callback)
  2756.                     end
  2757.                 end
  2758.             end
  2759.             )
  2760.  
  2761.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2762.         end
  2763.         return ContainerContent
  2764.     end
  2765.     return Tabs
  2766. end
  2767. return Flux
Advertisement
Add Comment
Please, Sign In to add comment