The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Hood Game Script script pastebin roblox
By Hood Game Script on 2024-09-23 08:00 am | Syntax: LUA | Views: 9



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. print("HavenRBX Is a qt")
  2.  
  3. game:GetService("StarterGui"):SetCore("SendNotification",{    
  4.  
  5. Title = "CREDITS",    
  6.  
  7. Text = "Gui By G_87#5392",
  8.  
  9. Button1 = "?",
  10.  
  11. Duration = 30
  12.  
  13. })
  14.  
  15. --Scripting is at the bottom - thx to mana64
  16.  
  17. if game.CoreGui:FindFirstChild("Library") then
  18.  
  19.     game.CoreGui:FindFirstChild("Library"):Destroy()
  20.  
  21.   end  
  22.  
  23.   local VLib = {RainbowColorValue = 0, HueSelectionPosition = 0}
  24.  
  25.   local UserInputService = game:GetService("UserInputService")
  26.  
  27.   local TweenService = game:GetService("TweenService")
  28.  
  29.   local RunService = game:GetService("RunService")
  30.  
  31.   local LocalPlayer = game:GetService("Players").LocalPlayer
  32.  
  33.   local Mouse = LocalPlayer:GetMouse()
  34.  
  35.  
  36.  
  37.  
  38.  
  39.   coroutine.wrap(
  40.  
  41.    function()
  42.  
  43.       while wait() do
  44.  
  45.          VLib.RainbowColorValue = VLib.RainbowColorValue + 1 / 255
  46.  
  47.          VLib.HueSelectionPosition = VLib.HueSelectionPosition + 1
  48.  
  49.  
  50.  
  51.          if VLib.RainbowColorValue >= 1 then
  52.  
  53.             VLib.RainbowColorValue = 0
  54.  
  55.          end
  56.  
  57.  
  58.  
  59.          if VLib.HueSelectionPosition == 80 then
  60.  
  61.             VLib.HueSelectionPosition = 0
  62.  
  63.          end
  64.  
  65.       end
  66.  
  67.    end
  68.  
  69.   )()
  70.  
  71.  
  72.  
  73.   local function MakeDraggable(topbarobject, object)
  74.  
  75.    local Dragging = nil
  76.  
  77.    local DragInput = nil
  78.  
  79.    local DragStart = nil
  80.  
  81.    local StartPosition = nil
  82.  
  83.  
  84.  
  85.    local function Update(input)
  86.  
  87.       local Delta = input.Position - DragStart
  88.  
  89.       local pos =
  90.  
  91.          UDim2.new(
  92.  
  93.             StartPosition.X.Scale,
  94.  
  95.             StartPosition.X.Offset + Delta.X,
  96.  
  97.             StartPosition.Y.Scale,
  98.  
  99.             StartPosition.Y.Offset + Delta.Y
  100.  
  101.          )
  102.  
  103.       local Tween = TweenService:Create(object, TweenInfo.new(0.2), {Position = pos})
  104.  
  105.       Tween:Play()
  106.  
  107.    end
  108.  
  109.  
  110.  
  111.    topbarobject.InputBegan:Connect(
  112.  
  113.       function(input)
  114.  
  115.          if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  116.  
  117.             Dragging = true
  118.  
  119.             DragStart = input.Position
  120.  
  121.             StartPosition = object.Position
  122.  
  123.  
  124.  
  125.             input.Changed:Connect(
  126.  
  127.                function()
  128.  
  129.                   if input.UserInputState == Enum.UserInputState.End then
  130.  
  131.                      Dragging = false
  132.  
  133.                   end
  134.  
  135.                end
  136.  
  137.             )
  138.  
  139.          end
  140.  
  141.       end
  142.  
  143.    )
  144.  
  145.  
  146.  
  147.    topbarobject.InputChanged:Connect(
  148.  
  149.       function(input)
  150.  
  151.          if
  152.  
  153.             input.UserInputType == Enum.UserInputType.MouseMovement or
  154.  
  155.                input.UserInputType == Enum.UserInputType.Touch
  156.  
  157.          then
  158.  
  159.             DragInput = input
  160.  
  161.          end
  162.  
  163.       end
  164.  
  165.    )
  166.  
  167.  
  168.  
  169.    UserInputService.InputChanged:Connect(
  170.  
  171.       function(input)
  172.  
  173.          if input == DragInput and Dragging then
  174.  
  175.             Update(input)
  176.  
  177.          end
  178.  
  179.       end
  180.  
  181.    )
  182.  
  183.   end
  184.  
  185.  
  186.  
  187.   local Library = Instance.new("ScreenGui")
  188.  
  189.   Library.Name = "Library"
  190.  
  191.   Library.Parent =  game.CoreGui
  192.  
  193.   Library.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  194.  
  195.  
  196.  
  197.   local uitoggled = false
  198.  
  199.   UserInputService.InputBegan:Connect(
  200.  
  201.    function(io, p)
  202.  
  203.       if io.KeyCode == Enum.KeyCode.RightControl then
  204.  
  205.          if uitoggled == false then
  206.  
  207.             Library.Enabled = false
  208.  
  209.             uitoggled = true
  210.  
  211.          else
  212.  
  213.             Library.Enabled = true
  214.  
  215.             uitoggled = false
  216.  
  217.          end
  218.  
  219.       end
  220.  
  221.    end
  222.  
  223.   )
  224.  
  225.  
  226.  
  227.   function VLib:Window(text, textgame, textcircle)
  228.  
  229.    local FirstTab = false
  230.  
  231.    local MainFrame = Instance.new("Frame")
  232.  
  233.    local MainCorner = Instance.new("UICorner")
  234.  
  235.    local LeftFrame = Instance.new("Frame")
  236.  
  237.    local LeftFrameCorner = Instance.new("UICorner")
  238.  
  239.    local MainTitle = Instance.new("TextLabel")
  240.  
  241.    local Circle = Instance.new("Frame")
  242.  
  243.    local CircleCorner = Instance.new("UICorner")
  244.  
  245.    local CircleName = Instance.new("TextLabel")
  246.  
  247.    local GameTitle = Instance.new("TextLabel")
  248.  
  249.    local TabHolder = Instance.new("Frame")
  250.  
  251.    local TabHoldLayout = Instance.new("UIListLayout")
  252.  
  253.    local RainbowLine = Instance.new("Frame")
  254.  
  255.    local RainbowLineCorner = Instance.new("UICorner")
  256.  
  257.    local ContainerHold = Instance.new("Folder")
  258.  
  259.    local DragFrame = Instance.new("Frame")
  260.  
  261.    local Glow = Instance.new("ImageLabel")
  262.  
  263.  
  264.  
  265.    MainFrame.Name = "MainFrame"
  266.  
  267.    MainFrame.Parent = Library
  268.  
  269.    MainFrame.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  270.  
  271.    MainFrame.Position = UDim2.new(0.5, -325, 0.5, -250)
  272.  
  273.    MainFrame.Size = UDim2.new(0, 650, 0, 500)
  274.  
  275.  
  276.  
  277.    MainCorner.CornerRadius = UDim.new(0, 5)
  278.  
  279.    MainCorner.Name = "MainCorner"
  280.  
  281.    MainCorner.Parent = MainFrame
  282.  
  283.  
  284.  
  285.    LeftFrame.Name = "LeftFrame"
  286.  
  287.    LeftFrame.Parent = MainFrame
  288.  
  289.    LeftFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  290.  
  291.    LeftFrame.Position = UDim2.new(-0.000674468291, 0, -0.000149806539, 0)
  292.  
  293.    LeftFrame.Size = UDim2.new(0, 190, 0, 500)
  294.  
  295.  
  296.  
  297.    LeftFrameCorner.CornerRadius = UDim.new(0, 5)
  298.  
  299.    LeftFrameCorner.Name = "LeftFrameCorner"
  300.  
  301.    LeftFrameCorner.Parent = LeftFrame
  302.  
  303.  
  304.  
  305.    MainTitle.Name = "MainTitle"
  306.  
  307.    MainTitle.Parent = LeftFrame
  308.  
  309.    MainTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  310.  
  311.    MainTitle.BackgroundTransparency = 1.000
  312.  
  313.    MainTitle.Position = UDim2.new(0.168, 0, 0.043, 0)
  314.  
  315.    MainTitle.Size = UDim2.new(0, 71, 0, 20)
  316.  
  317.    MainTitle.Font = Enum.Font.Gotham
  318.  
  319.    MainTitle.Text = text
  320.  
  321.    MainTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  322.  
  323.    MainTitle.TextSize = 25.000
  324.  
  325.    MainTitle.TextXAlignment = Enum.TextXAlignment.Left
  326.  
  327.  
  328.  
  329.  
  330.  
  331.    GameTitle.Name = "GameTitle"
  332.  
  333.    GameTitle.Parent = LeftFrame
  334.  
  335.    GameTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  336.  
  337.    GameTitle.BackgroundTransparency = 1.000
  338.  
  339.    GameTitle.Position = UDim2.new(0.168, 0, 0.089, 6)
  340.  
  341.    GameTitle.Size = UDim2.new(0, 71, 0, 20)
  342.  
  343.    GameTitle.Font = Enum.Font.Gotham
  344.  
  345.    GameTitle.Text = textgame
  346.  
  347.    GameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  348.  
  349.    GameTitle.TextSize = 17.000
  350.  
  351.    GameTitle.TextTransparency = 0.400
  352.  
  353.    GameTitle.TextXAlignment = Enum.TextXAlignment.Left
  354.  
  355.  
  356.  
  357.    TabHolder.Name = "TabHolder"
  358.  
  359.    TabHolder.Parent = LeftFrame
  360.  
  361.    TabHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  362.  
  363.    TabHolder.BackgroundTransparency = 1.000
  364.  
  365.    TabHolder.Position = UDim2.new(0.0806451589, 0, 0.189360261, 0)
  366.  
  367.    TabHolder.Size = UDim2.new(0, 159, 0, 309)
  368.  
  369.  
  370.  
  371.    TabHoldLayout.Name = "TabHoldLayout"
  372.  
  373.    TabHoldLayout.Parent = TabHolder
  374.  
  375.    TabHoldLayout.SortOrder = Enum.SortOrder.LayoutOrder
  376.  
  377.    TabHoldLayout.Padding = UDim.new(0,5)
  378.  
  379.  
  380.  
  381.    ContainerHold.Name = "ContainerHold"
  382.  
  383.    ContainerHold.Parent = MainFrame
  384.  
  385.  
  386.  
  387.    DragFrame.Name = "DragFrame"
  388.  
  389.    DragFrame.Parent = MainFrame
  390.  
  391.    DragFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  392.  
  393.    DragFrame.BackgroundTransparency = 1.000
  394.  
  395.    DragFrame.Position = UDim2.new(0.30130294, 0, 0.00253164559, 0)
  396.  
  397.    DragFrame.Size = UDim2.new(0, 428, 0, 21)
  398.  
  399.  
  400.  
  401.    Glow.Name = "Glow"
  402.  
  403.    Glow.Parent = LeftFrame
  404.  
  405.    Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  406.  
  407.    Glow.BackgroundTransparency = 1.000
  408.  
  409.    Glow.BorderSizePixel = 0
  410.  
  411.    Glow.Position = UDim2.new(0, -15, 0, -15)
  412.  
  413.    Glow.Size = UDim2.new(1, 30, 1, 30)
  414.  
  415.    Glow.ZIndex = 0
  416.  
  417.    Glow.Image = "rbxassetid://4996891970"
  418.  
  419.    Glow.ImageColor3 = Color3.fromRGB(15, 15, 15)
  420.  
  421.    Glow.ScaleType = Enum.ScaleType.Slice
  422.  
  423.    Glow.SliceCenter = Rect.new(20, 20, 280, 280)
  424.  
  425.  
  426.  
  427.    MakeDraggable(MainFrame, MainFrame)
  428.  
  429.  
  430.  
  431.    function VLib:Notification(textdesc)
  432.  
  433.       local NotificationHold = Instance.new("TextButton")
  434.  
  435.       local NotificationFrame = Instance.new("Frame")
  436.  
  437.       local OkayBtn = Instance.new("TextButton")
  438.  
  439.       local OkayBtnCorner = Instance.new("UICorner")
  440.  
  441.       local OkayBtnTitle = Instance.new("TextLabel")
  442.  
  443.       local NotificationTitle = Instance.new("TextLabel")
  444.  
  445.       local NotificationDesc = Instance.new("TextLabel")
  446.  
  447.  
  448.  
  449.       NotificationHold.Name = "NotificationHold"
  450.  
  451.       NotificationHold.Parent = MainFrame
  452.  
  453.       NotificationHold.BackgroundColor3 = Color3.fromRGB(125, 125, 125)
  454.  
  455.       NotificationHold.BackgroundTransparency = 0.700
  456.  
  457.       NotificationHold.BorderSizePixel = 0
  458.  
  459.       NotificationHold.Size = UDim2.new(0, 650, 0, 500)
  460.  
  461.       NotificationHold.AutoButtonColor = false
  462.  
  463.       NotificationHold.Font = Enum.Font.SourceSans
  464.  
  465.       NotificationHold.Text = ""
  466.  
  467.       NotificationHold.TextColor3 = Color3.fromRGB(0, 0, 0)
  468.  
  469.       NotificationHold.TextSize = 14.000
  470.  
  471.  
  472.  
  473.       TweenService:Create(
  474.  
  475.          NotificationHold,
  476.  
  477.          TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  478.  
  479.          {BackgroundTransparency = 0.7}
  480.  
  481.       ):Play()
  482.  
  483.       wait(0.4)
  484.  
  485.  
  486.  
  487.       NotificationFrame.Name = "NotificationFrame"
  488.  
  489.       NotificationFrame.Parent = NotificationHold
  490.  
  491.       NotificationFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  492.  
  493.       NotificationFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  494.  
  495.       NotificationFrame.BorderSizePixel = 0
  496.  
  497.       NotificationFrame.ClipsDescendants = true
  498.  
  499.       NotificationFrame.Position = UDim2.new(0.5, 0, 0.498432577, 0)
  500.  
  501.       NotificationFrame.Size = UDim2.new(0, 0, 0, 0)             
  502.  
  503.       NotificationFrame:TweenSize(UDim2.new(0, 305,0, 283), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  504.  
  505.  
  506.  
  507.       OkayBtn.Name = "OkayBtn"
  508.  
  509.       OkayBtn.Parent = NotificationFrame
  510.  
  511.       OkayBtn.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  512.  
  513.       OkayBtn.Position = UDim2.new(0.171131134, 0, 0.759717345, 0)
  514.  
  515.       OkayBtn.Size = UDim2.new(0, 200, 0, 42)
  516.  
  517.       OkayBtn.AutoButtonColor = false
  518.  
  519.       OkayBtn.Font = Enum.Font.SourceSans
  520.  
  521.       OkayBtn.Text = ""
  522.  
  523.       OkayBtn.TextColor3 = Color3.fromRGB(0, 0, 0)
  524.  
  525.       OkayBtn.TextSize = 14.000
  526.  
  527.  
  528.  
  529.       OkayBtnCorner.CornerRadius = UDim.new(0, 5)
  530.  
  531.       OkayBtnCorner.Name = "OkayBtnCorner"
  532.  
  533.       OkayBtnCorner.Parent = OkayBtn
  534.  
  535.  
  536.  
  537.       OkayBtnTitle.Name = "OkayBtnTitle"
  538.  
  539.       OkayBtnTitle.Parent = OkayBtn
  540.  
  541.       OkayBtnTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  542.  
  543.       OkayBtnTitle.BackgroundTransparency = 1.000
  544.  
  545.       OkayBtnTitle.Size = UDim2.new(0, 200, 0, 42)
  546.  
  547.       OkayBtnTitle.Text = "OK!"
  548.  
  549.       OkayBtnTitle.Font = Enum.Font.Gotham
  550.  
  551.       OkayBtnTitle.TextColor3 = Color3.fromRGB(202, 202, 202)
  552.  
  553.       OkayBtnTitle.TextSize = 24.000
  554.  
  555.  
  556.  
  557.       NotificationTitle.Name = "NotificationTitle"
  558.  
  559.       NotificationTitle.Parent = NotificationFrame
  560.  
  561.       NotificationTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  562.  
  563.       NotificationTitle.BackgroundTransparency = 1.000
  564.  
  565.       NotificationTitle.Position = UDim2.new(0.0559394211, 0, 0.0652336925, 0)
  566.  
  567.       NotificationTitle.Size = UDim2.new(0, 272, 0, 26)
  568.  
  569.       NotificationTitle.ZIndex = 3
  570.  
  571.       NotificationTitle.Font = Enum.Font.Gotham
  572.  
  573.       NotificationTitle.Text = "Notification"
  574.  
  575.       NotificationTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  576.  
  577.       NotificationTitle.TextSize = 24.000
  578.  
  579.  
  580.  
  581.       NotificationDesc.Name = "NotificationDesc"
  582.  
  583.       NotificationDesc.Parent = NotificationFrame
  584.  
  585.       NotificationDesc.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  586.  
  587.       NotificationDesc.BackgroundTransparency = 1.000
  588.  
  589.       NotificationDesc.Position = UDim2.new(0.0670000017, 0, 0.218999997, 0)
  590.  
  591.       NotificationDesc.Size = UDim2.new(0, 274, 0, 146)
  592.  
  593.       NotificationDesc.Font = Enum.Font.Gotham
  594.  
  595.       NotificationDesc.Text = textdesc
  596.  
  597.       NotificationDesc.TextColor3 = Color3.fromRGB(255, 255, 255)
  598.  
  599.       NotificationDesc.TextSize = 20.000
  600.  
  601.       NotificationDesc.TextWrapped = true
  602.  
  603.       NotificationDesc.TextXAlignment = Enum.TextXAlignment.Center
  604.  
  605.       NotificationDesc.TextYAlignment = Enum.TextYAlignment.Top
  606.  
  607.  
  608.  
  609.       OkayBtn.MouseEnter:Connect(function()
  610.  
  611.          TweenService:Create(
  612.  
  613.             OkayBtn,
  614.  
  615.             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  616.  
  617.             {BackgroundColor3 = Color3.fromRGB(37,37,37)}
  618.  
  619.          ):Play()
  620.  
  621.       end)
  622.  
  623.  
  624.  
  625.       OkayBtn.MouseLeave:Connect(function()
  626.  
  627.          TweenService:Create(
  628.  
  629.             OkayBtn,
  630.  
  631.             TweenInfo.new(.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  632.  
  633.             {BackgroundColor3 = Color3.fromRGB(34, 34, 34)}
  634.  
  635.          ):Play()
  636.  
  637.       end)
  638.  
  639.  
  640.  
  641.       OkayBtn.MouseButton1Click:Connect(function()
  642.  
  643.          NotificationFrame:TweenSize(UDim2.new(0, 0,0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  644.  
  645.  
  646.  
  647.          wait(0.4)
  648.  
  649.  
  650.  
  651.          TweenService:Create(
  652.  
  653.             NotificationHold,
  654.  
  655.             TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  656.  
  657.             {BackgroundTransparency = 1}
  658.  
  659.          ):Play()
  660.  
  661.  
  662.  
  663.          wait(.3)
  664.  
  665.  
  666.  
  667.          NotificationHold:Destroy()
  668.  
  669.       end)
  670.  
  671.    end
  672.  
  673.  
  674.  
  675.    coroutine.wrap(
  676.  
  677.       function()
  678.  
  679.          while wait() do
  680.  
  681.          end
  682.  
  683.       end
  684.  
  685.    )()
  686.  
  687.    local Tabs = {}
  688.  
  689.    function Tabs:Tab(text)
  690.  
  691.       local Tab = Instance.new("TextButton")
  692.  
  693.       local TabCorner = Instance.new("UICorner")
  694.  
  695.       local Title = Instance.new("TextLabel")
  696.  
  697.       local UIGradient = Instance.new('UIGradient')
  698.  
  699.       Tab.Name = "Tab"
  700.  
  701.       Tab.Parent = TabHolder
  702.  
  703.       Tab.BackgroundColor3 = Color3.fromRGB(255,255,255)
  704.  
  705.       Tab.Size = UDim2.new(0, 170, 0, 35)
  706.  
  707.       Tab.AutoButtonColor = false
  708.  
  709.       Tab.Font = Enum.Font.SourceSans
  710.  
  711.       Tab.Text = ""
  712.  
  713.       Tab.TextColor3 = Color3.fromRGB(0, 0, 0)
  714.  
  715.       Tab.TextSize = 15.000
  716.  
  717.       Tab.BackgroundTransparency = 1
  718.  
  719.  
  720.  
  721.       UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(121,9,112
  722.  
  723. )), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(27,50,255))}
  724.  
  725.       UIGradient.Parent = Tab
  726.  
  727.  
  728.  
  729.  
  730.  
  731.       TabCorner.CornerRadius = UDim.new(0, 3)
  732.  
  733.       TabCorner.Name = "TabCorner"
  734.  
  735.       TabCorner.Parent = Tab
  736.  
  737.  
  738.  
  739.       Title.Name = "Title"
  740.  
  741.       Title.Parent = Tab
  742.  
  743.       Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  744.  
  745.       Title.BackgroundTransparency = 1.000
  746.  
  747.       Title.Position = UDim2.new(0.0566037744, 0, 0.1, 0)
  748.  
  749.       Title.Size = UDim2.new(0, 150, 0, 29)
  750.  
  751.       Title.Font = Enum.Font.Gotham
  752.  
  753.       Title.Text = text
  754.  
  755.       Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  756.  
  757.       Title.TextSize = 17.000
  758.  
  759.       Title.TextXAlignment = Enum.TextXAlignment.Left
  760.  
  761.  
  762.  
  763.       local Container = Instance.new("ScrollingFrame")
  764.  
  765.       local ContainerLayout = Instance.new("UIListLayout")
  766.  
  767.  
  768.  
  769.       Container.Name = "Container"
  770.  
  771.       Container.Parent = ContainerHold
  772.  
  773.       Container.Active = true
  774.  
  775.       Container.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  776.  
  777.       Container.BackgroundTransparency = 1.000
  778.  
  779.       Container.BorderSizePixel = 0
  780.  
  781.       Container.Position = UDim2.new(0.34, 0, 0.0506329127, 0)
  782.  
  783.       Container.Size = UDim2.new(0, 420, 0, 450)
  784.  
  785.       Container.ScrollBarThickness = 5
  786.  
  787.       Container.CanvasSize = UDim2.new(0, 0, 0, 0)
  788.  
  789.       Container.Visible = false
  790.  
  791.       Container.ScrollBarImageColor3 = Color3.fromRGB(100, 100, 100)
  792.  
  793.  
  794.  
  795.       ContainerLayout.Name = "ContainerLayout"
  796.  
  797.       ContainerLayout.Parent = Container
  798.  
  799.       ContainerLayout.SortOrder = Enum.SortOrder.LayoutOrder
  800.  
  801.       ContainerLayout.Padding = UDim.new(0, 15)
  802.  
  803.  
  804.  
  805.       if FirstTab == false then
  806.  
  807.          FirstTab = true
  808.  
  809.          Tab.BackgroundTransparency = 0
  810.  
  811.          Container.Visible = true
  812.  
  813.       end
  814.  
  815.       Tab.MouseButton1Click:Connect(
  816.  
  817.          function()
  818.  
  819.             for i, v in next, ContainerHold:GetChildren() do
  820.  
  821.                if v.Name == "Container" then
  822.  
  823.                   v.Visible = false
  824.  
  825.                end
  826.  
  827.             end
  828.  
  829.  
  830.  
  831.             for i, v in next, TabHolder:GetChildren() do
  832.  
  833.                if v.ClassName == "TextButton" then
  834.  
  835.                   TweenService:Create(
  836.  
  837.                      v,
  838.  
  839.                      TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  840.  
  841.                      {BackgroundTransparency = 1}
  842.  
  843.                   ):Play()
  844.  
  845.                   TweenService:Create(
  846.  
  847.                      Tab,
  848.  
  849.                      TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  850.  
  851.                      {BackgroundTransparency = 0}
  852.  
  853.                   ):Play()
  854.  
  855.                end
  856.  
  857.             end
  858.  
  859.             Container.Visible = true
  860.  
  861.          end
  862.  
  863.       )
  864.  
  865.       local ContainerItems = {}
  866.  
  867.       function ContainerItems:Button(text, callback)
  868.  
  869.          local Button = Instance.new("TextButton")
  870.  
  871.          local ButtonCorner = Instance.new("UICorner")
  872.  
  873.  
  874.  
  875.          Button.Name = "Button"
  876.  
  877.          Button.Parent = Container
  878.  
  879.          Button.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  880.  
  881.          Button.Size = UDim2.new(0, 405, 0, 40)
  882.  
  883.          Button.AutoButtonColor = false
  884.  
  885.          Button.Font = Enum.Font.Gotham
  886.  
  887.          Button.TextColor3 = Color3.fromRGB(255, 255, 255)
  888.  
  889.          Button.TextSize = 15.000
  890.  
  891.          Button.Text = text
  892.  
  893.  
  894.  
  895.          ButtonCorner.CornerRadius = UDim.new(0, 5)
  896.  
  897.          ButtonCorner.Name = "ButtonCorner"
  898.  
  899.          ButtonCorner.Parent = Button
  900.  
  901.  
  902.  
  903.          Button.MouseEnter:Connect(
  904.  
  905.             function()
  906.  
  907.                TweenService:Create(
  908.  
  909.                   Button,
  910.  
  911.                   TweenInfo.new(.2, Enum.EasingStyle.Quad),
  912.  
  913.                   {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
  914.  
  915.                ):Play()
  916.  
  917.             end
  918.  
  919.          )
  920.  
  921.          Button.MouseLeave:Connect(
  922.  
  923.             function()
  924.  
  925.                TweenService:Create(
  926.  
  927.                   Button,
  928.  
  929.                   TweenInfo.new(.2, Enum.EasingStyle.Quad),
  930.  
  931.                   {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
  932.  
  933.                ):Play()
  934.  
  935.             end
  936.  
  937.          )
  938.  
  939.  
  940.  
  941.          Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  942.  
  943.  
  944.  
  945.          Button.MouseButton1Click:Connect(
  946.  
  947.             function()
  948.  
  949.                pcall(callback)
  950.  
  951.                Button.TextSize = 0
  952.  
  953.                TweenService:Create(Button, TweenInfo.new(.2, Enum.EasingStyle.Quad), {TextSize = 17}):Play()
  954.  
  955.                wait(.2)
  956.  
  957.                TweenService:Create(Button, TweenInfo.new(.2, Enum.EasingStyle.Quad), {TextSize = 14}):Play()
  958.  
  959.             end
  960.  
  961.          )
  962.  
  963.       end
  964.  
  965.       function ContainerItems:Toggle(text,Default,callback)
  966.  
  967.          local Toggled = Default or false
  968.  
  969.          local ValueToggle = ValueTogglea or false
  970.  
  971.          local Toggle = Instance.new("TextButton")
  972.  
  973.          local ToggleCorner = Instance.new("UICorner")
  974.  
  975.          local Title = Instance.new("TextLabel")
  976.  
  977.          local ToggleFrame = Instance.new("Frame")
  978.  
  979.          local ToggleFrameCorner = Instance.new("UICorner")
  980.  
  981.          local ToggleFrameRainbow = Instance.new("Frame")
  982.  
  983.          local ToggleFrameRainbowCorner = Instance.new("UICorner")
  984.  
  985.          local ToggleDot = Instance.new("Frame")
  986.  
  987.          local ToggleDotCorner = Instance.new("UICorner")
  988.  
  989.          local UIGradient_2 = Instance.new('UIGradient')
  990.  
  991.          Toggle.Name = "Toggle"
  992.  
  993.          Toggle.Parent = Container
  994.  
  995.          Toggle.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  996.  
  997.          Toggle.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  998.  
  999.          Toggle.Size = UDim2.new(0, 405, 0, 40)
  1000.  
  1001.          Toggle.AutoButtonColor = false
  1002.  
  1003.          Toggle.Font = Enum.Font.Gotham
  1004.  
  1005.          Toggle.Text = ""
  1006.  
  1007.          Toggle.TextColor3 = Color3.fromRGB(255, 255, 255)
  1008.  
  1009.          Toggle.TextSize = 14.000
  1010.  
  1011.  
  1012.  
  1013.          ToggleCorner.CornerRadius = UDim.new(0, 5)
  1014.  
  1015.          ToggleCorner.Name = "ToggleCorner"
  1016.  
  1017.          ToggleCorner.Parent = Toggle
  1018.  
  1019.  
  1020.  
  1021.          Title.Name = "Title"
  1022.  
  1023.          Title.Parent = Toggle
  1024.  
  1025.          Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1026.  
  1027.          Title.BackgroundTransparency = 1.000
  1028.  
  1029.          Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  1030.  
  1031.          Title.Size = UDim2.new(0, 430, 0, 40)
  1032.  
  1033.          Title.Font = Enum.Font.Gotham
  1034.  
  1035.          Title.Text = text
  1036.  
  1037.          Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1038.  
  1039.          Title.TextSize = 15.000
  1040.  
  1041.          Title.TextXAlignment = Enum.TextXAlignment.Left
  1042.  
  1043.  
  1044.  
  1045.          ToggleFrame.Name = "ToggleFrame"
  1046.  
  1047.          ToggleFrame.Parent = Toggle
  1048.  
  1049.          ToggleFrame.BackgroundColor3 = Color3.fromRGB(22, 23, 27)
  1050.  
  1051.          ToggleFrame.Position = UDim2.new(0.88, 0, 0.21, 0)
  1052.  
  1053.          ToggleFrame.Size = UDim2.new(0, 40, 0, 22)
  1054.  
  1055.  
  1056.  
  1057.          ToggleFrameCorner.CornerRadius = UDim.new(1, 0)
  1058.  
  1059.          ToggleFrameCorner.Name = "ToggleFrameCorner"
  1060.  
  1061.          ToggleFrameCorner.Parent = ToggleFrame
  1062.  
  1063.  
  1064.  
  1065.          ToggleFrameRainbow.Name = "ToggleFrameRainbow"
  1066.  
  1067.          ToggleFrameRainbow.Parent = ToggleFrame
  1068.  
  1069.          ToggleFrameRainbow.BackgroundColor3 = Color3.fromRGB(27,27,27)
  1070.  
  1071.          ToggleFrameRainbow.BackgroundTransparency = 1.000
  1072.  
  1073.          ToggleFrameRainbow.Position = UDim2.new(-0.0198377371, 0, 0.00601506233, 0)
  1074.  
  1075.          ToggleFrameRainbow.Size = UDim2.new(0, 40, 0, 22)
  1076.  
  1077.  
  1078.  
  1079.          ToggleFrameRainbowCorner.CornerRadius = UDim.new(1, 0)
  1080.  
  1081.          ToggleFrameRainbowCorner.Name = "ToggleFrameRainbowCorner"
  1082.  
  1083.          ToggleFrameRainbowCorner.Parent = ToggleFrameRainbow
  1084.  
  1085.  
  1086.  
  1087.          ToggleDot.Name = "ToggleDot"
  1088.  
  1089.          ToggleDot.Parent = ToggleFrameRainbow
  1090.  
  1091.          ToggleDot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1092.  
  1093.          ToggleDot.Position = UDim2.new(0.104999997, -3, 0.289000005, -4)
  1094.  
  1095.          ToggleDot.Size = UDim2.new(0, 16, 0, 16)
  1096.  
  1097.  
  1098.  
  1099.          UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  1100.  
  1101.          UIGradient_2.Parent = ToggleDot
  1102.  
  1103.  
  1104.  
  1105.          ToggleDotCorner.CornerRadius = UDim.new(1, 0)
  1106.  
  1107.          ToggleDotCorner.Name = "ToggleDotCorner"
  1108.  
  1109.          ToggleDotCorner.Parent = ToggleDot
  1110.  
  1111.  
  1112.  
  1113.          Toggle.MouseEnter:Connect(
  1114.  
  1115.             function()
  1116.  
  1117.                TweenService:Create(
  1118.  
  1119.                   Toggle,
  1120.  
  1121.                   TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1122.  
  1123.                   {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
  1124.  
  1125.                ):Play()
  1126.  
  1127.  
  1128.  
  1129.             end
  1130.  
  1131.          )
  1132.  
  1133.          Toggle.MouseLeave:Connect(
  1134.  
  1135.             function()
  1136.  
  1137.                TweenService:Create(
  1138.  
  1139.                   Toggle,
  1140.  
  1141.                   TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1142.  
  1143.                   {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
  1144.  
  1145.                ):Play()
  1146.  
  1147.             end
  1148.  
  1149.          )
  1150.  
  1151.  
  1152.  
  1153.          if Toggled == true then
  1154.  
  1155.           UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  1156.  
  1157.  
  1158.  
  1159.           TweenService:Create(
  1160.  
  1161.              ToggleFrameRainbow,
  1162.  
  1163.              TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1164.  
  1165.              {BackgroundTransparency = 0}
  1166.  
  1167.           ):Play()
  1168.  
  1169.           TweenService:Create(
  1170.  
  1171.              ToggleDot,
  1172.  
  1173.              TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1174.  
  1175.              {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
  1176.  
  1177.           ):Play()
  1178.  
  1179.           pcall(callback, Toggled)
  1180.  
  1181.        else
  1182.  
  1183.           ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(46, 255, 255)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(228, 92, 255))}
  1184.  
  1185.  
  1186.  
  1187.           TweenService:Create(
  1188.  
  1189.              ToggleFrameRainbow,
  1190.  
  1191.              TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1192.  
  1193.              {BackgroundTransparency = 1}
  1194.  
  1195.           ):Play()
  1196.  
  1197.           TweenService:Create(
  1198.  
  1199.              ToggleDot,
  1200.  
  1201.              TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1202.  
  1203.              {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
  1204.  
  1205.           ):Play()
  1206.  
  1207.        end
  1208.  
  1209.  
  1210.  
  1211.          Toggle.MouseButton1Click:Connect(
  1212.  
  1213.             function()
  1214.  
  1215.                if Toggled == false then
  1216.  
  1217.                   UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  1218.  
  1219.  
  1220.  
  1221.                   TweenService:Create(
  1222.  
  1223.                      ToggleFrameRainbow,
  1224.  
  1225.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1226.  
  1227.                      {BackgroundTransparency = 0}
  1228.  
  1229.                   ):Play()
  1230.  
  1231.                   TweenService:Create(
  1232.  
  1233.                      ToggleDot,
  1234.  
  1235.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1236.  
  1237.                      {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
  1238.  
  1239.                   ):Play()
  1240.  
  1241.                else
  1242.  
  1243.                   UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  1244.  
  1245.  
  1246.  
  1247.                   TweenService:Create(
  1248.  
  1249.                      ToggleFrameRainbow,
  1250.  
  1251.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1252.  
  1253.                      {BackgroundTransparency = 1}
  1254.  
  1255.                   ):Play()
  1256.  
  1257.                   TweenService:Create(
  1258.  
  1259.                      ToggleDot,
  1260.  
  1261.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1262.  
  1263.                      {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
  1264.  
  1265.                   ):Play()
  1266.  
  1267.                end
  1268.  
  1269.                Toggled = not Toggled
  1270.  
  1271.                pcall(callback, Toggled)
  1272.  
  1273.             end
  1274.  
  1275.          )
  1276.  
  1277.  
  1278.  
  1279.          Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1280.  
  1281.       end
  1282.  
  1283.       function ContainerItems:Slider(text, min, max, start, callback)
  1284.  
  1285.          local dragging = false
  1286.  
  1287.          local Slider = Instance.new("TextButton")
  1288.  
  1289.          local Title = Instance.new("TextLabel")
  1290.  
  1291.          local SliderFrame = Instance.new("Frame")
  1292.  
  1293.          local SliderFrameCorner = Instance.new("UICorner")
  1294.  
  1295.          local SliderIndicator = Instance.new("Frame")
  1296.  
  1297.          local SliderIndicatorCorner = Instance.new("UICorner")
  1298.  
  1299.          local SliderCorner = Instance.new("UICorner")
  1300.  
  1301.          local Value = Instance.new("TextLabel")
  1302.  
  1303.          local UIGradient_3 = Instance.new('UIGradient')
  1304.  
  1305.  
  1306.  
  1307.          Slider.Name = "Slider"
  1308.  
  1309.          Slider.Parent = Container
  1310.  
  1311.          Slider.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  1312.  
  1313.          Slider.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  1314.  
  1315.          Slider.Size = UDim2.new(0, 405, 0, 49)
  1316.  
  1317.          Slider.AutoButtonColor = false
  1318.  
  1319.          Slider.Font = Enum.Font.Gotham
  1320.  
  1321.          Slider.Text = ""
  1322.  
  1323.          Slider.TextColor3 = Color3.fromRGB(255, 255, 255)
  1324.  
  1325.          Slider.TextSize = 14.000
  1326.  
  1327.  
  1328.  
  1329.          Title.Name = "Title"
  1330.  
  1331.          Title.Parent = Slider
  1332.  
  1333.          Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1334.  
  1335.          Title.BackgroundTransparency = 1.000
  1336.  
  1337.          Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  1338.  
  1339.          Title.Size = UDim2.new(0, 192, 0, 28)
  1340.  
  1341.          Title.Font = Enum.Font.Gotham
  1342.  
  1343.          Title.Text = text
  1344.  
  1345.          Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1346.  
  1347.          Title.TextSize = 14.000
  1348.  
  1349.          Title.TextXAlignment = Enum.TextXAlignment.Left
  1350.  
  1351.  
  1352.  
  1353.          SliderFrame.Name = "SliderFrame"
  1354.  
  1355.          SliderFrame.Parent = Slider
  1356.  
  1357.          SliderFrame.BackgroundColor3 = Color3.fromRGB(29, 29, 29)
  1358.  
  1359.          SliderFrame.Position = UDim2.new(0.0223324299, 0, 0.563266039, 0)
  1360.  
  1361.          SliderFrame.Size = UDim2.new(0, 384, 0, 11)
  1362.  
  1363.  
  1364.  
  1365.          SliderFrameCorner.Name = "SliderFrameCorner"
  1366.  
  1367.          SliderFrameCorner.Parent = SliderFrame
  1368.  
  1369.  
  1370.  
  1371.          SliderIndicator.Name = "SliderIndicator"
  1372.  
  1373.          SliderIndicator.Parent = SliderFrame
  1374.  
  1375.          SliderIndicator.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1376.  
  1377.          SliderIndicator.BorderSizePixel = 0
  1378.  
  1379.          SliderIndicator.Position = UDim2.new(-0.00260408712, 0, 0.0363603085, 0)
  1380.  
  1381.          SliderIndicator.Size = UDim2.new((start or 0) / max, 0, 0, 11)
  1382.  
  1383.  
  1384.  
  1385.          UIGradient_3.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  1386.  
  1387.          UIGradient_3.Parent = SliderIndicator
  1388.  
  1389.  
  1390.  
  1391.          SliderIndicatorCorner.Name = "SliderIndicatorCorner"
  1392.  
  1393.          SliderIndicatorCorner.Parent = SliderIndicator
  1394.  
  1395.  
  1396.  
  1397.          SliderCorner.CornerRadius = UDim.new(0, 6)
  1398.  
  1399.          SliderCorner.Name = "SliderCorner"
  1400.  
  1401.          SliderCorner.Parent = Slider
  1402.  
  1403.  
  1404.  
  1405.          Value.Name = "Value"
  1406.  
  1407.          Value.Parent = Slider
  1408.  
  1409.          Value.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1410.  
  1411.          Value.BackgroundTransparency = 1.000
  1412.  
  1413.          Value.Position = UDim2.new(0.496277869, 0, 0, 0)
  1414.  
  1415.          Value.Size = UDim2.new(0, 192, 0, 28)
  1416.  
  1417.          Value.Font = Enum.Font.Gotham
  1418.  
  1419.          Value.Text = tostring(start and math.floor((start / max) * (max - min) + min) or 0)
  1420.  
  1421.          Value.TextColor3 = Color3.fromRGB(255, 255, 255)
  1422.  
  1423.          Value.TextSize = 14.000
  1424.  
  1425.          Value.TextXAlignment = Enum.TextXAlignment.Right
  1426.  
  1427.  
  1428.  
  1429.          local function slide(input)
  1430.  
  1431.             local pos =
  1432.  
  1433.                UDim2.new(
  1434.  
  1435.                   math.clamp((input.Position.X - SliderFrame.AbsolutePosition.X) / SliderFrame.AbsoluteSize.X, 0, 1),
  1436.  
  1437.                   0,
  1438.  
  1439.                   0,
  1440.  
  1441.                   11
  1442.  
  1443.                )
  1444.  
  1445.             SliderIndicator:TweenSize(pos, Enum.EasingDirection.Out, Enum.EasingStyle.Quart, 0.3, true)
  1446.  
  1447.             local val = math.floor(((pos.X.Scale * max) / max) * (max - min) + min)
  1448.  
  1449.             Value.Text = tostring(val)
  1450.  
  1451.             pcall(callback, val)
  1452.  
  1453.          end
  1454.  
  1455.  
  1456.  
  1457.          SliderFrame.InputBegan:Connect(
  1458.  
  1459.             function(input)
  1460.  
  1461.                if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1462.  
  1463.                   slide(input)
  1464.  
  1465.                   dragging = true
  1466.  
  1467.                end
  1468.  
  1469.             end
  1470.  
  1471.          )
  1472.  
  1473.  
  1474.  
  1475.          SliderFrame.InputEnded:Connect(
  1476.  
  1477.             function(input)
  1478.  
  1479.                if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1480.  
  1481.                   dragging = false
  1482.  
  1483.                end
  1484.  
  1485.             end
  1486.  
  1487.          )
  1488.  
  1489.  
  1490.  
  1491.          UserInputService.InputChanged:Connect(
  1492.  
  1493.             function(input)
  1494.  
  1495.                if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
  1496.  
  1497.                   slide(input)
  1498.  
  1499.                end
  1500.  
  1501.             end
  1502.  
  1503.          )
  1504.  
  1505.  
  1506.  
  1507.          Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1508.  
  1509.  
  1510.  
  1511.       end
  1512.  
  1513.       function ContainerItems:Dropdown(text, list, callback)
  1514.  
  1515.          local dropfunc = {}
  1516.  
  1517.          local DropToggled = false
  1518.  
  1519.          local FrameSize = 0
  1520.  
  1521.          local ItemCount = 0
  1522.  
  1523.  
  1524.  
  1525.          local Dropdown = Instance.new("TextButton")
  1526.  
  1527.          local Title = Instance.new("TextLabel")
  1528.  
  1529.          local DropdownCorner = Instance.new("UICorner")
  1530.  
  1531.          local Arrow = Instance.new("ImageLabel")
  1532.  
  1533.  
  1534.  
  1535.          Dropdown.Name = "Dropdown"
  1536.  
  1537.          Dropdown.Parent = Container
  1538.  
  1539.          Dropdown.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  1540.  
  1541.          Dropdown.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  1542.  
  1543.          Dropdown.Size = UDim2.new(0, 405, 0, 45)
  1544.  
  1545.          Dropdown.AutoButtonColor = false
  1546.  
  1547.          Dropdown.Font = Enum.Font.Gotham
  1548.  
  1549.          Dropdown.Text = ""
  1550.  
  1551.          Dropdown.TextColor3 = Color3.fromRGB(255, 255, 255)
  1552.  
  1553.          Dropdown.TextSize = 15.000
  1554.  
  1555.  
  1556.  
  1557.          Title.Name = "Title"
  1558.  
  1559.          Title.Parent = Dropdown
  1560.  
  1561.          Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1562.  
  1563.          Title.BackgroundTransparency = 1.000
  1564.  
  1565.          Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  1566.  
  1567.          Title.Size = UDim2.new(0, 192, 0, 40)
  1568.  
  1569.          Title.Font = Enum.Font.Gotham
  1570.  
  1571.          Title.Text = text
  1572.  
  1573.          Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1574.  
  1575.          Title.TextSize = 15.000
  1576.  
  1577.          Title.TextXAlignment = Enum.TextXAlignment.Left
  1578.  
  1579.  
  1580.  
  1581.          DropdownCorner.CornerRadius = UDim.new(0, 6)
  1582.  
  1583.          DropdownCorner.Name = "DropdownCorner"
  1584.  
  1585.          DropdownCorner.Parent = Dropdown
  1586.  
  1587.  
  1588.  
  1589.          Arrow.Name = "Arrow"
  1590.  
  1591.          Arrow.Parent = Dropdown
  1592.  
  1593.          Arrow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1594.  
  1595.          Arrow.BackgroundTransparency = 1.000
  1596.  
  1597.          Arrow.Position = UDim2.new(0.9, 0, 0.2, 0)
  1598.  
  1599.          Arrow.Size = UDim2.new(0, 27, 0, 27)
  1600.  
  1601.          Arrow.Image = "http://www.roblox.com/asset/?id=6034818372"
  1602.  
  1603.  
  1604.  
  1605.          local DropdownFrame = Instance.new("Frame")
  1606.  
  1607.          local DropdownFrameCorner = Instance.new("UICorner")
  1608.  
  1609.          local DropdownHolder = Instance.new("ScrollingFrame")
  1610.  
  1611.          local DropdownItemLayout = Instance.new("UIListLayout")
  1612.  
  1613.          local DropdownItemHolder = Instance.new("UIPadding")
  1614.  
  1615.  
  1616.  
  1617.          DropdownFrame.Name = "DropdownFrame"
  1618.  
  1619.          DropdownFrame.Parent = Container
  1620.  
  1621.          DropdownFrame.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  1622.  
  1623.          DropdownFrame.BorderSizePixel = 0
  1624.  
  1625.          DropdownFrame.Position = UDim2.new(0.334374994, 0, 0.604166687, 0)
  1626.  
  1627.          DropdownFrame.Size = UDim2.new(0, 403, 0, 0)
  1628.  
  1629.          DropdownFrame.Visible = false
  1630.  
  1631.  
  1632.  
  1633.          DropdownFrameCorner.Name = "DropdownFrameCorner"
  1634.  
  1635.          DropdownFrameCorner.Parent = DropdownFrame
  1636.  
  1637.  
  1638.  
  1639.          DropdownHolder.Name = "DropdownHolder"
  1640.  
  1641.          DropdownHolder.Parent = DropdownFrame
  1642.  
  1643.          DropdownHolder.Active = true
  1644.  
  1645.          DropdownHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1646.  
  1647.          DropdownHolder.BackgroundTransparency = 1.000
  1648.  
  1649.          DropdownHolder.BorderSizePixel = 0
  1650.  
  1651.          DropdownHolder.Position = UDim2.new(0.0263156947, 0, 0.00326599111, 0)
  1652.  
  1653.          DropdownHolder.Size = UDim2.new(0, 386, 0, 0)
  1654.  
  1655.          DropdownHolder.ScrollBarThickness = 3
  1656.  
  1657.          DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, 0)
  1658.  
  1659.          DropdownHolder.ScrollBarImageColor3 = Color3.fromRGB(48, 48, 48)
  1660.  
  1661.  
  1662.  
  1663.          DropdownItemLayout.Name = "DropdownItemLayout"
  1664.  
  1665.          DropdownItemLayout.Parent = DropdownHolder
  1666.  
  1667.          DropdownItemLayout.SortOrder = Enum.SortOrder.LayoutOrder
  1668.  
  1669.          DropdownItemLayout.Padding = UDim.new(0, 5)
  1670.  
  1671.  
  1672.  
  1673.          DropdownItemHolder.Name = "DropdownItemHolder"
  1674.  
  1675.          DropdownItemHolder.Parent = DropdownHolder
  1676.  
  1677.          DropdownItemHolder.PaddingBottom = UDim.new(0, 5)
  1678.  
  1679.          DropdownItemHolder.PaddingTop = UDim.new(0, 5)
  1680.  
  1681.  
  1682.  
  1683.          Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1684.  
  1685.  
  1686.  
  1687.          Dropdown.MouseEnter:Connect(
  1688.  
  1689.             function()
  1690.  
  1691.                TweenService:Create(
  1692.  
  1693.                   Dropdown,
  1694.  
  1695.                   TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1696.  
  1697.                   {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
  1698.  
  1699.                ):Play()
  1700.  
  1701.             end
  1702.  
  1703.          )
  1704.  
  1705.          Dropdown.MouseLeave:Connect(
  1706.  
  1707.             function()
  1708.  
  1709.                TweenService:Create(
  1710.  
  1711.                   Dropdown,
  1712.  
  1713.                   TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1714.  
  1715.                   {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
  1716.  
  1717.                ):Play()
  1718.  
  1719.             end
  1720.  
  1721.          )
  1722.  
  1723.  
  1724.  
  1725.          Dropdown.MouseButton1Click:Connect(
  1726.  
  1727.             function()
  1728.  
  1729.                if DropToggled == false then
  1730.  
  1731.                   DropdownFrame.Visible = true
  1732.  
  1733.                   DropdownFrame:TweenSize(
  1734.  
  1735.                      UDim2.new(0, 403, 0, FrameSize),
  1736.  
  1737.                      Enum.EasingDirection.Out,
  1738.  
  1739.                      Enum.EasingStyle.Quart,
  1740.  
  1741.                      0.1,
  1742.  
  1743.                      true
  1744.  
  1745.                   )
  1746.  
  1747.                   DropdownHolder:TweenSize(
  1748.  
  1749.                      UDim2.new(0, 386, 0, FrameSize),
  1750.  
  1751.                      Enum.EasingDirection.Out,
  1752.  
  1753.                      Enum.EasingStyle.Quart,
  1754.  
  1755.                      0.1,
  1756.  
  1757.                      true
  1758.  
  1759.                   )
  1760.  
  1761.                   TweenService:Create(
  1762.  
  1763.                      Arrow,
  1764.  
  1765.                      TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1766.  
  1767.                      {Rotation = 180}
  1768.  
  1769.                   ):Play()
  1770.  
  1771.                   repeat
  1772.  
  1773.                      wait()
  1774.  
  1775.                   until DropdownFrame.Size == UDim2.new(0, 403, 0, FrameSize)
  1776.  
  1777.                   Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1778.  
  1779.                else
  1780.  
  1781.                   DropdownFrame:TweenSize(
  1782.  
  1783.                      UDim2.new(0, 403, 0, 0),
  1784.  
  1785.                      Enum.EasingDirection.Out,
  1786.  
  1787.                      Enum.EasingStyle.Quart,
  1788.  
  1789.                      0.1,
  1790.  
  1791.                      true
  1792.  
  1793.                   )
  1794.  
  1795.                   DropdownHolder:TweenSize(
  1796.  
  1797.                      UDim2.new(0, 386, 0, 0),
  1798.  
  1799.                      Enum.EasingDirection.Out,
  1800.  
  1801.                      Enum.EasingStyle.Quart,
  1802.  
  1803.                      0.1,
  1804.  
  1805.                      true
  1806.  
  1807.                   )
  1808.  
  1809.                   TweenService:Create(
  1810.  
  1811.                      Arrow,
  1812.  
  1813.                      TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1814.  
  1815.                      {Rotation = 0}
  1816.  
  1817.                   ):Play()
  1818.  
  1819.                   repeat
  1820.  
  1821.                      wait()
  1822.  
  1823.                   until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
  1824.  
  1825.                   DropdownFrame.Visible = false
  1826.  
  1827.                   Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1828.  
  1829.                end
  1830.  
  1831.                DropToggled = not DropToggled
  1832.  
  1833.             end
  1834.  
  1835.          )
  1836.  
  1837.  
  1838.  
  1839.          for i, v in next, list do
  1840.  
  1841.             ItemCount = ItemCount + 1
  1842.  
  1843.  
  1844.  
  1845.             if ItemCount == 1 then
  1846.  
  1847.                FrameSize = 39
  1848.  
  1849.             elseif ItemCount == 2 then
  1850.  
  1851.                FrameSize = 69
  1852.  
  1853.             elseif ItemCount >= 3 then
  1854.  
  1855.                FrameSize = 100
  1856.  
  1857.             end
  1858.  
  1859.  
  1860.  
  1861.             local Item = Instance.new("TextButton")
  1862.  
  1863.             local ItemCorner = Instance.new("UICorner")
  1864.  
  1865.  
  1866.  
  1867.             Item.Name = "Item"
  1868.  
  1869.             Item.Parent = DropdownHolder
  1870.  
  1871.             Item.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  1872.  
  1873.             Item.Position = UDim2.new(0, 0, 0.0808080807, 0)
  1874.  
  1875.             Item.Size = UDim2.new(0, 405, 0, 24)
  1876.  
  1877.             Item.AutoButtonColor = false
  1878.  
  1879.             Item.Font = Enum.Font.Gotham
  1880.  
  1881.             Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  1882.  
  1883.             Item.TextSize = 14.000
  1884.  
  1885.             Item.Text = v
  1886.  
  1887.  
  1888.  
  1889.             ItemCorner.Name = "ItemCorner"
  1890.  
  1891.             ItemCorner.Parent = Item
  1892.  
  1893.  
  1894.  
  1895.             Item.MouseEnter:Connect(
  1896.  
  1897.                function()
  1898.  
  1899.                   TweenService:Create(
  1900.  
  1901.                      Item,
  1902.  
  1903.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1904.  
  1905.                      {BackgroundColor3 = Color3.fromRGB(37, 37, 37)}
  1906.  
  1907.                   ):Play()
  1908.  
  1909.                end
  1910.  
  1911.             )
  1912.  
  1913.             Item.MouseLeave:Connect(
  1914.  
  1915.                function()
  1916.  
  1917.                   TweenService:Create(
  1918.  
  1919.                      Item,
  1920.  
  1921.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1922.  
  1923.                      {BackgroundColor3 = Color3.fromRGB(32, 32, 32)}
  1924.  
  1925.                   ):Play()
  1926.  
  1927.                end
  1928.  
  1929.             )
  1930.  
  1931.  
  1932.  
  1933.             Item.MouseButton1Click:Connect(
  1934.  
  1935.                function()
  1936.  
  1937.                   Title.Text = text .. " - " .. v
  1938.  
  1939.                   pcall(callback, v)
  1940.  
  1941.                   DropToggled = false
  1942.  
  1943.                   DropdownFrame:TweenSize(
  1944.  
  1945.                      UDim2.new(0, 403, 0, 0),
  1946.  
  1947.                      Enum.EasingDirection.Out,
  1948.  
  1949.                      Enum.EasingStyle.Quart,
  1950.  
  1951.                      0.1,
  1952.  
  1953.                      true
  1954.  
  1955.                   )
  1956.  
  1957.                   DropdownHolder:TweenSize(
  1958.  
  1959.                      UDim2.new(0, 386, 0, 0),
  1960.  
  1961.                      Enum.EasingDirection.Out,
  1962.  
  1963.                      Enum.EasingStyle.Quart,
  1964.  
  1965.                      0.1,
  1966.  
  1967.                      true
  1968.  
  1969.                   )
  1970.  
  1971.                   TweenService:Create(
  1972.  
  1973.                      Arrow,
  1974.  
  1975.                      TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1976.  
  1977.                      {Rotation = 0}
  1978.  
  1979.                   ):Play()
  1980.  
  1981.                   repeat
  1982.  
  1983.                      wait()
  1984.  
  1985.                   until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
  1986.  
  1987.                   DropdownFrame.Visible = false
  1988.  
  1989.                   Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1990.  
  1991.                end
  1992.  
  1993.             )
  1994.  
  1995.  
  1996.  
  1997.             DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, DropdownItemLayout.AbsoluteContentSize.Y + 15)
  1998.  
  1999.          end
  2000.  
  2001.  
  2002.  
  2003.          function dropfunc:Clear()
  2004.  
  2005.             Title.Text = text
  2006.  
  2007.             FrameSize = 0
  2008.  
  2009.             ItemCount = 0
  2010.  
  2011.  
  2012.  
  2013.             for i,v in next, DropdownHolder:GetChildren() do
  2014.  
  2015.                if v.Name == "Item" then
  2016.  
  2017.                   v:Destroy()
  2018.  
  2019.                end
  2020.  
  2021.             end
  2022.  
  2023.  
  2024.  
  2025.             DropdownFrame:TweenSize(
  2026.  
  2027.                UDim2.new(0, 403, 0, 0),
  2028.  
  2029.                Enum.EasingDirection.Out,
  2030.  
  2031.                Enum.EasingStyle.Quart,
  2032.  
  2033.                0.1,
  2034.  
  2035.                true
  2036.  
  2037.             )
  2038.  
  2039.             DropdownHolder:TweenSize(
  2040.  
  2041.                UDim2.new(0, 386, 0, 0),
  2042.  
  2043.                Enum.EasingDirection.Out,
  2044.  
  2045.                Enum.EasingStyle.Quart,
  2046.  
  2047.                0.1,
  2048.  
  2049.                true
  2050.  
  2051.             )
  2052.  
  2053.             TweenService:Create(
  2054.  
  2055.                Arrow,
  2056.  
  2057.                TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2058.  
  2059.                {Rotation = 0}
  2060.  
  2061.             ):Play()
  2062.  
  2063.             repeat
  2064.  
  2065.                wait()
  2066.  
  2067.             until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
  2068.  
  2069.             DropdownFrame.Visible = false
  2070.  
  2071.             Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2072.  
  2073.          end
  2074.  
  2075.  
  2076.  
  2077.          function dropfunc:Add(toadd)
  2078.  
  2079.             ItemCount = ItemCount + 1
  2080.  
  2081.  
  2082.  
  2083.             if ItemCount == 1 then
  2084.  
  2085.                FrameSize = 39
  2086.  
  2087.             elseif ItemCount == 2 then
  2088.  
  2089.                FrameSize = 69
  2090.  
  2091.             elseif ItemCount >= 3 then
  2092.  
  2093.                FrameSize = 100
  2094.  
  2095.             end
  2096.  
  2097.  
  2098.  
  2099.             local Item = Instance.new("TextButton")
  2100.  
  2101.             local ItemCorner = Instance.new("UICorner")
  2102.  
  2103.  
  2104.  
  2105.             Item.Name = "Item"
  2106.  
  2107.             Item.Parent = DropdownHolder
  2108.  
  2109.             Item.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  2110.  
  2111.             Item.Position = UDim2.new(0, 0, 0.0808080807, 0)
  2112.  
  2113.             Item.Size = UDim2.new(0, 405, 0, 24)
  2114.  
  2115.             Item.AutoButtonColor = false
  2116.  
  2117.             Item.Font = Enum.Font.Gotham
  2118.  
  2119.             Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  2120.  
  2121.             Item.TextSize = 14.000
  2122.  
  2123.             Item.Text = toadd
  2124.  
  2125.  
  2126.  
  2127.             ItemCorner.Name = "ItemCorner"
  2128.  
  2129.             ItemCorner.Parent = Item
  2130.  
  2131.  
  2132.  
  2133.             Item.MouseEnter:Connect(
  2134.  
  2135.                function()
  2136.  
  2137.                   TweenService:Create(
  2138.  
  2139.                      Item,
  2140.  
  2141.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  2142.  
  2143.                      {BackgroundColor3 = Color3.fromRGB(37, 37, 37)}
  2144.  
  2145.                   ):Play()
  2146.  
  2147.                end
  2148.  
  2149.             )
  2150.  
  2151.             Item.MouseLeave:Connect(
  2152.  
  2153.                function()
  2154.  
  2155.                   TweenService:Create(
  2156.  
  2157.                      Item,
  2158.  
  2159.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  2160.  
  2161.                      {BackgroundColor3 = Color3.fromRGB(32, 32, 32)}
  2162.  
  2163.                   ):Play()
  2164.  
  2165.                end
  2166.  
  2167.             )
  2168.  
  2169.  
  2170.  
  2171.             Item.MouseButton1Click:Connect(
  2172.  
  2173.                function()
  2174.  
  2175.                   Title.Text = text .. " - " .. toadd
  2176.  
  2177.                   pcall(callback, toadd)
  2178.  
  2179.                   DropToggled = false
  2180.  
  2181.                   DropdownFrame:TweenSize(
  2182.  
  2183.                      UDim2.new(0, 403, 0, 0),
  2184.  
  2185.                      Enum.EasingDirection.Out,
  2186.  
  2187.                      Enum.EasingStyle.Quart,
  2188.  
  2189.                      0.1,
  2190.  
  2191.                      true
  2192.  
  2193.                   )
  2194.  
  2195.                   DropdownHolder:TweenSize(
  2196.  
  2197.                      UDim2.new(0, 386, 0, 0),
  2198.  
  2199.                      Enum.EasingDirection.Out,
  2200.  
  2201.                      Enum.EasingStyle.Quart,
  2202.  
  2203.                      0.1,
  2204.  
  2205.                      true
  2206.  
  2207.                   )
  2208.  
  2209.                   TweenService:Create(
  2210.  
  2211.                      Arrow,
  2212.  
  2213.                      TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2214.  
  2215.                      {Rotation = 0}
  2216.  
  2217.                   ):Play()
  2218.  
  2219.                   repeat
  2220.  
  2221.                      wait()
  2222.  
  2223.                   until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
  2224.  
  2225.                   DropdownFrame.Visible = false
  2226.  
  2227.                   Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2228.  
  2229.                end
  2230.  
  2231.             )
  2232.  
  2233.  
  2234.  
  2235.             DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, DropdownItemLayout.AbsoluteContentSize.Y + 15)
  2236.  
  2237.          end
  2238.  
  2239.  
  2240.  
  2241.          return dropfunc
  2242.  
  2243.       end
  2244.  
  2245.       function ContainerItems:Colorpicker(text, preset, callback)
  2246.  
  2247.          local ColorPickerToggled = false
  2248.  
  2249.          local OldToggleColor = Color3.fromRGB(0, 0, 0)
  2250.  
  2251.          local OldColor = Color3.fromRGB(0, 0, 0)
  2252.  
  2253.          local OldColorSelectionPosition = nil
  2254.  
  2255.          local OldHueSelectionPosition = nil
  2256.  
  2257.          local ColorH, ColorS, ColorV = 1, 1, 1
  2258.  
  2259.          local RainbowColorPicker = false
  2260.  
  2261.          local ColorPickerInput = nil
  2262.  
  2263.          local ColorInput = nil
  2264.  
  2265.          local HueInput = nil
  2266.  
  2267.  
  2268.  
  2269.          local Colorpicker = Instance.new("TextButton")
  2270.  
  2271.          local Title = Instance.new("TextLabel")
  2272.  
  2273.          local BoxColor = Instance.new("Frame")
  2274.  
  2275.          local BoxcolorCorner = Instance.new("UICorner")
  2276.  
  2277.          local ColorpickerCorner = Instance.new("UICorner")
  2278.  
  2279.  
  2280.  
  2281.          Colorpicker.Name = "Colorpicker"
  2282.  
  2283.          Colorpicker.Parent = Container
  2284.  
  2285.          Colorpicker.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  2286.  
  2287.          Colorpicker.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  2288.  
  2289.          Colorpicker.Size = UDim2.new(0, 405, 0, 40)
  2290.  
  2291.          Colorpicker.AutoButtonColor = false
  2292.  
  2293.          Colorpicker.Font = Enum.Font.Gotham
  2294.  
  2295.          Colorpicker.Text = ""
  2296.  
  2297.          Colorpicker.TextColor3 = Color3.fromRGB(255, 255, 255)
  2298.  
  2299.          Colorpicker.TextSize = 14.000
  2300.  
  2301.  
  2302.  
  2303.          Title.Name = "Title"
  2304.  
  2305.          Title.Parent = Colorpicker
  2306.  
  2307.          Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2308.  
  2309.          Title.BackgroundTransparency = 1.000
  2310.  
  2311.          Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  2312.  
  2313.          Title.Size = UDim2.new(0, 405, 0, 40)
  2314.  
  2315.          Title.Font = Enum.Font.Gotham
  2316.  
  2317.          Title.Text = text
  2318.  
  2319.          Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  2320.  
  2321.          Title.TextSize = 15.000
  2322.  
  2323.          Title.TextXAlignment = Enum.TextXAlignment.Left
  2324.  
  2325.  
  2326.  
  2327.          BoxColor.Name = "Boxcolor"
  2328.  
  2329.          BoxColor.Parent = Colorpicker
  2330.  
  2331.          BoxColor.BackgroundColor3 = preset
  2332.  
  2333.          BoxColor.Position = UDim2.new(0.88, 0, 0.3, 0)
  2334.  
  2335.          BoxColor.Size = UDim2.new(0, 36, 0, 19)
  2336.  
  2337.  
  2338.  
  2339.          BoxcolorCorner.CornerRadius = UDim.new(0, 6)
  2340.  
  2341.          BoxcolorCorner.Name = "BoxcolorCorner"
  2342.  
  2343.          BoxcolorCorner.Parent = BoxColor
  2344.  
  2345.  
  2346.  
  2347.          ColorpickerCorner.CornerRadius = UDim.new(0, 4)
  2348.  
  2349.          ColorpickerCorner.Name = "ColorpickerCorner"
  2350.  
  2351.          ColorpickerCorner.Parent = Colorpicker
  2352.  
  2353.  
  2354.  
  2355.          local ColorpickerFrame = Instance.new("Frame")
  2356.  
  2357.          local DropdownFrameCorner = Instance.new("UICorner")
  2358.  
  2359.          local Hue = Instance.new("ImageLabel")
  2360.  
  2361.          local HueCorner = Instance.new("UICorner")
  2362.  
  2363.          local HueGradient = Instance.new("UIGradient")
  2364.  
  2365.          local HueSelection = Instance.new("ImageLabel")
  2366.  
  2367.          local Color = Instance.new("ImageLabel")
  2368.  
  2369.          local ColorCorner = Instance.new("UICorner")
  2370.  
  2371.          local ColorSelection = Instance.new("ImageLabel")
  2372.  
  2373.          local Confirm = Instance.new("TextButton")
  2374.  
  2375.          local ButtonCorner = Instance.new("UICorner")
  2376.  
  2377.          local RainbowToggle = Instance.new("TextButton")
  2378.  
  2379.          local RainbowToggleCorner = Instance.new("UICorner")
  2380.  
  2381.          local RainbowTitle = Instance.new("TextLabel")
  2382.  
  2383.          local RainbowToggleFrame = Instance.new("Frame")
  2384.  
  2385.          local RainbowToggleFrameCorner = Instance.new("UICorner")
  2386.  
  2387.          local RainbowToggleFrameRainbow = Instance.new("Frame")
  2388.  
  2389.          local RainbowToggleFrameRainbowCorner = Instance.new("UICorner")
  2390.  
  2391.          local RainbowToggleDot = Instance.new("Frame")
  2392.  
  2393.          local RainbowToggleDotCorner = Instance.new("UICorner")
  2394.  
  2395.  
  2396.  
  2397.          ColorpickerFrame.Name = "ColorpickerFrame"
  2398.  
  2399.          ColorpickerFrame.Parent = Container
  2400.  
  2401.          ColorpickerFrame.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  2402.  
  2403.          ColorpickerFrame.BorderSizePixel = 0
  2404.  
  2405.          ColorpickerFrame.Position = UDim2.new(0.165624991, 0, 0.671052635, 0)
  2406.  
  2407.          ColorpickerFrame.Size = UDim2.new(0, 403, 0, 0)
  2408.  
  2409.          ColorpickerFrame.Visible = false
  2410.  
  2411.          ColorpickerFrame.ClipsDescendants = true
  2412.  
  2413.  
  2414.  
  2415.          DropdownFrameCorner.Name = "DropdownFrameCorner"
  2416.  
  2417.          DropdownFrameCorner.Parent = ColorpickerFrame
  2418.  
  2419.  
  2420.  
  2421.          Hue.Name = "Hue"
  2422.  
  2423.          Hue.Parent = ColorpickerFrame
  2424.  
  2425.          Hue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2426.  
  2427.          Hue.Position = UDim2.new(0, 209, 0, 9)
  2428.  
  2429.          Hue.Size = UDim2.new(0, 25, 0, 80)
  2430.  
  2431.  
  2432.  
  2433.          HueCorner.CornerRadius = UDim.new(0, 3)
  2434.  
  2435.          HueCorner.Name = "HueCorner"
  2436.  
  2437.          HueCorner.Parent = Hue
  2438.  
  2439.  
  2440.  
  2441.          HueGradient.Color =
  2442.  
  2443.             ColorSequence.new {
  2444.  
  2445.                ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 0, 4)),
  2446.  
  2447.                ColorSequenceKeypoint.new(0.20, Color3.fromRGB(234, 255, 0)),
  2448.  
  2449.                ColorSequenceKeypoint.new(0.40, Color3.fromRGB(21, 255, 0)),
  2450.  
  2451.                ColorSequenceKeypoint.new(0.60, Color3.fromRGB(0, 255, 255)),
  2452.  
  2453.                ColorSequenceKeypoint.new(0.80, Color3.fromRGB(0, 17, 255)),
  2454.  
  2455.                ColorSequenceKeypoint.new(0.90, Color3.fromRGB(255, 0, 251)),
  2456.  
  2457.                ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 0, 4))
  2458.  
  2459.             }
  2460.  
  2461.          HueGradient.Rotation = 270
  2462.  
  2463.          HueGradient.Name = "HueGradient"
  2464.  
  2465.          HueGradient.Parent = Hue
  2466.  
  2467.  
  2468.  
  2469.          HueSelection.Name = "HueSelection"
  2470.  
  2471.          HueSelection.Parent = Hue
  2472.  
  2473.          HueSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  2474.  
  2475.          HueSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2476.  
  2477.          HueSelection.BackgroundTransparency = 1.000
  2478.  
  2479.          HueSelection.Position = UDim2.new(0.48, 0, 1 - select(1, Color3.toHSV(preset)))
  2480.  
  2481.          HueSelection.Size = UDim2.new(0, 18, 0, 18)
  2482.  
  2483.          HueSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  2484.  
  2485.  
  2486.  
  2487.          Color.Name = "Color"
  2488.  
  2489.          Color.Parent = ColorpickerFrame
  2490.  
  2491.          Color.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  2492.  
  2493.          Color.Position = UDim2.new(0, 9, 0, 9)
  2494.  
  2495.          Color.Size = UDim2.new(0, 194, 0, 80)
  2496.  
  2497.          Color.ZIndex = 10
  2498.  
  2499.          Color.Image = "rbxassetid://4155801252"
  2500.  
  2501.  
  2502.  
  2503.          ColorCorner.CornerRadius = UDim.new(0, 3)
  2504.  
  2505.          ColorCorner.Name = "ColorCorner"
  2506.  
  2507.          ColorCorner.Parent = Color
  2508.  
  2509.  
  2510.  
  2511.          ColorSelection.Name = "ColorSelection"
  2512.  
  2513.          ColorSelection.Parent = Color
  2514.  
  2515.          ColorSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  2516.  
  2517.          ColorSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2518.  
  2519.          ColorSelection.BackgroundTransparency = 1.000
  2520.  
  2521.          ColorSelection.Position = UDim2.new(preset and select(3, Color3.toHSV(preset)))
  2522.  
  2523.          ColorSelection.Size = UDim2.new(0, 18, 0, 18)
  2524.  
  2525.          ColorSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  2526.  
  2527.          ColorSelection.ScaleType = Enum.ScaleType.Fit
  2528.  
  2529.  
  2530.  
  2531.          Confirm.Name = "Confirm"
  2532.  
  2533.          Confirm.Parent = ColorpickerFrame
  2534.  
  2535.          Confirm.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  2536.  
  2537.          Confirm.BackgroundTransparency = 0.010
  2538.  
  2539.          Confirm.Position = UDim2.new(0.612244904, 0, 0.0900000036, 0)
  2540.  
  2541.          Confirm.Size = UDim2.new(0, 145, 0, 27)
  2542.  
  2543.          Confirm.AutoButtonColor = false
  2544.  
  2545.          Confirm.Font = Enum.Font.Gotham
  2546.  
  2547.          Confirm.Text = "Confirm"
  2548.  
  2549.          Confirm.TextColor3 = Color3.fromRGB(255, 255, 255)
  2550.  
  2551.          Confirm.TextSize = 14.000
  2552.  
  2553.  
  2554.  
  2555.          ButtonCorner.Name = "ButtonCorner"
  2556.  
  2557.          ButtonCorner.Parent = Confirm
  2558.  
  2559.  
  2560.  
  2561.          RainbowToggle.Name = "RainbowToggle"
  2562.  
  2563.          RainbowToggle.Parent = ColorpickerFrame
  2564.  
  2565.          RainbowToggle.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  2566.  
  2567.          RainbowToggle.Position = UDim2.new(0.610732794, 0, 0.431324542, 0)
  2568.  
  2569.          RainbowToggle.Size = UDim2.new(0, 145, 0, 27)
  2570.  
  2571.          RainbowToggle.AutoButtonColor = false
  2572.  
  2573.          RainbowToggle.Font = Enum.Font.Gotham
  2574.  
  2575.          RainbowToggle.Text = ""
  2576.  
  2577.          RainbowToggle.TextColor3 = Color3.fromRGB(255, 255, 255)
  2578.  
  2579.          RainbowToggle.TextSize = 14.000
  2580.  
  2581.  
  2582.  
  2583.          RainbowToggleCorner.Name = "RainbowToggleCorner"
  2584.  
  2585.          RainbowToggleCorner.Parent = RainbowToggle
  2586.  
  2587.  
  2588.  
  2589.          RainbowTitle.Name = "RainbowTitle"
  2590.  
  2591.          RainbowTitle.Parent = RainbowToggle
  2592.  
  2593.          RainbowTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2594.  
  2595.          RainbowTitle.BackgroundTransparency = 1.000
  2596.  
  2597.          RainbowTitle.Position = UDim2.new(0.0204080511, 0, 0, 0)
  2598.  
  2599.          RainbowTitle.Size = UDim2.new(0, 29, 0, 27)
  2600.  
  2601.          RainbowTitle.Font = Enum.Font.Gotham
  2602.  
  2603.          RainbowTitle.Text = "Rainbow"
  2604.  
  2605.          RainbowTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  2606.  
  2607.          RainbowTitle.TextSize = 14.000
  2608.  
  2609.          RainbowTitle.TextXAlignment = Enum.TextXAlignment.Left
  2610.  
  2611.  
  2612.  
  2613.          RainbowToggleFrame.Name = "RainbowToggleFrame"
  2614.  
  2615.          RainbowToggleFrame.Parent = RainbowToggle
  2616.  
  2617.          RainbowToggleFrame.BackgroundColor3 = Color3.fromRGB(22, 23, 27)
  2618.  
  2619.          RainbowToggleFrame.Position = UDim2.new(0.693, 0, 0.142857149, 0)
  2620.  
  2621.          RainbowToggleFrame.Size = UDim2.new(0, 36, 0, 19)
  2622.  
  2623.  
  2624.  
  2625.          RainbowToggleFrameCorner.CornerRadius = UDim.new(1, 0)
  2626.  
  2627.          RainbowToggleFrameCorner.Name = "RainbowToggleFrameCorner"
  2628.  
  2629.          RainbowToggleFrameCorner.Parent = RainbowToggleFrame
  2630.  
  2631.  
  2632.  
  2633.          RainbowToggleFrameRainbow.Name = "RainbowToggleFrameRainbow"
  2634.  
  2635.          RainbowToggleFrameRainbow.Parent = RainbowToggleFrame
  2636.  
  2637.          RainbowToggleFrameRainbow.BackgroundColor3 = Color3.fromRGB(67,136,246)
  2638.  
  2639.          RainbowToggleFrameRainbow.BackgroundTransparency = 1.000
  2640.  
  2641.          RainbowToggleFrameRainbow.Position = UDim2.new(-0.0198377371, 0, 0.00601506233, 0)
  2642.  
  2643.          RainbowToggleFrameRainbow.Size = UDim2.new(0, 36, 0, 19)
  2644.  
  2645.  
  2646.  
  2647.          RainbowToggleFrameRainbowCorner.CornerRadius = UDim.new(1, 0)
  2648.  
  2649.          RainbowToggleFrameRainbowCorner.Name = "RainbowToggleFrameRainbowCorner"
  2650.  
  2651.          RainbowToggleFrameRainbowCorner.Parent = RainbowToggleFrameRainbow
  2652.  
  2653.  
  2654.  
  2655.          RainbowToggleDot.Name = "RainbowToggleDot"
  2656.  
  2657.          RainbowToggleDot.Parent = RainbowToggleFrameRainbow
  2658.  
  2659.          RainbowToggleDot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2660.  
  2661.          RainbowToggleDot.Position = UDim2.new(0.104999997, -3, 0.289000005, -4)
  2662.  
  2663.          RainbowToggleDot.Size = UDim2.new(0, 16, 0, 16)
  2664.  
  2665.  
  2666.  
  2667.          RainbowToggleDotCorner.CornerRadius = UDim.new(1, 0)
  2668.  
  2669.          RainbowToggleDotCorner.Name = "RainbowToggleDotCorner"
  2670.  
  2671.          RainbowToggleDotCorner.Parent = RainbowToggleDot
  2672.  
  2673.  
  2674.  
  2675.          Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  2676.  
  2677.  
  2678.  
  2679.          Colorpicker.MouseEnter:Connect(
  2680.  
  2681.             function()
  2682.  
  2683.                TweenService:Create(
  2684.  
  2685.                   Colorpicker,
  2686.  
  2687.                   TweenInfo.new(.2, Enum.EasingStyle.Quad),
  2688.  
  2689.                   {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
  2690.  
  2691.                ):Play()
  2692.  
  2693.             end
  2694.  
  2695.          )
  2696.  
  2697.          Colorpicker.MouseLeave:Connect(
  2698.  
  2699.             function()
  2700.  
  2701.                TweenService:Create(
  2702.  
  2703.                   Colorpicker,
  2704.  
  2705.                   TweenInfo.new(.2, Enum.EasingStyle.Quad),
  2706.  
  2707.                   {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
  2708.  
  2709.                ):Play()
  2710.  
  2711.             end
  2712.  
  2713.          )
  2714.  
  2715.  
  2716.  
  2717.          local function UpdateColorPicker(nope)
  2718.  
  2719.             BoxColor.BackgroundColor3 = Color3.fromHSV(ColorH, ColorS, ColorV)
  2720.  
  2721.             Color.BackgroundColor3 = Color3.fromHSV(ColorH, 1, 1)
  2722.  
  2723.  
  2724.  
  2725.             pcall(callback, BoxColor.BackgroundColor3)
  2726.  
  2727.          end
  2728.  
  2729.  
  2730.  
  2731.          ColorH =
  2732.  
  2733.             1 -
  2734.  
  2735.             (math.clamp(HueSelection.AbsolutePosition.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) /
  2736.  
  2737.                Hue.AbsoluteSize.Y)
  2738.  
  2739.          ColorS =
  2740.  
  2741.             (math.clamp(ColorSelection.AbsolutePosition.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) /
  2742.  
  2743.                Color.AbsoluteSize.X)
  2744.  
  2745.          ColorV =
  2746.  
  2747.             1 -
  2748.  
  2749.             (math.clamp(ColorSelection.AbsolutePosition.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) /
  2750.  
  2751.                Color.AbsoluteSize.Y)
  2752.  
  2753.  
  2754.  
  2755.          BoxColor.BackgroundColor3 = preset
  2756.  
  2757.          Color.BackgroundColor3 = preset
  2758.  
  2759.          pcall(callback, BoxColor.BackgroundColor3)
  2760.  
  2761.  
  2762.  
  2763.          Color.InputBegan:Connect(
  2764.  
  2765.             function(input)
  2766.  
  2767.                if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2768.  
  2769.                   if RainbowColorPicker then
  2770.  
  2771.                      return
  2772.  
  2773.                   end
  2774.  
  2775.  
  2776.  
  2777.                   if ColorInput then
  2778.  
  2779.                      ColorInput:Disconnect()
  2780.  
  2781.                   end
  2782.  
  2783.  
  2784.  
  2785.                   ColorInput =
  2786.  
  2787.                      RunService.RenderStepped:Connect(
  2788.  
  2789.                         function()
  2790.  
  2791.                         local ColorX =
  2792.  
  2793.                            (math.clamp(Mouse.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) /
  2794.  
  2795.                               Color.AbsoluteSize.X)
  2796.  
  2797.                         local ColorY =
  2798.  
  2799.                            (math.clamp(Mouse.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) /
  2800.  
  2801.                               Color.AbsoluteSize.Y)
  2802.  
  2803.  
  2804.  
  2805.                         ColorSelection.Position = UDim2.new(ColorX, 0, ColorY, 0)
  2806.  
  2807.                         ColorS = ColorX
  2808.  
  2809.                         ColorV = 1 - ColorY
  2810.  
  2811.  
  2812.  
  2813.                         UpdateColorPicker(true)
  2814.  
  2815.                      end
  2816.  
  2817.                      )
  2818.  
  2819.                end
  2820.  
  2821.             end
  2822.  
  2823.          )
  2824.  
  2825.  
  2826.  
  2827.          Color.InputEnded:Connect(
  2828.  
  2829.             function(input)
  2830.  
  2831.                if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2832.  
  2833.                   if ColorInput then
  2834.  
  2835.                      ColorInput:Disconnect()
  2836.  
  2837.                   end
  2838.  
  2839.                end
  2840.  
  2841.             end
  2842.  
  2843.          )
  2844.  
  2845.  
  2846.  
  2847.          Hue.InputBegan:Connect(
  2848.  
  2849.             function(input)
  2850.  
  2851.                if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2852.  
  2853.                   if RainbowColorPicker then
  2854.  
  2855.                      return
  2856.  
  2857.                   end
  2858.  
  2859.  
  2860.  
  2861.                   if HueInput then
  2862.  
  2863.                      HueInput:Disconnect()
  2864.  
  2865.                   end
  2866.  
  2867.  
  2868.  
  2869.                   HueInput =
  2870.  
  2871.                      RunService.RenderStepped:Connect(
  2872.  
  2873.                         function()
  2874.  
  2875.                         local HueY =
  2876.  
  2877.                            (math.clamp(Mouse.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) /
  2878.  
  2879.                               Hue.AbsoluteSize.Y)
  2880.  
  2881.  
  2882.  
  2883.                         HueSelection.Position = UDim2.new(0.48, 0, HueY, 0)
  2884.  
  2885.                         ColorH = 1 - HueY
  2886.  
  2887.  
  2888.  
  2889.                         UpdateColorPicker(true)
  2890.  
  2891.                      end
  2892.  
  2893.                      )
  2894.  
  2895.                end
  2896.  
  2897.             end
  2898.  
  2899.          )
  2900.  
  2901.  
  2902.  
  2903.          Hue.InputEnded:Connect(
  2904.  
  2905.             function(input)
  2906.  
  2907.                if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2908.  
  2909.                   if HueInput then
  2910.  
  2911.                      HueInput:Disconnect()
  2912.  
  2913.                   end
  2914.  
  2915.                end
  2916.  
  2917.             end
  2918.  
  2919.          )
  2920.  
  2921.  
  2922.  
  2923.          RainbowToggle.MouseButton1Down:Connect(
  2924.  
  2925.             function()
  2926.  
  2927.                RainbowColorPicker = not RainbowColorPicker
  2928.  
  2929.  
  2930.  
  2931.                if ColorInput then
  2932.  
  2933.                   ColorInput:Disconnect()
  2934.  
  2935.                end
  2936.  
  2937.  
  2938.  
  2939.                if HueInput then
  2940.  
  2941.                   HueInput:Disconnect()
  2942.  
  2943.                end
  2944.  
  2945.  
  2946.  
  2947.                if RainbowColorPicker then
  2948.  
  2949.                   TweenService:Create(
  2950.  
  2951.                      RainbowToggleFrameRainbow,
  2952.  
  2953.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  2954.  
  2955.                      {BackgroundTransparency = 0}
  2956.  
  2957.                   ):Play()
  2958.  
  2959.                   TweenService:Create(
  2960.  
  2961.                      RainbowToggleDot,
  2962.  
  2963.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  2964.  
  2965.                      {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
  2966.  
  2967.                   ):Play()
  2968.  
  2969.  
  2970.  
  2971.                   OldToggleColor = BoxColor.BackgroundColor3
  2972.  
  2973.                   OldColor = Color.BackgroundColor3
  2974.  
  2975.                   OldColorSelectionPosition = ColorSelection.Position
  2976.  
  2977.                   OldHueSelectionPosition = HueSelection.Position
  2978.  
  2979.  
  2980.  
  2981.                   while RainbowColorPicker do
  2982.  
  2983.                      BoxColor.BackgroundColor3 = Color3.fromHSV(VLib.RainbowColorValue, 1, 1)
  2984.  
  2985.                      Color.BackgroundColor3 = Color3.fromHSV(VLib.RainbowColorValue, 1, 1)
  2986.  
  2987.  
  2988.  
  2989.                      ColorSelection.Position = UDim2.new(1, 0, 0, 0)
  2990.  
  2991.                      HueSelection.Position = UDim2.new(0.48, 0, 0, VLib.HueSelectionPosition)
  2992.  
  2993.  
  2994.  
  2995.                      pcall(callback, BoxColor.BackgroundColor3)
  2996.  
  2997.                      wait()
  2998.  
  2999.                   end
  3000.  
  3001.                elseif not RainbowColorPicker then
  3002.  
  3003.                   TweenService:Create(
  3004.  
  3005.                      RainbowToggleFrameRainbow,
  3006.  
  3007.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  3008.  
  3009.                      {BackgroundTransparency = 1}
  3010.  
  3011.                   ):Play()
  3012.  
  3013.                   TweenService:Create(
  3014.  
  3015.                      RainbowToggleDot,
  3016.  
  3017.                      TweenInfo.new(.2, Enum.EasingStyle.Quad),
  3018.  
  3019.                      {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
  3020.  
  3021.                   ):Play()
  3022.  
  3023.  
  3024.  
  3025.                   BoxColor.BackgroundColor3 = OldToggleColor
  3026.  
  3027.                   Color.BackgroundColor3 = OldColor
  3028.  
  3029.  
  3030.  
  3031.                   ColorSelection.Position = OldColorSelectionPosition
  3032.  
  3033.                   HueSelection.Position = OldHueSelectionPosition
  3034.  
  3035.  
  3036.  
  3037.                   pcall(callback, BoxColor.BackgroundColor3)
  3038.  
  3039.                end
  3040.  
  3041.             end
  3042.  
  3043.          )
  3044.  
  3045.  
  3046.  
  3047.          Colorpicker.MouseButton1Click:Connect(
  3048.  
  3049.             function()
  3050.  
  3051.                if ColorPickerToggled == false then
  3052.  
  3053.                   ColorPickerToggled = not ColorPickerToggled
  3054.  
  3055.                   ColorpickerFrame.Visible = true
  3056.  
  3057.                   ColorpickerFrame:TweenSize(
  3058.  
  3059.                      UDim2.new(0, 403, 0, 100),
  3060.  
  3061.                      Enum.EasingDirection.Out,
  3062.  
  3063.                      Enum.EasingStyle.Quart,
  3064.  
  3065.                      0.1,
  3066.  
  3067.                      true
  3068.  
  3069.                   )
  3070.  
  3071.                   repeat
  3072.  
  3073.                      wait()
  3074.  
  3075.                   until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 100)
  3076.  
  3077.                   Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  3078.  
  3079.                else
  3080.  
  3081.                   ColorPickerToggled = not ColorPickerToggled
  3082.  
  3083.                   ColorpickerFrame:TweenSize(
  3084.  
  3085.                      UDim2.new(0, 403, 0, 0),
  3086.  
  3087.                      Enum.EasingDirection.Out,
  3088.  
  3089.                      Enum.EasingStyle.Quart,
  3090.  
  3091.                      0.1,
  3092.  
  3093.                      true
  3094.  
  3095.                   )
  3096.  
  3097.                   repeat
  3098.  
  3099.                      wait()
  3100.  
  3101.                   until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 0)
  3102.  
  3103.                   ColorpickerFrame.Visible = false
  3104.  
  3105.                   Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  3106.  
  3107.                end
  3108.  
  3109.             end
  3110.  
  3111.          )
  3112.  
  3113.  
  3114.  
  3115.          Confirm.MouseButton1Click:Connect(
  3116.  
  3117.             function()
  3118.  
  3119.                ColorPickerToggled = not ColorPickerToggled
  3120.  
  3121.                ColorpickerFrame:TweenSize(
  3122.  
  3123.                   UDim2.new(0, 403, 0, 0),
  3124.  
  3125.                   Enum.EasingDirection.Out,
  3126.  
  3127.                   Enum.EasingStyle.Quart,
  3128.  
  3129.                   0.1,
  3130.  
  3131.                   true
  3132.  
  3133.                )
  3134.  
  3135.                repeat
  3136.  
  3137.                   wait()
  3138.  
  3139.                until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 0)
  3140.  
  3141.                ColorpickerFrame.Visible = false
  3142.  
  3143.                Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  3144.  
  3145.             end)
  3146.  
  3147.  
  3148.  
  3149.          coroutine.wrap(
  3150.  
  3151.             function()
  3152.  
  3153.                while wait() do
  3154.  
  3155.  
  3156.  
  3157.                end
  3158.  
  3159.             end
  3160.  
  3161.          )()
  3162.  
  3163.       end
  3164.  
  3165.       function ContainerItems:Label(text)
  3166.  
  3167.          local labelfunc = {}
  3168.  
  3169.          local Label = Instance.new("TextButton")
  3170.  
  3171.          local LabelCorner = Instance.new("UICorner")
  3172.  
  3173.  
  3174.  
  3175.          Label.Name = "Label"
  3176.  
  3177.          Label.Parent = Container
  3178.  
  3179.          Label.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  3180.  
  3181.          Label.Size = UDim2.new(0, 405, 0, 40)
  3182.  
  3183.          Label.AutoButtonColor = false
  3184.  
  3185.          Label.Font = Enum.Font.Gotham
  3186.  
  3187.          Label.TextColor3 = Color3.fromRGB(255, 255, 255)
  3188.  
  3189.          Label.TextSize = 17.000
  3190.  
  3191.          Label.Text = text
  3192.  
  3193.  
  3194.  
  3195.          LabelCorner.CornerRadius = UDim.new(0, 5)
  3196.  
  3197.          LabelCorner.Name = "LabelCorner"
  3198.  
  3199.          LabelCorner.Parent = Label
  3200.  
  3201.  
  3202.  
  3203.          Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  3204.  
  3205.  
  3206.  
  3207.          function labelfunc:Refresh(tochange)
  3208.  
  3209.             Label.Text = tochange
  3210.  
  3211.          end
  3212.  
  3213.  
  3214.  
  3215.          return labelfunc
  3216.  
  3217.       end
  3218.  
  3219.  
  3220.  
  3221.       function ContainerItems:line()
  3222.  
  3223.          local labelfunc = {}
  3224.  
  3225.          local Label = Instance.new("TextButton")
  3226.  
  3227.          local LabelCorner = Instance.new("UICorner")
  3228.  
  3229.  
  3230.  
  3231.          Label.Name = "Label"
  3232.  
  3233.          Label.Parent = Container
  3234.  
  3235.          Label.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  3236.  
  3237.          Label.Size = UDim2.new(0, 405, 0, 5)
  3238.  
  3239.          Label.AutoButtonColor = false
  3240.  
  3241.          Label.Font = Enum.Font.Gotham
  3242.  
  3243.          Label.TextColor3 = Color3.fromRGB(255, 255, 255)
  3244.  
  3245.          Label.TextSize = 17.000
  3246.  
  3247.          Label.Text = ""
  3248.  
  3249.  
  3250.  
  3251.          LabelCorner.CornerRadius = UDim.new(0, 5)
  3252.  
  3253.          LabelCorner.Name = "LabelCorner"
  3254.  
  3255.          LabelCorner.Parent = Label
  3256.  
  3257.  
  3258.  
  3259.          Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  3260.  
  3261.  
  3262.  
  3263.          function labelfunc:Refresh(tochange)
  3264.  
  3265.             Label.Text = tochange
  3266.  
  3267.          end
  3268.  
  3269.  
  3270.  
  3271.          return labelfunc
  3272.  
  3273.       end
  3274.  
  3275.  
  3276.  
  3277.       function ContainerItems:Bind(Title, keybind_options, callback)
  3278.  
  3279.          local keybind_data = {}
  3280.  
  3281.  
  3282.  
  3283.          local Keybind = Instance.new("TextButton")
  3284.  
  3285.          local Title = Instance.new("TextLabel")
  3286.  
  3287.          local KeybindFrame = Instance.new("Frame")
  3288.  
  3289.          local KeybindFrameCorner = Instance.new("UICorner")
  3290.  
  3291.          local TextButton = Instance.new("TextButton")
  3292.  
  3293.          local KeybindCorner = Instance.new("UICorner")
  3294.  
  3295.          local ContainerLayout = Instance.new("UIListLayout")
  3296.  
  3297.  
  3298.  
  3299.  
  3300.  
  3301.          Keybind.Name = "Keybind"
  3302.  
  3303.          Keybind.Parent = Container
  3304.  
  3305.          Keybind.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  3306.  
  3307.          Keybind.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  3308.  
  3309.          Keybind.Size = UDim2.new(0, 405, 0, 40)
  3310.  
  3311.          Keybind.AutoButtonColor = false
  3312.  
  3313.          Keybind.Font = Enum.Font.Gotham
  3314.  
  3315.          Keybind.Text = ""
  3316.  
  3317.          Keybind.TextColor3 = Color3.fromRGB(255, 255, 255)
  3318.  
  3319.          Keybind.TextSize = 14.000
  3320.  
  3321.  
  3322.  
  3323.          Title.Name = "Title"
  3324.  
  3325.          Title.Parent = Keybind
  3326.  
  3327.          Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3328.  
  3329.          Title.BackgroundTransparency = 1.000
  3330.  
  3331.          Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  3332.  
  3333.          Title.Size = UDim2.new(0, 405, 0, 40)
  3334.  
  3335.          Title.Font = Enum.Font.Gotham
  3336.  
  3337.          Title.Text = "Keybind"
  3338.  
  3339.          Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  3340.  
  3341.          Title.TextSize = 15.000
  3342.  
  3343.          Title.TextXAlignment = Enum.TextXAlignment.Left
  3344.  
  3345.  
  3346.  
  3347.          KeybindFrame.Name = "KeybindFrame"
  3348.  
  3349.          KeybindFrame.Parent = Keybind
  3350.  
  3351.          KeybindFrame.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  3352.  
  3353.          KeybindFrame.Position = UDim2.new(0.650124013, 0, 0.159999996, 0)
  3354.  
  3355.          KeybindFrame.Size = UDim2.new(0, 134, 0, 24)
  3356.  
  3357.  
  3358.  
  3359.          KeybindFrameCorner.CornerRadius = UDim.new(0, 6)
  3360.  
  3361.          KeybindFrameCorner.Name = "KeybindFrameCorner"
  3362.  
  3363.          KeybindFrameCorner.Parent = KeybindFrame
  3364.  
  3365.  
  3366.  
  3367.          TextButton.Parent = KeybindFrame
  3368.  
  3369.          TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3370.  
  3371.          TextButton.BackgroundTransparency = 1.000
  3372.  
  3373.          TextButton.Size = UDim2.new(0, 134, 0, 23)
  3374.  
  3375.          TextButton.Font = Enum.Font.Gotham
  3376.  
  3377.          TextButton.Text = "Keybind"
  3378.  
  3379.          TextButton.TextColor3 = Color3.fromRGB(178, 178, 178)
  3380.  
  3381.          TextButton.TextSize = 15.000
  3382.  
  3383.  
  3384.  
  3385.          KeybindCorner.CornerRadius = UDim.new(0, 6)
  3386.  
  3387.          KeybindCorner.Name = "KeybindCorner"
  3388.  
  3389.          KeybindCorner.Parent = Keybind
  3390.  
  3391.  
  3392.  
  3393.          ContainerLayout.Name = "ContainerLayout"
  3394.  
  3395.          ContainerLayout.Parent = Container
  3396.  
  3397.          ContainerLayout.SortOrder = Enum.SortOrder.LayoutOrder
  3398.  
  3399.          ContainerLayout.Padding = UDim.new(0, 15)
  3400.  
  3401.  
  3402.  
  3403.          local UIS = game:GetService('UserInputService')
  3404.  
  3405.  
  3406.  
  3407.  
  3408.  
  3409.          keybind_name = tostring(keybind_name or "New Keybind")
  3410.  
  3411.          callback = typeof(callback) == "function" and callback or function()end
  3412.  
  3413.          keybind_options = typeof(keybind_options) == "table" and keybind_options or {}
  3414.  
  3415.          keybind_options = {
  3416.  
  3417.             ["standard"] = keybind_options.standard or Enum.KeyCode.RightShift,
  3418.  
  3419.          }
  3420.  
  3421.  
  3422.  
  3423.  
  3424.  
  3425.  
  3426.  
  3427.          callback = typeof(callback) == "function" and callback or function()end
  3428.  
  3429.          keybind_options = typeof(keybind_options) == "table" and keybind_options or {}
  3430.  
  3431.          keybind_options = {
  3432.  
  3433.             ["standard"] = keybind_options.standard or Enum.KeyCode.RightShift,
  3434.  
  3435.          }
  3436.  
  3437.  
  3438.  
  3439.          local shortkeys = { -- thanks to stroketon for helping me out with this
  3440.  
  3441.             RightControl = 'RightCtrl',
  3442.  
  3443.             LeftControl = 'LeftCtrl',
  3444.  
  3445.             LeftShift = 'LShift',
  3446.  
  3447.             RightShift = 'RShift',
  3448.  
  3449.             MouseButton1 = "Mouse1",
  3450.  
  3451.             MouseButton2 = "Mouse2"
  3452.  
  3453.          }
  3454.  
  3455.          local checks = {
  3456.  
  3457.             binding = false,
  3458.  
  3459.  
  3460.  
  3461.          }
  3462.  
  3463.          function keybind_data:SetKeybind(Keybind)
  3464.  
  3465.             local key = shortkeys[Keybind.Name] or Keybind.Name
  3466.  
  3467.             TextButton.Text = key
  3468.  
  3469.             keybind = Keybind
  3470.  
  3471.          end
  3472.  
  3473.  
  3474.  
  3475.          UIS.InputBegan:Connect(function(a, b)
  3476.  
  3477.             if checks.binding then
  3478.  
  3479.                spawn(function()
  3480.  
  3481.                   wait()
  3482.  
  3483.                   checks.binding = false
  3484.  
  3485.                end)
  3486.  
  3487.                return
  3488.  
  3489.             end
  3490.  
  3491.             if a.KeyCode == keybind and not b then
  3492.  
  3493.                pcall(callback, keybind)
  3494.  
  3495.             end
  3496.  
  3497.          end)
  3498.  
  3499.  
  3500.  
  3501.          keybind_data:SetKeybind(keybind_options.standard)
  3502.  
  3503.  
  3504.  
  3505.          TextButton.MouseButton1Click:Connect(function()
  3506.  
  3507.             if checks.binding then return end
  3508.  
  3509.             TextButton.Text = "..."
  3510.  
  3511.             checks.binding = true
  3512.  
  3513.             local a, b = UIS.InputBegan:Wait()
  3514.  
  3515.             keybind_data:SetKeybind(a.KeyCode)
  3516.  
  3517.          end)
  3518.  
  3519.          return keybind_data
  3520.  
  3521.       end
  3522.  
  3523.  
  3524.  
  3525.  
  3526.  
  3527.       function ContainerItems:Textbox(text, disapper, callback)
  3528.  
  3529.          local Textbox = Instance.new("TextButton")
  3530.  
  3531.          local Title = Instance.new("TextLabel")
  3532.  
  3533.          local TextboxFrame = Instance.new("Frame")
  3534.  
  3535.          local TextboxFrameCorner = Instance.new("UICorner")
  3536.  
  3537.          local TextBox = Instance.new("TextBox")
  3538.  
  3539.          local TextboxCorner = Instance.new("UICorner")
  3540.  
  3541.  
  3542.  
  3543.          Textbox.Name = "Textbox"
  3544.  
  3545.          Textbox.Parent = Container
  3546.  
  3547.          Textbox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  3548.  
  3549.          Textbox.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  3550.  
  3551.          Textbox.Size = UDim2.new(0, 405, 0, 40)
  3552.  
  3553.          Textbox.AutoButtonColor = false
  3554.  
  3555.          Textbox.Font = Enum.Font.Gotham
  3556.  
  3557.          Textbox.Text = ""
  3558.  
  3559.          Textbox.TextColor3 = Color3.fromRGB(255, 255, 255)
  3560.  
  3561.          Textbox.TextSize = 14.000
  3562.  
  3563.  
  3564.  
  3565.          Title.Name = "Title"
  3566.  
  3567.          Title.Parent = Textbox
  3568.  
  3569.          Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3570.  
  3571.          Title.BackgroundTransparency = 1.000
  3572.  
  3573.          Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  3574.  
  3575.          Title.Size = UDim2.new(0, 405, 0, 40)
  3576.  
  3577.          Title.Font = Enum.Font.Gotham
  3578.  
  3579.          Title.Text = text
  3580.  
  3581.          Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  3582.  
  3583.          Title.TextSize = 15.000
  3584.  
  3585.          Title.TextXAlignment = Enum.TextXAlignment.Left
  3586.  
  3587.  
  3588.  
  3589.          TextboxFrame.Name = "TextboxFrame"
  3590.  
  3591.          TextboxFrame.Parent = Textbox
  3592.  
  3593.          TextboxFrame.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  3594.  
  3595.          TextboxFrame.Position = UDim2.new(0.650124013, 0, 0.16, 0)
  3596.  
  3597.          TextboxFrame.Size = UDim2.new(0, 134, 0, 24)
  3598.  
  3599.  
  3600.  
  3601.          TextboxFrameCorner.CornerRadius = UDim.new(0, 6)
  3602.  
  3603.          TextboxFrameCorner.Name = "TextboxFrameCorner"
  3604.  
  3605.          TextboxFrameCorner.Parent = TextboxFrame
  3606.  
  3607.  
  3608.  
  3609.          TextBox.Parent = TextboxFrame
  3610.  
  3611.          TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3612.  
  3613.          TextBox.BackgroundTransparency = 1.000
  3614.  
  3615.          TextBox.Size = UDim2.new(0, 134, 0, 19)
  3616.  
  3617.          TextBox.Font = Enum.Font.Gotham
  3618.  
  3619.          TextBox.Text = ""
  3620.  
  3621.          TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  3622.  
  3623.          TextBox.TextSize = 15.000
  3624.  
  3625.  
  3626.  
  3627.          TextboxCorner.CornerRadius = UDim.new(0, 6)
  3628.  
  3629.          TextboxCorner.Name = "TextboxCorner"
  3630.  
  3631.          TextboxCorner.Parent = Textbox
  3632.  
  3633.  
  3634.  
  3635.          TextBox.FocusLost:Connect(
  3636.  
  3637.             function(ep)
  3638.  
  3639.                if ep then
  3640.  
  3641.                   if #TextBox.Text > 0 then
  3642.  
  3643.                      pcall(callback, TextBox.Text)
  3644.  
  3645.                      if disapper then
  3646.  
  3647.                         TextBox.Text = ""
  3648.  
  3649.                      end
  3650.  
  3651.                   end
  3652.  
  3653.                end
  3654.  
  3655.             end
  3656.  
  3657.          )
  3658.  
  3659.  
  3660.  
  3661.          Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  3662.  
  3663.       end
  3664.  
  3665.       return ContainerItems
  3666.  
  3667.    end
  3668.  
  3669.    return Tabs
  3670.  
  3671.   end
  3672.  
  3673. -- oofhead should stop making jokes
  3674.  
  3675. local Win = VLib:Window("GA$ ", "v1.5")
  3676.  
  3677.  
  3678.  
  3679. local Main= Win:Tab('Main')
  3680.  
  3681. Main:Button("AimLock (Q)",function()
  3682.  
  3683.  loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Hyotinhofofinho/s1mple/main/LIXO"))()
  3684.  
  3685. end)
  3686.  
  3687. Main:Button("Project BullShit",function()
  3688.  
  3689. loadstring(game:HttpGet("https://pastebin.com/raw/uw2P2fbY", true))()
  3690.  
  3691. end)
  3692.  
  3693. Main:Button("Reduce Lag",function()
  3694.  
  3695. loadstring(game:HttpGet("https://raw.githubusercontent.com/angeloX041/reduce-lag/main/ReduceLagByG_87",true))();
  3696.  
  3697. end)
  3698.  
  3699. Main:Button("Super Speed (C)",function()
  3700.  
  3701. loadstring(game:HttpGet("https://raw.githubusercontent.com/angeloX041/Speedc/main/SuperSpeedC ", true))()
  3702.  
  3703. end)
  3704.  
  3705. Main:Button("Fov 120",function()
  3706.  
  3707. workspace.CurrentCamera.FieldOfView=120
  3708.  
  3709. end)
  3710.  
  3711. Main:Button("Fov 90",function()
  3712.  
  3713. workspace.CurrentCamera.FieldOfView=90
  3714.  
  3715. end)
  3716.  
  3717. Main:Button("Default Fov",function()
  3718.  
  3719. workspace.CurrentCamera.FieldOfView=70
  3720.  
  3721. end)
  3722.  
  3723. local Player= Win:Tab('Player')
  3724.  
  3725. Player:Button("Right korblox (client)",function()
  3726.  
  3727. loadstring(game:HttpGet('https://raw.githubusercontent.com/carlcoded/pro/main/rightkorbloxperma'))()
  3728.  
  3729. end)
  3730.  
  3731. Player:Button("Left korblox (client)",function()
  3732.  
  3733. loadstring(game:HttpGet('https://raw.githubusercontent.com/carlxdd/misc-releases/main/leftkorblox'))()
  3734.  
  3735. end)
  3736.  
  3737. Player:Button("Headless (client)",function()
  3738.  
  3739. loadstring(game:HttpGet('https://raw.githubusercontent.com/carlcoded/pro/main/headlessperma'))()
  3740.  
  3741. end)
  3742.  
  3743. Player:Button("Animation Combos ",function()
  3744.  
  3745. loadstring(game:HttpGet('https://raw.githubusercontent.com/carlcoded/scripp/main/animationcombos'))()
  3746.  
  3747. end)
  3748.  
  3749. Player:Button("Face Changer (client)",function()
  3750.  
  3751. loadstring(game:HttpGet('https://raw.githubusercontent.com/carlcoded/Scripts/main/carlface'))()
  3752.  
  3753. end)
  3754.  
  3755. local Credits= Win:Tab('Credits')
  3756.  
  3757. Credits:Button("Gui By G_87#5392",function()
  3758.  
  3759. print ("GA$ WIN")
  3760.  
  3761. end)
  3762.  
  3763. Credits:Button("discord.gg/77MfmAjEdS",function()
  3764.  
  3765. print ("Join https://discord.gg/77MfmAjEdS")
  3766.  
  3767. end)



  • Recent Roblox Scripts