SkeletalScripts

Graveyard Lib

Mar 14th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 35.61 KB | None | 0 0
  1. --[[ Graveyard Library V1.0.0
  2.  
  3. Made by SkeletalScripts
  4.  
  5. Send in additions to: https://discord.gg/VwSmaKt
  6.  
  7. also sorry for the sloppy coding... I made this in roblox studio!
  8.  
  9. --]]
  10.  
  11. --[[  Information to coding with this library...
  12.  
  13.  
  14. 1. Toggles
  15.  
  16.   Toggles are acessed by using the function  "Toggle"
  17.   You can edit the toggle by using built in modifications such as: "Text", "Nav", "Num"
  18.  
  19.   Using the modifications:
  20.  
  21.   Text:   You can change the text that shows up after using this script
  22.  
  23.   Nav:    Nav is basically a shortened version of Navigation AKA Gui Windows... This will alter the screen that it shows up on
  24.  
  25.   Num:    Num is the number that it is... It basically prevents blockages so make sure to make all the numbers different. I recommend        
  26.           counting up the toggles until you have stopped coding the script
  27.  
  28.    Example: Toggle("Toggle","NavWindowMain1",1) NavWindowMain1.Toggle1.ToggleBox.MouseButton1Click:Connect(function()
  29.    end)
  30.  
  31. 2. Buttons
  32.  
  33.   Buttons are acessed by using the function "Button"
  34.   You can edit the button by using the built in modifications such as: "Text", "Nav", "Num"
  35.  
  36.   It is basically the same thing as toggle but a button...
  37.  
  38.   Example: Button("Button","NavWindowMain1",1) NavWindowMain1.Button1.MouseButton1Click:Connect(function()
  39.    end)
  40.  
  41. 3. Boxes
  42.  
  43.   Boxes are acessed by using the function "Box"
  44.   You can edit the box by using the built in modifications such as: "Text", "Nav", "Num"
  45.  
  46.    It is basically the same thing as button but a box... This also means the user wont be forced to use one type that you made.
  47.  
  48.   Example: Box("Box","NavWindowMain1",1)    spawn(function() while wait() do if NavWindowMain1.Box1.ButtonBox.Text ~= "" then end end
  49.    end)
  50.  
  51. 4. Sections
  52.  
  53.   Sections are acessed by using the function "Section"
  54.   You can edit the box by using the built in modifications such as: "Text", "Nav", "Num"
  55.  
  56.    It is basically a text label but named a Section... This can point out things or give messages to the users
  57.  
  58.   Example: Section("Section","NavWindowMain1",1)  -- literally thats it
  59.  
  60.  
  61. 5. TextBoxes
  62.  
  63.   TextBoxes are acessed by using the function "TextBox"
  64.   You can edit the TextBox by using the built in modifications such as: "Text", "Nav", "Num"
  65.  
  66.    It is basically another box but named a TextBox... This can be used for strings and numbers...
  67.  
  68.   Example: TextBox("TextBox","NavWindowMain1",1)  spawn(function() while wait() do if NavWindowMain1.TextBox1.Text ~= "" then end end
  69.    end)
  70.  
  71. I hope you enjoy this script
  72. --]]
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98. _G.Underlinecolor = "rainbow" -- there is several other colors
  99. _G.Sidelinecolor = "rainbow" -- there is several other colors
  100. _G.Title = "Graveyard Library" -- this has full customization
  101. _G.TitleFont = "Garamond" -- this you can change
  102. _G.Titlecolor = "rainbow" -- there is several other colors
  103.  
  104. -- these will be on every button so i ask for you to like how it looks...
  105.  
  106. _G.ButtonFonts = "Fantasy" -- this you can change
  107. _G.ButtonColor = "rainbow" -- there is several other colors
  108.  
  109. -- the navigation things are what will show up on the left side of the gui
  110.  
  111. _G.NavigationButtonColor = "rainbow"
  112. _G.NavigationButton1Text = "blank"
  113. _G.NavigationButton2Text = "blank"
  114. _G.NavigationButton3Text = "blank"
  115. _G.NavigationButton4Text = "blank"
  116. _G.NavigationButton5Text = "blank"
  117. _G.MinimizeColor = "rainbow"
  118.  
  119. -- no more customs
  120. -- no seriously... dont change anything else
  121.  
  122. -- trust me dont change anything else... unless you know actual coding and are trying to improve this...
  123.  
  124. _G.mainbackground = Color3.fromRGB(35, 35, 35)
  125. _G.mainbordercolor = Color3.fromRGB(60,60,60)
  126. local ScreenGui = Instance.new("ScreenGui")
  127. local function Toggle(Text, Nav, Num)  -- lol XD this is a Toggle if you are retarded
  128.     local ToggleButton = Instance.new("TextLabel", Nav)
  129.     ToggleButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  130.     ToggleButton.BackgroundTransparency = 1
  131.     ToggleButton.Size = UDim2.new(0,100,0,30)
  132.     ToggleButton.TextScaled = true
  133.     ToggleButton.Font =_G.ButtonFonts
  134.     ToggleButton.Text = Text
  135.     ToggleButton.Name = "Toggle"..Num
  136.     local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
  137.         local localscript = Instance.new('LocalScript', ToggleButton)
  138.         local selected = ToggleButton
  139.         local color = _G.ButtonColor
  140.         if color == "red" or color =="Red" then
  141.             selected.TextColor3 = Color3.fromRGB(255,0,0)
  142.         end
  143.         if color == "blue" or color =="Blue" then
  144.             selected.TextColor3 = Color3.fromRGB(0,0,255)
  145.         end
  146.         if color == "Green" or color =="green" then
  147.             selected.TextColor3 = Color3.fromRGB(0,255,0)
  148.         end
  149.         if color == "White" or color =="white" then
  150.             selected.TextColor3 = Color3.fromRGB(255,255,255)
  151.         end
  152.         if color == "rainbow" or color == "Rainbow" then
  153.             while true do
  154.                 for i=0, 1, 1 / 300 do              
  155.                     selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  156.                     wait()
  157.                 end;
  158.             end
  159.         end
  160.     end
  161.     coroutine.wrap(RainbowButtonToggle_fake_script)()  
  162.     local ToggleBox = Instance.new("TextButton", ToggleButton)
  163.     ToggleBox.BackgroundColor3 = Color3.fromRGB(35,35,35)
  164.     ToggleBox.BackgroundTransparency = 0
  165.     ToggleBox.BorderColor3 = Color3.fromRGB(255,255,255)
  166.     ToggleBox.Size = UDim2.new(0,27,0,27)
  167.     ToggleBox.TextColor3 = Color3.fromRGB(255,255,255)
  168.     ToggleBox.TextScaled = true
  169.     ToggleBox.Font =_G.ButtonFonts
  170.     ToggleBox.Position = UDim2.new(0.8,0,0.018,0)
  171.     ToggleBox.Text = ""
  172.     ToggleBox.Name = "ToggleBox"
  173.     ToggleBox.MouseButton1Click:Connect(function()
  174.             if ToggleBox.Text ~= "⭕" then
  175.                 ToggleBox.Text = "⭕"
  176.                 print("On")
  177.             elseif ToggleBox.Text == "⭕" then
  178.                 print("Off")
  179.                 ToggleBox.Text = ""
  180.             end
  181.         end)
  182.     local function ButtonToggle_fake_script() -- ToggleBox.LocalScript
  183.         local localscript = Instance.new('LocalScript', ToggleBox)
  184.         local selected = ToggleBox
  185.         local color = _G.ButtonColor
  186.         if color == "red" or color =="Red" then
  187.             selected.BorderColor3 = Color3.fromRGB(255,0,0)
  188.         end
  189.         if color == "blue" or color =="Blue" then
  190.             selected.BorderColor3 = Color3.fromRGB(0,0,255)
  191.         end
  192.         if color == "Green" or color =="green" then
  193.             selected.BorderColor3 = Color3.fromRGB(0,255,0)
  194.         end
  195.         if color == "White" or color =="white" then
  196.             selected.BorderColor3 = Color3.fromRGB(255,255,255)
  197.         end
  198.         if color == "rainbow" or color == "Rainbow" then
  199.             while true do
  200.                 for i=0, 1, 1 / 300 do              
  201.                     selected.BorderColor3 = Color3.fromHSV(i,1,1);
  202.                     wait()
  203.                 end;
  204.             end
  205.         end
  206.     end
  207.     coroutine.wrap(ButtonToggle_fake_script)() 
  208. end
  209. local function Button(Text, Nav, Num)  -- lol XD this is a Button if you are retarded
  210.     local NormalButton = Instance.new("TextButton", Nav)
  211.     NormalButton.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  212.     NormalButton.BackgroundTransparency = 1
  213.     NormalButton.Size = UDim2.new(0,100,0,30)
  214.     NormalButton.TextScaled = true
  215.     NormalButton.Font =_G.ButtonFonts
  216.     NormalButton.Text = Text
  217.     NormalButton.Name = "Button"..Num
  218.     local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
  219.         local localscript = Instance.new('LocalScript', NormalButton)
  220.         local selected = NormalButton
  221.         local color = _G.ButtonColor
  222.         if color == "red" or color =="Red" then
  223.             selected.TextColor3 = Color3.fromRGB(255,0,0)
  224.         end
  225.         if color == "blue" or color =="Blue" then
  226.             selected.TextColor3 = Color3.fromRGB(0,0,255)
  227.         end
  228.         if color == "Green" or color =="green" then
  229.             selected.TextColor3 = Color3.fromRGB(0,255,0)
  230.         end
  231.         if color == "White" or color =="white" then
  232.             selected.TextColor3 = Color3.fromRGB(255,255,255)
  233.         end
  234.         if color == "rainbow" or color == "Rainbow" then
  235.             while true do
  236.                 for i=0, 1, 1 / 300 do              
  237.                     selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  238.                     wait()
  239.                 end;
  240.             end
  241.         end
  242.     end
  243.     coroutine.wrap(RainbowButtonToggle_fake_script)()  
  244.     NormalButton.MouseButton1Click:Connect(function()
  245.             if NormalButton.BackgroundColor3 ~= Color3.fromRGB(38, 76, 38) then
  246.                 NormalButton.BackgroundColor3 = Color3.fromRGB(38, 76, 38)
  247.                 print("On")
  248.             elseif NormalButton.BackgroundColor3 == Color3.fromRGB(38, 38, 38)then
  249.                 print("Off")
  250.                 NormalButton.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  251.             end
  252.     end)   
  253. end
  254. local function Box(Text, Nav, Num)  -- lol XD this is a Toggle if you are retarded
  255.     local ToggleButton = Instance.new("TextLabel", Nav)
  256.     ToggleButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  257.     ToggleButton.BackgroundTransparency = 1
  258.     ToggleButton.Size = UDim2.new(0,100,0,30)
  259.     ToggleButton.TextScaled = true
  260.     ToggleButton.Font =_G.ButtonFonts
  261.     ToggleButton.Text = Text
  262.     ToggleButton.Name = "Box"..Num
  263.     local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
  264.         local localscript = Instance.new('LocalScript', ToggleButton)
  265.         local selected = ToggleButton
  266.         local color = _G.ButtonColor
  267.         if color == "red" or color =="Red" then
  268.             selected.TextColor3 = Color3.fromRGB(255,0,0)
  269.         end
  270.         if color == "blue" or color =="Blue" then
  271.             selected.TextColor3 = Color3.fromRGB(0,0,255)
  272.         end
  273.         if color == "Green" or color =="green" then
  274.             selected.TextColor3 = Color3.fromRGB(0,255,0)
  275.         end
  276.         if color == "White" or color =="white" then
  277.             selected.TextColor3 = Color3.fromRGB(255,255,255)
  278.         end
  279.         if color == "rainbow" or color == "Rainbow" then
  280.             while true do
  281.                 for i=0, 1, 1 / 300 do              
  282.                     selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  283.                     wait()
  284.                 end;
  285.             end
  286.         end
  287.     end
  288.     coroutine.wrap(RainbowButtonToggle_fake_script)()  
  289.     local ButtonBox = Instance.new("TextBox", ToggleButton)
  290.     ButtonBox.BackgroundColor3 = Color3.fromRGB(35,35,35)
  291.     ButtonBox.BackgroundTransparency = 0
  292.     ButtonBox.BorderColor3 = Color3.fromRGB(255,255,255)
  293.     ButtonBox.Size = UDim2.new(0,38,0,27)
  294.     ButtonBox.TextColor3 = Color3.fromRGB(255,255,255)
  295.     ButtonBox.TextScaled = true
  296.     ButtonBox.Font =_G.ButtonFonts
  297.     ButtonBox.Position = UDim2.new(0.72,0,0.018,0)
  298.     ButtonBox.Name = "ButtonBox"
  299.    
  300.     local function ButtonToggle_fake_script() -- ButtonBox.LocalScript
  301.         local localscript = Instance.new('LocalScript', ButtonBox)
  302.         local selected = ButtonBox
  303.         local color = _G.ButtonColor
  304.         if color == "red" or color =="Red" then
  305.             selected.BorderColor3 = Color3.fromRGB(255,0,0)
  306.         end
  307.         if color == "blue" or color =="Blue" then
  308.             selected.BorderColor3 = Color3.fromRGB(0,0,255)
  309.         end
  310.         if color == "Green" or color =="green" then
  311.             selected.BorderColor3 = Color3.fromRGB(0,255,0)
  312.         end
  313.         if color == "White" or color =="white" then
  314.             selected.BorderColor3 = Color3.fromRGB(255,255,255)
  315.         end
  316.         if color == "rainbow" or color == "Rainbow" then
  317.             while true do
  318.                 for i=0, 1, 1 / 300 do              
  319.                     selected.BorderColor3 = Color3.fromHSV(i,1,1);
  320.                     wait()
  321.                 end;
  322.             end
  323.         end
  324.     end
  325.     coroutine.wrap(ButtonToggle_fake_script)() 
  326. end
  327. local function TextBox(Text,Nav,Num)
  328.     local Text1Box = Instance.new("TextBox", Nav)
  329.     Text1Box.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  330.     Text1Box.BackgroundTransparency = 1
  331.     Text1Box.Size = UDim2.new(0,100,0,30)
  332.     Text1Box.TextScaled = true
  333.     Text1Box.Font =_G.ButtonFonts
  334.     Text1Box.Text = Text
  335.     Text1Box.Name = "TextBox"..Num
  336.     local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
  337.         local localscript = Instance.new('LocalScript', Text1Box)
  338.         local selected = Text1Box
  339.         local color = _G.ButtonColor
  340.         if color == "red" or color =="Red" then
  341.             selected.PlaceholderColor3 = Color3.fromRGB(255,0,0)
  342.             selected.TextColor3 = Color3.fromRGB(255,0,0)
  343.         end
  344.         if color == "blue" or color =="Blue" then
  345.             selected.PlaceholderColor3 = Color3.fromRGB(0,0,255)
  346.             selected.TextColor3 = Color3.fromRGB(0,0,255)
  347.         end
  348.         if color == "Green" or color =="green" then
  349.             selected.PlaceholderColor3 = Color3.fromRGB(0,255,0)
  350.             selected.TextColor3 = Color3.fromRGB(0,255,0)
  351.         end
  352.         if color == "White" or color =="white" then
  353.             selected.PlaceholderColor3 = Color3.fromRGB(255,255,255)
  354.             selected.TextColor3 = Color3.fromRGB(255,255,255)
  355.         end
  356.         if color == "rainbow" or color == "Rainbow" then
  357.             while true do
  358.                 for i=0, 1, 1 / 300 do              
  359.                     selected.PlaceholderColor3 = Color3.fromHSV(i, 1, 1);
  360.                     selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  361.                     wait()
  362.                 end;
  363.             end
  364.         end
  365.     end
  366.     coroutine.wrap(RainbowButtonToggle_fake_script)()  
  367. end
  368. local function Section(Text,Nav,Num)
  369.     local Sect = Instance.new("TextLabel", Nav)
  370.     Sect.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
  371.     Sect.BackgroundTransparency = 0
  372.     Sect.Size = UDim2.new(0,100,0,30)
  373.     Sect.TextScaled = true
  374.     Sect.Font =_G.ButtonFonts
  375.     Sect.Text = Text
  376.     Sect.Name = "Section"..Num
  377.     local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
  378.         local localscript = Instance.new('LocalScript', Sect)
  379.         local selected = Sect
  380.         local color = _G.ButtonColor
  381.         if color == "red" or color =="Red" then
  382.             selected.TextColor3 = Color3.fromRGB(255,0,0)
  383.             Sect.BorderColor3 = Color3.fromRGB(255,0,0)
  384.         end
  385.         if color == "blue" or color =="Blue" then
  386.             selected.TextColor3 = Color3.fromRGB(0,0,255)
  387.             Sect.BorderColor3 =  Color3.fromRGB(0,0,255)
  388.         end
  389.         if color == "Green" or color =="green" then
  390.             selected.TextColor3 = Color3.fromRGB(0,255,0)
  391.             Sect.BorderColor3 =  Color3.fromRGB(0,255,0)
  392.         end
  393.         if color == "White" or color =="white" then
  394.             selected.TextColor3 = Color3.fromRGB(255,255,255)
  395.             Sect.BorderColor3 =  Color3.fromRGB(255,255,255)
  396.         end
  397.         if color == "rainbow" or color == "Rainbow" then
  398.             while true do
  399.                 for i=0, 1, 1 / 300 do              
  400.                     selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  401.                     Sect.BorderColor3 = Color3.fromHSV(i, 1, 1);
  402.                     wait()
  403.                 end;
  404.             end
  405.         end
  406.     end
  407.     coroutine.wrap(RainbowButtonToggle_fake_script)()  
  408. end
  409. function RandomCharacters(length) -- not mine
  410.         local STR = ''
  411.        
  412.         for i = 1, length do
  413.             STR = STR .. string.char(math.random(45,90))
  414.         end
  415.        
  416.         return string.lower(STR)
  417.     end
  418. function protect(object) --
  419.         local rs = game:GetService("RunService")
  420.         rs.RenderStepped:Connect(function()
  421.             local namesused = {"idk"}
  422.             local name = RandomCharacters("1000")
  423.             if namesused[name] then
  424.                 name = RandomCharacters("1000")
  425.                 object.Name = name
  426.                 table.insert(namesused,name)
  427.             else
  428.                 object.Name = name
  429. table.insert(namesused,name)
  430. end
  431. end)
  432. end
  433. protect(ScreenGui)
  434. local main = Instance.new("Frame")
  435. local Sections = Instance.new("Frame")
  436. local UIListLayout = Instance.new("UIListLayout")
  437. local Navigation1 = Instance.new("TextButton")
  438. local Navigation2 = Instance.new("TextButton")
  439. local Navigation3 = Instance.new("TextButton")
  440. local Navigation4 = Instance.new("TextButton")
  441. local Navigation5 = Instance.new("TextButton")
  442. local Underline = Instance.new("Frame")
  443. local TextLabel = Instance.new("TextLabel")
  444. local ImageLabel = Instance.new("ImageLabel")
  445. local Sideline = Instance.new("Frame")
  446. local Minimize = Instance.new("TextButton")
  447. local NavWindow = Instance.new("Frame")
  448. local NavWindowMain1 = Instance.new("Frame")
  449. local NavWindowMain2 = Instance.new("Frame")
  450. local NavWindowMain3 = Instance.new("Frame")
  451. local NavWindowMain4 = Instance.new("Frame")
  452. local NavWindowMain5 = Instance.new("Frame")
  453. local UIList1 = Instance.new("UIGridLayout",NavWindowMain1); UIList1.CellPadding = UDim2.new(0, 5,0, 5); UIList1.CellSize = UDim2.new(0, 138,0, 20); UIList1.FillDirection = "Vertical";UIList1.HorizontalAlignment = "Left"; UIList1.StartCorner = "TopLeft" UIList1.VerticalAlignment = "Top"
  454. local UIList2 = Instance.new("UIGridLayout",NavWindowMain2); UIList2.CellPadding = UDim2.new(0, 5,0, 5); UIList2.CellSize = UDim2.new(0, 138,0, 20); UIList2.FillDirection = "Vertical";UIList2.HorizontalAlignment = "Left"; UIList2.StartCorner = "TopLeft" UIList2.VerticalAlignment = "Top"
  455. local UIList3 = Instance.new("UIGridLayout",NavWindowMain3); UIList3.CellPadding = UDim2.new(0, 5,0, 5); UIList3.CellSize = UDim2.new(0, 138,0, 20); UIList3.FillDirection = "Vertical";UIList3.HorizontalAlignment = "Left"; UIList3.StartCorner = "TopLeft" UIList3.VerticalAlignment = "Top"
  456. local UIList4 = Instance.new("UIGridLayout",NavWindowMain4); UIList4.CellPadding = UDim2.new(0, 5,0, 5); UIList4.CellSize = UDim2.new(0, 138,0, 20); UIList4.FillDirection = "Vertical";UIList4.HorizontalAlignment = "Left"; UIList4.StartCorner = "TopLeft" UIList4.VerticalAlignment = "Top"
  457. local UIList5 = Instance.new("UIGridLayout",NavWindowMain5); UIList5.CellPadding = UDim2.new(0, 5,0, 5); UIList5.CellSize = UDim2.new(0, 138,0, 20); UIList5.FillDirection = "Vertical";UIList5.HorizontalAlignment = "Left"; UIList5.StartCorner = "TopLeft" UIList5.VerticalAlignment = "Top"
  458.  
  459. --Properties:
  460.  
  461. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  462. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  463. ScreenGui.ResetOnSpawn = false
  464.  
  465. main.Name = "main"
  466. main.Parent = ScreenGui
  467. main.Active = true
  468. main.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  469. main.BorderColor3 = Color3.fromRGB(60, 60, 60)
  470. main.Position = UDim2.new(0.537, 0, 0.582, 0)
  471. main.Selectable = true
  472. main.Size = UDim2.new(0, 547, 0, 250)
  473.  
  474. Sections.Name = "Sections"
  475. Sections.Parent = main
  476. Sections.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  477. Sections.BorderColor3 = Color3.fromRGB(60, 60, 60)
  478. Sections.BorderSizePixel = 0
  479. Sections.Position = UDim2.new(0.002, 0, 0.131, 0)
  480. Sections.Size = UDim2.new(0, 100, 0, 189)
  481.  
  482. UIListLayout.Parent = Sections
  483. UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  484. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  485. UIListLayout.Padding = UDim.new(0.0250000004, 10)
  486.  
  487. Navigation1.Name = "Navigation1"
  488. Navigation1.Parent = Sections
  489. Navigation1.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  490. Navigation1.BackgroundTransparency = 1.000
  491. Navigation1.BorderSizePixel = 0
  492. Navigation1.Position = UDim2.new(0, 0, 0.0803212821, 0)
  493. Navigation1.Size = UDim2.new(0, 100, 0, 30)
  494. Navigation1.Font = Enum.Font.Fantasy
  495. Navigation1.Text = ""
  496. Navigation1.TextColor3 = Color3.fromRGB(255, 255, 255)
  497. Navigation1.TextScaled = true
  498. Navigation1.TextSize = 14.000
  499. Navigation1.TextWrapped = true
  500.  
  501. Navigation2.Name = "Navigation2"
  502. Navigation2.Parent = Sections
  503. Navigation2.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  504. Navigation2.BackgroundTransparency = 1.000
  505. Navigation2.BorderSizePixel = 0
  506. Navigation2.Position = UDim2.new(0, 0, 0.0803212821, 0)
  507. Navigation2.Size = UDim2.new(0, 100, 0, 30)
  508. Navigation2.Font = Enum.Font.Fantasy
  509. Navigation2.Text = ""
  510. Navigation2.TextColor3 = Color3.fromRGB(255, 255, 255)
  511. Navigation2.TextScaled = true
  512. Navigation2.TextSize = 14.000
  513. Navigation2.TextWrapped = true
  514.  
  515. Navigation3.Name = "Navigation3"
  516. Navigation3.Parent = Sections
  517. Navigation3.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  518. Navigation3.BackgroundTransparency = 1.000
  519. Navigation3.BorderSizePixel = 0
  520. Navigation3.Position = UDim2.new(0, 0, 0.0803212821, 0)
  521. Navigation3.Size = UDim2.new(0, 100, 0, 30)
  522. Navigation3.Font = Enum.Font.Fantasy
  523. Navigation3.Text = ""
  524. Navigation3.TextColor3 = Color3.fromRGB(255, 255, 255)
  525. Navigation3.TextScaled = true
  526. Navigation3.TextSize = 14.000
  527. Navigation3.TextWrapped = true
  528.  
  529. Navigation4.Name = "Navigation4"
  530. Navigation4.Parent = Sections
  531. Navigation4.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  532. Navigation4.BackgroundTransparency = 1.000
  533. Navigation4.BorderSizePixel = 0
  534. Navigation4.Position = UDim2.new(0, 0, 0.0803212821, 0)
  535. Navigation4.Size = UDim2.new(0, 100, 0, 30)
  536. Navigation4.Font = Enum.Font.Fantasy
  537. Navigation4.Text = ""
  538. Navigation4.TextColor3 = Color3.fromRGB(255, 255, 255)
  539. Navigation4.TextScaled = true
  540. Navigation4.TextSize = 14.000
  541. Navigation4.TextWrapped = true
  542.  
  543. Navigation5.Name = "Navigation5"
  544. Navigation5.Parent = Sections
  545. Navigation5.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  546. Navigation5.BackgroundTransparency = 1.000
  547. Navigation5.BorderSizePixel = 0
  548. Navigation5.Position = UDim2.new(0, 0, 0.0803212821, 0)
  549. Navigation5.Size = UDim2.new(0, 100, 0, 30)
  550. Navigation5.Font = Enum.Font.Fantasy
  551. Navigation5.Text = ""
  552. Navigation5.TextColor3 = Color3.fromRGB(255, 255, 255)
  553. Navigation5.TextScaled = true
  554. Navigation5.TextSize = 14.000
  555. Navigation5.TextWrapped = true
  556.  
  557. Underline.Name = "Underline"
  558. Underline.Parent = TextLabel
  559. Underline.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  560. Underline.BorderSizePixel = 0
  561. Underline.Position = UDim2.new(0, 0, 1, 0)
  562. Underline.Size = UDim2.new(1, 0, 0, 1)
  563. Underline.ZIndex = 4
  564.  
  565. TextLabel.Parent = main
  566. TextLabel.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  567. TextLabel.BorderColor3 = Color3.fromRGB(60, 60, 60)
  568. TextLabel.Position = UDim2.new(0.002, 0, -0.002, 0)
  569. TextLabel.Size = UDim2.new(0, 547, 0, 30)
  570. TextLabel.ZIndex = 3
  571. TextLabel.Font = Enum.Font.Garamond
  572. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  573. TextLabel.TextScaled = true
  574. TextLabel.TextSize = 14.000
  575. TextLabel.TextWrapped = true
  576. ImageLabel.Image = "http://www.roblox.com/asset/?id=4771494471"
  577. ImageLabel.ScaleType = "Crop"
  578. ImageLabel.BackgroundTransparency = 1
  579. ImageLabel.Parent = TextLabel
  580. ImageLabel.Position = UDim2.new(-0.066,0,-0.875,0)
  581. ImageLabel.Size = UDim2.new(0,103,0,103)
  582.  
  583. Sideline.Name = "Sideline"
  584. Sideline.Parent = main
  585. Sideline.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  586. Sideline.BorderSizePixel = 0
  587. Sideline.Position = UDim2.new(0.185, 0, 0.135, 0)
  588. Sideline.Size = UDim2.new(0, 1, 0, 216)
  589. Sideline.ZIndex = 4
  590.  
  591. Minimize.Name = "Minimize"
  592. Minimize.Parent = main
  593. Minimize.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  594. Minimize.BackgroundTransparency = 1.000
  595. Minimize.Position = UDim2.new(0.947, 0, -0.011, 0)
  596. Minimize.Size = UDim2.new(0, 30, 0, 30)
  597. Minimize.ZIndex = 4
  598. Minimize.Font = Enum.Font.SourceSans
  599. Minimize.Text = "-"
  600. Minimize.TextColor3 = Color3.fromRGB(255, 255, 255)
  601. Minimize.TextScaled = true
  602. Minimize.TextSize = 14.000
  603. Minimize.TextWrapped = true
  604.  
  605. NavWindow.Name = "NavWindow"
  606. NavWindow.Parent = main
  607. NavWindow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  608. NavWindow.BackgroundTransparency = 1.000
  609. NavWindow.Position = UDim2.new(0.186471671, 0, 0.00456620986, 0)
  610. NavWindow.Size = UDim2.new(0, 445, 0, 218)
  611. NavWindow.ZIndex = 2
  612.  
  613. NavWindowMain1.Name = "NavWindowMain1"
  614. NavWindowMain1.Parent = NavWindow
  615. NavWindowMain1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  616. NavWindowMain1.BackgroundTransparency = 1.000
  617. NavWindowMain1.Position = UDim2.new(0,0,0,30)
  618. NavWindowMain1.Size = UDim2.new(0, 445, 0, 220)
  619. NavWindowMain1.ZIndex = 2
  620.  
  621. NavWindowMain2.Name = "NavWindowMain2"
  622. NavWindowMain2.Parent = NavWindow
  623. NavWindowMain2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  624. NavWindowMain2.BackgroundTransparency = 1.000
  625. NavWindowMain2.Position = UDim2.new(0,0,0,30)
  626. NavWindowMain2.Size = UDim2.new(0, 445, 0, 220)
  627. NavWindowMain2.Visible = false
  628. NavWindowMain2.ZIndex = 2
  629.  
  630. NavWindowMain3.Name = "NavWindowMain3"
  631. NavWindowMain3.Parent = NavWindow
  632. NavWindowMain3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  633. NavWindowMain3.BackgroundTransparency = 1.000
  634. NavWindowMain3.Position = UDim2.new(0,0,0,30)
  635. NavWindowMain3.Size = UDim2.new(0, 445, 0, 220)
  636. NavWindowMain3.Visible = false
  637. NavWindowMain3.ZIndex = 2
  638.  
  639. NavWindowMain4.Name = "NavWindowMain4"
  640. NavWindowMain4.Parent = NavWindow
  641. NavWindowMain4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  642. NavWindowMain4.BackgroundTransparency = 1.000
  643. NavWindowMain4.Position = UDim2.new(0,0,0,30)
  644. NavWindowMain4.Size = UDim2.new(0, 445, 0, 220)
  645. NavWindowMain4.Visible = false
  646. NavWindowMain4.ZIndex = 2
  647.  
  648. NavWindowMain5.Name = "NavWindowMain5"
  649. NavWindowMain5.Parent = NavWindow
  650. NavWindowMain5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  651. NavWindowMain5.BackgroundTransparency = 1.000
  652. NavWindowMain5.Position = UDim2.new(0,0,0,30)
  653. NavWindowMain5.Size = UDim2.new(0, 445, 0, 220)
  654. NavWindowMain5.Visible = false
  655. NavWindowMain5.ZIndex = 2
  656.  
  657. -- Scripts:
  658.  
  659. local function ZGFNXNQ_fake_script() -- Navigation1.LocalScript
  660.     local script = Instance.new('LocalScript', Navigation1)
  661.  
  662.     local color = _G.NavigationButtonColor
  663.    
  664.         local selected = script.Parent
  665.             selected.Text = _G.NavigationButton1Text
  666.             if color == "red" or color =="Red" then
  667.                 selected.TextColor3 = Color3.fromRGB(255,0,0)
  668.             end
  669.            
  670.             if color == "blue" or color =="Blue" then
  671.                 selected.TextColor3 = Color3.fromRGB(0,0,255)
  672.             end
  673.            
  674.             if color == "Green" or color =="green" then
  675.                 selected.TextColor3 = Color3.fromRGB(0,255,0)
  676.             end
  677.            
  678.             if color == "White" or color =="white" then
  679.                 selected.TextColor3 = Color3.fromRGB(255,255,255)
  680.             end
  681.            
  682.             if color == "rainbow" or color == "Rainbow" then
  683.                 while true do
  684.                     for i=0, 1, 1 / 300 do              
  685.                            selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  686.                        wait()
  687.                    end;
  688.                 end
  689.             end
  690.            
  691.             script.Parent.MouseButton1Click:Connect(function()
  692.                 for i,v in pairs(script.Parent.Parent.Parent.NavWindow:GetChildren()) do
  693.                     if v.Name ~= "NavWindowMain1" then
  694.                         v.Visible = false
  695.                     else
  696.                         v.Visible = true
  697.                     end
  698.                 end
  699.             end)
  700. end
  701. coroutine.wrap(ZGFNXNQ_fake_script)()
  702. Navigation1.MouseButton1Click:Connect(function()
  703.     for i,v in pairs(NavWindow:GetChildren()) do
  704.         if v.Name ~= "NavWindowMain1" then
  705.             v.Visible = false
  706.         else
  707.             v.Visible = true
  708.         end
  709.     end
  710. end)
  711. local function TDVSJ_fake_script() -- Navigation2.LocalScript
  712.     local script = Instance.new('LocalScript', Navigation2)
  713.  
  714.     local color = _G.NavigationButtonColor
  715.    
  716.         local selected = script.Parent
  717.             selected.Text = _G.NavigationButton2Text
  718.             if color == "red" or color =="Red" then
  719.                 selected.TextColor3 = Color3.fromRGB(255,0,0)
  720.             end
  721.            
  722.             if color == "blue" or color =="Blue" then
  723.                 selected.TextColor3 = Color3.fromRGB(0,0,255)
  724.             end
  725.            
  726.             if color == "Green" or color =="green" then
  727.                 selected.TextColor3 = Color3.fromRGB(0,255,0)
  728.             end
  729.            
  730.             if color == "White" or color =="white" then
  731.                 selected.TextColor3 = Color3.fromRGB(255,255,255)
  732.             end
  733.            
  734.             if color == "rainbow" or color == "Rainbow" then
  735.                 while true do
  736.                     for i=0, 1, 1 / 300 do              
  737.                            selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  738.                        wait()
  739.                    end;
  740.                 end
  741.             end
  742.            
  743.             script.Parent.MouseButton1Click:Connect(function()
  744.                 for i,v in pairs(script.Parent.Parent.Parent.NavWindow:GetChildren()) do
  745.                     if v.Name ~= "NavWindowMain2" then
  746.                         v.Visible = false
  747.                     else
  748.                         v.Visible = true
  749.                     end
  750.                 end
  751.             end)
  752. end
  753. coroutine.wrap(TDVSJ_fake_script)()
  754. Navigation2.MouseButton1Click:Connect(function()
  755.     for i,v in pairs(NavWindow:GetChildren()) do
  756.         if v.Name ~= "NavWindowMain2" then
  757.             v.Visible = false
  758.         else
  759.             v.Visible = true
  760.         end
  761.     end
  762. end)
  763. local function KETW_fake_script() -- Navigation3.LocalScript
  764.     local script = Instance.new('LocalScript', Navigation3)
  765.  
  766.     local color = _G.NavigationButtonColor
  767.    
  768.         local selected = script.Parent
  769.             selected.Text = _G.NavigationButton3Text
  770.             if color == "red" or color =="Red" then
  771.                 selected.TextColor3 = Color3.fromRGB(255,0,0)
  772.             end
  773.            
  774.             if color == "blue" or color =="Blue" then
  775.                 selected.TextColor3 = Color3.fromRGB(0,0,255)
  776.             end
  777.            
  778.             if color == "Green" or color =="green" then
  779.                 selected.TextColor3 = Color3.fromRGB(0,255,0)
  780.             end
  781.            
  782.             if color == "White" or color =="white" then
  783.                 selected.TextColor3 = Color3.fromRGB(255,255,255)
  784.             end
  785.            
  786.             if color == "rainbow" or color == "Rainbow" then
  787.                 while true do
  788.                     for i=0, 1, 1 / 300 do              
  789.                            selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  790.                        wait()
  791.                    end;
  792.                 end
  793.             end
  794.            
  795.            
  796.             script.Parent.MouseButton1Click:Connect(function()
  797.                 for i,v in pairs(script.Parent.Parent.Parent.NavWindow:GetChildren()) do
  798.                     if v.Name ~= "NavWindowMain3" then
  799.                         v.Visible = false
  800.                     else
  801.                         v.Visible = true
  802.                     end
  803.                 end
  804.             end)
  805. end
  806. coroutine.wrap(KETW_fake_script)()
  807. Navigation3.MouseButton1Click:Connect(function()
  808.     for i,v in pairs(NavWindow:GetChildren()) do
  809.         if v.Name ~= "NavWindowMain3" then
  810.             v.Visible = false
  811.         else
  812.             v.Visible = true
  813.         end
  814.     end
  815. end)
  816. local function QJQTIT_fake_script() -- Navigation4.LocalScript
  817.     local script = Instance.new('LocalScript', Navigation4)
  818.  
  819.     local color = _G.NavigationButtonColor
  820.    
  821.         local selected = script.Parent
  822.             selected.Text = _G.NavigationButton4Text
  823.             if color == "red" or color =="Red" then
  824.                 selected.TextColor3 = Color3.fromRGB(255,0,0)
  825.             end
  826.            
  827.             if color == "blue" or color =="Blue" then
  828.                 selected.TextColor3 = Color3.fromRGB(0,0,255)
  829.             end
  830.            
  831.             if color == "Green" or color =="green" then
  832.                 selected.TextColor3 = Color3.fromRGB(0,255,0)
  833.             end
  834.            
  835.             if color == "White" or color =="white" then
  836.                 selected.TextColor3 = Color3.fromRGB(255,255,255)
  837.             end
  838.            
  839.             if color == "rainbow" or color == "Rainbow" then
  840.                 while true do
  841.                     for i=0, 1, 1 / 300 do              
  842.                            selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  843.                        wait()
  844.                    end;
  845.                 end
  846.             end
  847.            
  848.            
  849.             script.Parent.MouseButton1Click:Connect(function()
  850.                 for i,v in pairs(script.Parent.Parent.Parent.NavWindow:GetChildren()) do
  851.                     if v.Name ~= "NavWindowMain4" then
  852.                         v.Visible = false
  853.                     else
  854.                         v.Visible = true
  855.                     end
  856.                 end
  857.             end)
  858. end
  859. coroutine.wrap(QJQTIT_fake_script)()
  860. Navigation4.MouseButton1Click:Connect(function()
  861.     for i,v in pairs(NavWindow:GetChildren()) do
  862.         if v.Name ~= "NavWindowMain4" then
  863.             v.Visible = false
  864.         else
  865.             v.Visible = true
  866.         end
  867.     end
  868. end)
  869. local function AHOOQI_fake_script() -- Navigation5.LocalScript
  870.     local script = Instance.new('LocalScript', Navigation5)
  871.  
  872.     local color = _G.NavigationButtonColor
  873.    
  874.         local selected = script.Parent
  875.             selected.Text = _G.NavigationButton5Text
  876.             if color == "red" or color =="Red" then
  877.                 selected.TextColor3 = Color3.fromRGB(255,0,0)
  878.             end
  879.            
  880.             if color == "blue" or color =="Blue" then
  881.                 selected.TextColor3 = Color3.fromRGB(0,0,255)
  882.             end
  883.            
  884.             if color == "Green" or color =="green" then
  885.                 selected.TextColor3 = Color3.fromRGB(0,255,0)
  886.             end
  887.            
  888.             if color == "White" or color =="white" then
  889.                 selected.TextColor3 = Color3.fromRGB(255,255,255)
  890.             end
  891.            
  892.             if color == "rainbow" or color == "Rainbow" then
  893.                 while true do
  894.                     for i=0, 1, 1 / 300 do              
  895.                            selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  896.                        wait()
  897.                    end;
  898.                 end
  899.             end
  900. end
  901. coroutine.wrap(AHOOQI_fake_script)()
  902. Navigation5.MouseButton1Click:Connect(function()
  903.     for i,v in pairs(NavWindow:GetChildren()) do
  904.         if v.Name ~= "NavWindowMain5" then
  905.             v.Visible = false
  906.         else
  907.             v.Visible = true
  908.         end
  909.     end
  910. end)
  911. local function DMXN_fake_script() -- Underline.LocalScript
  912.     local script = Instance.new('LocalScript', Underline)
  913.  
  914.     local color = _G.Underlinecolor
  915.         local selected = script.Parent
  916.        
  917.         if color == "red" or color =="Red" then
  918.             selected.BackgroundColor3 = Color3.fromRGB(255,0,0)
  919.         end
  920.        
  921.         if color == "blue" or color =="Blue" then
  922.             selected.BackgroundColor3 = Color3.fromRGB(0,0,255)
  923.         end
  924.        
  925.         if color == "Green" or color == "green" then
  926.             selected.BackgroundColor3 = Color3.fromRGB(0,255,0)
  927.         end
  928.        
  929.         if color == "White" or color =="white" then
  930.             selected.BackgroundColor3 = Color3.fromRGB(255,255,255)
  931.         end
  932.        
  933.         if color == "rainbow" or color == "Rainbow" then
  934.             while true do
  935.                 for i=0, 1, 1 / 300 do              
  936.                        selected.BackgroundColor3 = Color3.fromHSV(i, 1, 1);
  937.                    wait()
  938.                end;
  939.             end
  940.         end
  941. end
  942. coroutine.wrap(DMXN_fake_script)()
  943. local function LWID_fake_script() -- TextLabel.LocalScript
  944.     local script = Instance.new('LocalScript', TextLabel)
  945.  
  946.     local color = _G.Titlecolor
  947.         local selected = script.Parent
  948.         local name = _G.Title
  949.         selected.Text = name
  950.        
  951.         if color == "red" or color =="Red" then
  952.             selected.TextColor3 = Color3.fromRGB(255,0,0)
  953.         end
  954.        
  955.         if color == "blue" or color =="Blue" then
  956.             selected.TextColor3 = Color3.fromRGB(0,0,255)
  957.         end
  958.        
  959.         if color == "Green" or color =="green" then
  960.             selected.TextColor3 = Color3.fromRGB(0,255,0)
  961.         end
  962.        
  963.         if color == "White" or color =="white" then
  964.             selected.TextColor3 = Color3.fromRGB(255,255,255)
  965.         end
  966.        
  967.         if color == "rainbow" or color == "Rainbow" then
  968.             while true do
  969.                 for i=0, 1, 1 / 300 do              
  970.                        selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  971.                    wait()
  972.                end;
  973.             end
  974.         end
  975. end
  976. coroutine.wrap(LWID_fake_script)()
  977. local function SBEROSL_fake_script() -- Sideline.LocalScript
  978.     local script = Instance.new('LocalScript', Sideline)
  979.  
  980.     local color = _G.Sidelinecolor
  981.         local selected = script.Parent
  982.        
  983.             if color == "red" or color =="Red" then
  984.                 selected.BackgroundColor3 = Color3.fromRGB(255,0,0)
  985.             end
  986.            
  987.             if color == "blue" or color =="Blue" then
  988.                 selected.BackgroundColor3 = Color3.fromRGB(0,0,255)
  989.             end
  990.            
  991.             if color == "Green" or color =="green" then
  992.                 selected.BackgroundColor3 = Color3.fromRGB(0,255,0)
  993.             end
  994.            
  995.             if color == "White" or color =="white" then
  996.                 selected.BackgroundColor3 = Color3.fromRGB(255,255,255)
  997.             end
  998.            
  999.             if color == "rainbow" or color == "Rainbow" then
  1000.                 while true do
  1001.                     for i=0, 1, 1 / 300 do              
  1002.                            selected.BackgroundColor3 = Color3.fromHSV(i, 1, 1);
  1003.                        wait()
  1004.                    end;
  1005.                 end
  1006.             end
  1007. end
  1008. coroutine.wrap(SBEROSL_fake_script)()
  1009. local function EKIS_fake_script() -- Minimize.LocalScript
  1010.     local script = Instance.new('LocalScript', Minimize)
  1011.     local Toggled = 0
  1012.    
  1013.     script.Parent.MouseButton1Click:Connect(function()
  1014.     if  Toggled == 0 then
  1015.           Toggled = 1
  1016.         script.Parent.Parent.Sections.Visible = false
  1017.         script.Parent.Parent.Sideline.BackgroundTransparency = 1
  1018.         script.Parent.Parent.NavWindow.Visible = false
  1019.         oldpos = main.Position
  1020.         main:TweenPosition(UDim2.new(-0.39, 0, 0.4), "In",6, 2, false, nil)
  1021.         main:TweenSize(UDim2.new(0, 547,0, 34),"In",1,2,false,nil)
  1022.         TextLabel:TweenSize(UDim2.new(0, 34,0, 34),"In",1,2,false,nil)
  1023.         TextLabel:TweenPosition(UDim2.new(0.938, 0,-0.002, 0),"In",1,2,false,nil)
  1024.         ImageLabel:TweenPosition(UDim2.new(-1.036, 0,-0.735, 0),"In",1,2,false,nil)
  1025.         Underline:TweenSize(UDim2.new(0, 34,0, 1),"In",1,2,false,nil)
  1026.         ImageLabel:TweenPosition(UDim2.new(0.875, 0,-0.875, 0), "In",   6,2,false,nil)
  1027.         script.Parent.Text = ""
  1028.         main.Draggable = false
  1029.         else
  1030.           Toggled = 0
  1031.         script.Parent.Parent.BackgroundTransparency = 0
  1032.         script.Parent.Parent.Sections.Visible = true
  1033.         script.Parent.Parent.Sideline.BackgroundTransparency = 0
  1034.         script.Parent.Parent.NavWindow.Visible = true
  1035.         main:TweenPosition(oldpos, "In",6, 2, false, nil)
  1036.         main:TweenSize(UDim2.new(0, 547,0, 250),"In",1,2,false,nil)
  1037.         TextLabel:TweenSize(UDim2.new(0, 547,0, 30),"In",1,2,false,nil)
  1038.         TextLabel:TweenPosition(UDim2.new(0, 0,0, 0),"In",1,2,false,nil)
  1039.         Underline:TweenSize(UDim2.new(0, 547,0, 1),"In",1,2,false,nil)
  1040.         ImageLabel:TweenPosition(UDim2.new(-0.066, 0,-0.875, 0), "In",  6,2,false,nil)
  1041.         script.Parent.Text = "-"
  1042.         main.Draggable = true
  1043.         end
  1044.    
  1045.     end)
  1046. end
  1047. coroutine.wrap(EKIS_fake_script)()
  1048. local function MOTWOX_fake_script() -- Minimize.LocalScript
  1049.     local script = Instance.new('LocalScript', Minimize)
  1050.  
  1051.     local color = _G.MinimizeColor
  1052.         local selected = script.Parent
  1053.        
  1054.         if color == "red" or color =="Red" then
  1055.             selected.TextColor3 = Color3.fromRGB(255,0,0)
  1056.         end
  1057.        
  1058.         if color == "blue" or color =="Blue" then
  1059.             selected.TextColor3 = Color3.fromRGB(0,0,255)
  1060.         end
  1061.        
  1062.         if color == "Green" or color == "green" then
  1063.             selected.TextColor3 = Color3.fromRGB(0,255,0)
  1064.         end
  1065.        
  1066.         if color == "White" or color =="white" then
  1067.             selected.TextColor3 = Color3.fromRGB(255,255,255)
  1068.         end
  1069.        
  1070.         if color == "rainbow" or color == "Rainbow" then
  1071.             while true do
  1072.                 for i=0, 1, 1 / 300 do              
  1073.                        selected.TextColor3 = Color3.fromHSV(i, 1, 1);
  1074.                    wait()
  1075.                end;
  1076.             end
  1077.         end
  1078. end
  1079. coroutine.wrap(MOTWOX_fake_script)()
  1080. local function OZJQKA_fake_script() -- main.LocalScript
  1081.     local script = Instance.new('LocalScript', main)
  1082.  
  1083.     script.Parent.Draggable = true
  1084. end
  1085. coroutine.wrap(OZJQKA_fake_script)()
Add Comment
Please, Sign In to add comment