Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Graveyard Library V1.0.0
- Made by SkeletalScripts
- Send in additions to: https://discord.gg/VwSmaKt
- also sorry for the sloppy coding... I made this in roblox studio!
- --]]
- --[[ Information to coding with this library...
- 1. Toggles
- Toggles are acessed by using the function "Toggle"
- You can edit the toggle by using built in modifications such as: "Text", "Nav", "Num"
- Using the modifications:
- Text: You can change the text that shows up after using this script
- Nav: Nav is basically a shortened version of Navigation AKA Gui Windows... This will alter the screen that it shows up on
- Num: Num is the number that it is... It basically prevents blockages so make sure to make all the numbers different. I recommend
- counting up the toggles until you have stopped coding the script
- Example: Toggle("Toggle","NavWindowMain1",1) NavWindowMain1.Toggle1.ToggleBox.MouseButton1Click:Connect(function()
- end)
- 2. Buttons
- Buttons are acessed by using the function "Button"
- You can edit the button by using the built in modifications such as: "Text", "Nav", "Num"
- It is basically the same thing as toggle but a button...
- Example: Button("Button","NavWindowMain1",1) NavWindowMain1.Button1.MouseButton1Click:Connect(function()
- end)
- 3. Boxes
- Boxes are acessed by using the function "Box"
- You can edit the box by using the built in modifications such as: "Text", "Nav", "Num"
- 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.
- Example: Box("Box","NavWindowMain1",1) spawn(function() while wait() do if NavWindowMain1.Box1.ButtonBox.Text ~= "" then end end
- end)
- 4. Sections
- Sections are acessed by using the function "Section"
- You can edit the box by using the built in modifications such as: "Text", "Nav", "Num"
- It is basically a text label but named a Section... This can point out things or give messages to the users
- Example: Section("Section","NavWindowMain1",1) -- literally thats it
- 5. TextBoxes
- TextBoxes are acessed by using the function "TextBox"
- You can edit the TextBox by using the built in modifications such as: "Text", "Nav", "Num"
- It is basically another box but named a TextBox... This can be used for strings and numbers...
- Example: TextBox("TextBox","NavWindowMain1",1) spawn(function() while wait() do if NavWindowMain1.TextBox1.Text ~= "" then end end
- end)
- I hope you enjoy this script
- --]]
- _G.Underlinecolor = "rainbow" -- there is several other colors
- _G.Sidelinecolor = "rainbow" -- there is several other colors
- _G.Title = "Graveyard Library" -- this has full customization
- _G.TitleFont = "Garamond" -- this you can change
- _G.Titlecolor = "rainbow" -- there is several other colors
- -- these will be on every button so i ask for you to like how it looks...
- _G.ButtonFonts = "Fantasy" -- this you can change
- _G.ButtonColor = "rainbow" -- there is several other colors
- -- the navigation things are what will show up on the left side of the gui
- _G.NavigationButtonColor = "rainbow"
- _G.NavigationButton1Text = "blank"
- _G.NavigationButton2Text = "blank"
- _G.NavigationButton3Text = "blank"
- _G.NavigationButton4Text = "blank"
- _G.NavigationButton5Text = "blank"
- _G.MinimizeColor = "rainbow"
- -- no more customs
- -- no seriously... dont change anything else
- -- trust me dont change anything else... unless you know actual coding and are trying to improve this...
- _G.mainbackground = Color3.fromRGB(35, 35, 35)
- _G.mainbordercolor = Color3.fromRGB(60,60,60)
- local ScreenGui = Instance.new("ScreenGui")
- local function Toggle(Text, Nav, Num) -- lol XD this is a Toggle if you are retarded
- local ToggleButton = Instance.new("TextLabel", Nav)
- ToggleButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- ToggleButton.BackgroundTransparency = 1
- ToggleButton.Size = UDim2.new(0,100,0,30)
- ToggleButton.TextScaled = true
- ToggleButton.Font =_G.ButtonFonts
- ToggleButton.Text = Text
- ToggleButton.Name = "Toggle"..Num
- local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
- local localscript = Instance.new('LocalScript', ToggleButton)
- local selected = ToggleButton
- local color = _G.ButtonColor
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(RainbowButtonToggle_fake_script)()
- local ToggleBox = Instance.new("TextButton", ToggleButton)
- ToggleBox.BackgroundColor3 = Color3.fromRGB(35,35,35)
- ToggleBox.BackgroundTransparency = 0
- ToggleBox.BorderColor3 = Color3.fromRGB(255,255,255)
- ToggleBox.Size = UDim2.new(0,27,0,27)
- ToggleBox.TextColor3 = Color3.fromRGB(255,255,255)
- ToggleBox.TextScaled = true
- ToggleBox.Font =_G.ButtonFonts
- ToggleBox.Position = UDim2.new(0.8,0,0.018,0)
- ToggleBox.Text = ""
- ToggleBox.Name = "ToggleBox"
- ToggleBox.MouseButton1Click:Connect(function()
- if ToggleBox.Text ~= "⭕" then
- ToggleBox.Text = "⭕"
- print("On")
- elseif ToggleBox.Text == "⭕" then
- print("Off")
- ToggleBox.Text = ""
- end
- end)
- local function ButtonToggle_fake_script() -- ToggleBox.LocalScript
- local localscript = Instance.new('LocalScript', ToggleBox)
- local selected = ToggleBox
- local color = _G.ButtonColor
- if color == "red" or color =="Red" then
- selected.BorderColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.BorderColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.BorderColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.BorderColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.BorderColor3 = Color3.fromHSV(i,1,1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(ButtonToggle_fake_script)()
- end
- local function Button(Text, Nav, Num) -- lol XD this is a Button if you are retarded
- local NormalButton = Instance.new("TextButton", Nav)
- NormalButton.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
- NormalButton.BackgroundTransparency = 1
- NormalButton.Size = UDim2.new(0,100,0,30)
- NormalButton.TextScaled = true
- NormalButton.Font =_G.ButtonFonts
- NormalButton.Text = Text
- NormalButton.Name = "Button"..Num
- local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
- local localscript = Instance.new('LocalScript', NormalButton)
- local selected = NormalButton
- local color = _G.ButtonColor
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(RainbowButtonToggle_fake_script)()
- NormalButton.MouseButton1Click:Connect(function()
- if NormalButton.BackgroundColor3 ~= Color3.fromRGB(38, 76, 38) then
- NormalButton.BackgroundColor3 = Color3.fromRGB(38, 76, 38)
- print("On")
- elseif NormalButton.BackgroundColor3 == Color3.fromRGB(38, 38, 38)then
- print("Off")
- NormalButton.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
- end
- end)
- end
- local function Box(Text, Nav, Num) -- lol XD this is a Toggle if you are retarded
- local ToggleButton = Instance.new("TextLabel", Nav)
- ToggleButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- ToggleButton.BackgroundTransparency = 1
- ToggleButton.Size = UDim2.new(0,100,0,30)
- ToggleButton.TextScaled = true
- ToggleButton.Font =_G.ButtonFonts
- ToggleButton.Text = Text
- ToggleButton.Name = "Box"..Num
- local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
- local localscript = Instance.new('LocalScript', ToggleButton)
- local selected = ToggleButton
- local color = _G.ButtonColor
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(RainbowButtonToggle_fake_script)()
- local ButtonBox = Instance.new("TextBox", ToggleButton)
- ButtonBox.BackgroundColor3 = Color3.fromRGB(35,35,35)
- ButtonBox.BackgroundTransparency = 0
- ButtonBox.BorderColor3 = Color3.fromRGB(255,255,255)
- ButtonBox.Size = UDim2.new(0,38,0,27)
- ButtonBox.TextColor3 = Color3.fromRGB(255,255,255)
- ButtonBox.TextScaled = true
- ButtonBox.Font =_G.ButtonFonts
- ButtonBox.Position = UDim2.new(0.72,0,0.018,0)
- ButtonBox.Name = "ButtonBox"
- local function ButtonToggle_fake_script() -- ButtonBox.LocalScript
- local localscript = Instance.new('LocalScript', ButtonBox)
- local selected = ButtonBox
- local color = _G.ButtonColor
- if color == "red" or color =="Red" then
- selected.BorderColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.BorderColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.BorderColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.BorderColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.BorderColor3 = Color3.fromHSV(i,1,1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(ButtonToggle_fake_script)()
- end
- local function TextBox(Text,Nav,Num)
- local Text1Box = Instance.new("TextBox", Nav)
- Text1Box.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
- Text1Box.BackgroundTransparency = 1
- Text1Box.Size = UDim2.new(0,100,0,30)
- Text1Box.TextScaled = true
- Text1Box.Font =_G.ButtonFonts
- Text1Box.Text = Text
- Text1Box.Name = "TextBox"..Num
- local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
- local localscript = Instance.new('LocalScript', Text1Box)
- local selected = Text1Box
- local color = _G.ButtonColor
- if color == "red" or color =="Red" then
- selected.PlaceholderColor3 = Color3.fromRGB(255,0,0)
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.PlaceholderColor3 = Color3.fromRGB(0,0,255)
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.PlaceholderColor3 = Color3.fromRGB(0,255,0)
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.PlaceholderColor3 = Color3.fromRGB(255,255,255)
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.PlaceholderColor3 = Color3.fromHSV(i, 1, 1);
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(RainbowButtonToggle_fake_script)()
- end
- local function Section(Text,Nav,Num)
- local Sect = Instance.new("TextLabel", Nav)
- Sect.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
- Sect.BackgroundTransparency = 0
- Sect.Size = UDim2.new(0,100,0,30)
- Sect.TextScaled = true
- Sect.Font =_G.ButtonFonts
- Sect.Text = Text
- Sect.Name = "Section"..Num
- local function RainbowButtonToggle_fake_script() -- Toggle.LocalScript
- local localscript = Instance.new('LocalScript', Sect)
- local selected = Sect
- local color = _G.ButtonColor
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- Sect.BorderColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- Sect.BorderColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- Sect.BorderColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- Sect.BorderColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- Sect.BorderColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(RainbowButtonToggle_fake_script)()
- end
- function RandomCharacters(length) -- not mine
- local STR = ''
- for i = 1, length do
- STR = STR .. string.char(math.random(45,90))
- end
- return string.lower(STR)
- end
- function protect(object) --
- local rs = game:GetService("RunService")
- rs.RenderStepped:Connect(function()
- local namesused = {"idk"}
- local name = RandomCharacters("1000")
- if namesused[name] then
- name = RandomCharacters("1000")
- object.Name = name
- table.insert(namesused,name)
- else
- object.Name = name
- table.insert(namesused,name)
- end
- end)
- end
- protect(ScreenGui)
- local main = Instance.new("Frame")
- local Sections = Instance.new("Frame")
- local UIListLayout = Instance.new("UIListLayout")
- local Navigation1 = Instance.new("TextButton")
- local Navigation2 = Instance.new("TextButton")
- local Navigation3 = Instance.new("TextButton")
- local Navigation4 = Instance.new("TextButton")
- local Navigation5 = Instance.new("TextButton")
- local Underline = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local ImageLabel = Instance.new("ImageLabel")
- local Sideline = Instance.new("Frame")
- local Minimize = Instance.new("TextButton")
- local NavWindow = Instance.new("Frame")
- local NavWindowMain1 = Instance.new("Frame")
- local NavWindowMain2 = Instance.new("Frame")
- local NavWindowMain3 = Instance.new("Frame")
- local NavWindowMain4 = Instance.new("Frame")
- local NavWindowMain5 = Instance.new("Frame")
- 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"
- 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"
- 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"
- 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"
- 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"
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- ScreenGui.ResetOnSpawn = false
- main.Name = "main"
- main.Parent = ScreenGui
- main.Active = true
- main.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- main.BorderColor3 = Color3.fromRGB(60, 60, 60)
- main.Position = UDim2.new(0.537, 0, 0.582, 0)
- main.Selectable = true
- main.Size = UDim2.new(0, 547, 0, 250)
- Sections.Name = "Sections"
- Sections.Parent = main
- Sections.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Sections.BorderColor3 = Color3.fromRGB(60, 60, 60)
- Sections.BorderSizePixel = 0
- Sections.Position = UDim2.new(0.002, 0, 0.131, 0)
- Sections.Size = UDim2.new(0, 100, 0, 189)
- UIListLayout.Parent = Sections
- UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
- UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
- UIListLayout.Padding = UDim.new(0.0250000004, 10)
- Navigation1.Name = "Navigation1"
- Navigation1.Parent = Sections
- Navigation1.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- Navigation1.BackgroundTransparency = 1.000
- Navigation1.BorderSizePixel = 0
- Navigation1.Position = UDim2.new(0, 0, 0.0803212821, 0)
- Navigation1.Size = UDim2.new(0, 100, 0, 30)
- Navigation1.Font = Enum.Font.Fantasy
- Navigation1.Text = ""
- Navigation1.TextColor3 = Color3.fromRGB(255, 255, 255)
- Navigation1.TextScaled = true
- Navigation1.TextSize = 14.000
- Navigation1.TextWrapped = true
- Navigation2.Name = "Navigation2"
- Navigation2.Parent = Sections
- Navigation2.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- Navigation2.BackgroundTransparency = 1.000
- Navigation2.BorderSizePixel = 0
- Navigation2.Position = UDim2.new(0, 0, 0.0803212821, 0)
- Navigation2.Size = UDim2.new(0, 100, 0, 30)
- Navigation2.Font = Enum.Font.Fantasy
- Navigation2.Text = ""
- Navigation2.TextColor3 = Color3.fromRGB(255, 255, 255)
- Navigation2.TextScaled = true
- Navigation2.TextSize = 14.000
- Navigation2.TextWrapped = true
- Navigation3.Name = "Navigation3"
- Navigation3.Parent = Sections
- Navigation3.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- Navigation3.BackgroundTransparency = 1.000
- Navigation3.BorderSizePixel = 0
- Navigation3.Position = UDim2.new(0, 0, 0.0803212821, 0)
- Navigation3.Size = UDim2.new(0, 100, 0, 30)
- Navigation3.Font = Enum.Font.Fantasy
- Navigation3.Text = ""
- Navigation3.TextColor3 = Color3.fromRGB(255, 255, 255)
- Navigation3.TextScaled = true
- Navigation3.TextSize = 14.000
- Navigation3.TextWrapped = true
- Navigation4.Name = "Navigation4"
- Navigation4.Parent = Sections
- Navigation4.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- Navigation4.BackgroundTransparency = 1.000
- Navigation4.BorderSizePixel = 0
- Navigation4.Position = UDim2.new(0, 0, 0.0803212821, 0)
- Navigation4.Size = UDim2.new(0, 100, 0, 30)
- Navigation4.Font = Enum.Font.Fantasy
- Navigation4.Text = ""
- Navigation4.TextColor3 = Color3.fromRGB(255, 255, 255)
- Navigation4.TextScaled = true
- Navigation4.TextSize = 14.000
- Navigation4.TextWrapped = true
- Navigation5.Name = "Navigation5"
- Navigation5.Parent = Sections
- Navigation5.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- Navigation5.BackgroundTransparency = 1.000
- Navigation5.BorderSizePixel = 0
- Navigation5.Position = UDim2.new(0, 0, 0.0803212821, 0)
- Navigation5.Size = UDim2.new(0, 100, 0, 30)
- Navigation5.Font = Enum.Font.Fantasy
- Navigation5.Text = ""
- Navigation5.TextColor3 = Color3.fromRGB(255, 255, 255)
- Navigation5.TextScaled = true
- Navigation5.TextSize = 14.000
- Navigation5.TextWrapped = true
- Underline.Name = "Underline"
- Underline.Parent = TextLabel
- Underline.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Underline.BorderSizePixel = 0
- Underline.Position = UDim2.new(0, 0, 1, 0)
- Underline.Size = UDim2.new(1, 0, 0, 1)
- Underline.ZIndex = 4
- TextLabel.Parent = main
- TextLabel.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- TextLabel.BorderColor3 = Color3.fromRGB(60, 60, 60)
- TextLabel.Position = UDim2.new(0.002, 0, -0.002, 0)
- TextLabel.Size = UDim2.new(0, 547, 0, 30)
- TextLabel.ZIndex = 3
- TextLabel.Font = Enum.Font.Garamond
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- ImageLabel.Image = "http://www.roblox.com/asset/?id=4771494471"
- ImageLabel.ScaleType = "Crop"
- ImageLabel.BackgroundTransparency = 1
- ImageLabel.Parent = TextLabel
- ImageLabel.Position = UDim2.new(-0.066,0,-0.875,0)
- ImageLabel.Size = UDim2.new(0,103,0,103)
- Sideline.Name = "Sideline"
- Sideline.Parent = main
- Sideline.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Sideline.BorderSizePixel = 0
- Sideline.Position = UDim2.new(0.185, 0, 0.135, 0)
- Sideline.Size = UDim2.new(0, 1, 0, 216)
- Sideline.ZIndex = 4
- Minimize.Name = "Minimize"
- Minimize.Parent = main
- Minimize.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Minimize.BackgroundTransparency = 1.000
- Minimize.Position = UDim2.new(0.947, 0, -0.011, 0)
- Minimize.Size = UDim2.new(0, 30, 0, 30)
- Minimize.ZIndex = 4
- Minimize.Font = Enum.Font.SourceSans
- Minimize.Text = "-"
- Minimize.TextColor3 = Color3.fromRGB(255, 255, 255)
- Minimize.TextScaled = true
- Minimize.TextSize = 14.000
- Minimize.TextWrapped = true
- NavWindow.Name = "NavWindow"
- NavWindow.Parent = main
- NavWindow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- NavWindow.BackgroundTransparency = 1.000
- NavWindow.Position = UDim2.new(0.186471671, 0, 0.00456620986, 0)
- NavWindow.Size = UDim2.new(0, 445, 0, 218)
- NavWindow.ZIndex = 2
- NavWindowMain1.Name = "NavWindowMain1"
- NavWindowMain1.Parent = NavWindow
- NavWindowMain1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- NavWindowMain1.BackgroundTransparency = 1.000
- NavWindowMain1.Position = UDim2.new(0,0,0,30)
- NavWindowMain1.Size = UDim2.new(0, 445, 0, 220)
- NavWindowMain1.ZIndex = 2
- NavWindowMain2.Name = "NavWindowMain2"
- NavWindowMain2.Parent = NavWindow
- NavWindowMain2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- NavWindowMain2.BackgroundTransparency = 1.000
- NavWindowMain2.Position = UDim2.new(0,0,0,30)
- NavWindowMain2.Size = UDim2.new(0, 445, 0, 220)
- NavWindowMain2.Visible = false
- NavWindowMain2.ZIndex = 2
- NavWindowMain3.Name = "NavWindowMain3"
- NavWindowMain3.Parent = NavWindow
- NavWindowMain3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- NavWindowMain3.BackgroundTransparency = 1.000
- NavWindowMain3.Position = UDim2.new(0,0,0,30)
- NavWindowMain3.Size = UDim2.new(0, 445, 0, 220)
- NavWindowMain3.Visible = false
- NavWindowMain3.ZIndex = 2
- NavWindowMain4.Name = "NavWindowMain4"
- NavWindowMain4.Parent = NavWindow
- NavWindowMain4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- NavWindowMain4.BackgroundTransparency = 1.000
- NavWindowMain4.Position = UDim2.new(0,0,0,30)
- NavWindowMain4.Size = UDim2.new(0, 445, 0, 220)
- NavWindowMain4.Visible = false
- NavWindowMain4.ZIndex = 2
- NavWindowMain5.Name = "NavWindowMain5"
- NavWindowMain5.Parent = NavWindow
- NavWindowMain5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- NavWindowMain5.BackgroundTransparency = 1.000
- NavWindowMain5.Position = UDim2.new(0,0,0,30)
- NavWindowMain5.Size = UDim2.new(0, 445, 0, 220)
- NavWindowMain5.Visible = false
- NavWindowMain5.ZIndex = 2
- -- Scripts:
- local function ZGFNXNQ_fake_script() -- Navigation1.LocalScript
- local script = Instance.new('LocalScript', Navigation1)
- local color = _G.NavigationButtonColor
- local selected = script.Parent
- selected.Text = _G.NavigationButton1Text
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- script.Parent.MouseButton1Click:Connect(function()
- for i,v in pairs(script.Parent.Parent.Parent.NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain1" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- end
- coroutine.wrap(ZGFNXNQ_fake_script)()
- Navigation1.MouseButton1Click:Connect(function()
- for i,v in pairs(NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain1" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- local function TDVSJ_fake_script() -- Navigation2.LocalScript
- local script = Instance.new('LocalScript', Navigation2)
- local color = _G.NavigationButtonColor
- local selected = script.Parent
- selected.Text = _G.NavigationButton2Text
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- script.Parent.MouseButton1Click:Connect(function()
- for i,v in pairs(script.Parent.Parent.Parent.NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain2" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- end
- coroutine.wrap(TDVSJ_fake_script)()
- Navigation2.MouseButton1Click:Connect(function()
- for i,v in pairs(NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain2" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- local function KETW_fake_script() -- Navigation3.LocalScript
- local script = Instance.new('LocalScript', Navigation3)
- local color = _G.NavigationButtonColor
- local selected = script.Parent
- selected.Text = _G.NavigationButton3Text
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- script.Parent.MouseButton1Click:Connect(function()
- for i,v in pairs(script.Parent.Parent.Parent.NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain3" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- end
- coroutine.wrap(KETW_fake_script)()
- Navigation3.MouseButton1Click:Connect(function()
- for i,v in pairs(NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain3" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- local function QJQTIT_fake_script() -- Navigation4.LocalScript
- local script = Instance.new('LocalScript', Navigation4)
- local color = _G.NavigationButtonColor
- local selected = script.Parent
- selected.Text = _G.NavigationButton4Text
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- script.Parent.MouseButton1Click:Connect(function()
- for i,v in pairs(script.Parent.Parent.Parent.NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain4" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- end
- coroutine.wrap(QJQTIT_fake_script)()
- Navigation4.MouseButton1Click:Connect(function()
- for i,v in pairs(NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain4" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- local function AHOOQI_fake_script() -- Navigation5.LocalScript
- local script = Instance.new('LocalScript', Navigation5)
- local color = _G.NavigationButtonColor
- local selected = script.Parent
- selected.Text = _G.NavigationButton5Text
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(AHOOQI_fake_script)()
- Navigation5.MouseButton1Click:Connect(function()
- for i,v in pairs(NavWindow:GetChildren()) do
- if v.Name ~= "NavWindowMain5" then
- v.Visible = false
- else
- v.Visible = true
- end
- end
- end)
- local function DMXN_fake_script() -- Underline.LocalScript
- local script = Instance.new('LocalScript', Underline)
- local color = _G.Underlinecolor
- local selected = script.Parent
- if color == "red" or color =="Red" then
- selected.BackgroundColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.BackgroundColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color == "green" then
- selected.BackgroundColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.BackgroundColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.BackgroundColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(DMXN_fake_script)()
- local function LWID_fake_script() -- TextLabel.LocalScript
- local script = Instance.new('LocalScript', TextLabel)
- local color = _G.Titlecolor
- local selected = script.Parent
- local name = _G.Title
- selected.Text = name
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(LWID_fake_script)()
- local function SBEROSL_fake_script() -- Sideline.LocalScript
- local script = Instance.new('LocalScript', Sideline)
- local color = _G.Sidelinecolor
- local selected = script.Parent
- if color == "red" or color =="Red" then
- selected.BackgroundColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.BackgroundColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color =="green" then
- selected.BackgroundColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.BackgroundColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.BackgroundColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(SBEROSL_fake_script)()
- local function EKIS_fake_script() -- Minimize.LocalScript
- local script = Instance.new('LocalScript', Minimize)
- local Toggled = 0
- script.Parent.MouseButton1Click:Connect(function()
- if Toggled == 0 then
- Toggled = 1
- script.Parent.Parent.Sections.Visible = false
- script.Parent.Parent.Sideline.BackgroundTransparency = 1
- script.Parent.Parent.NavWindow.Visible = false
- oldpos = main.Position
- main:TweenPosition(UDim2.new(-0.39, 0, 0.4), "In",6, 2, false, nil)
- main:TweenSize(UDim2.new(0, 547,0, 34),"In",1,2,false,nil)
- TextLabel:TweenSize(UDim2.new(0, 34,0, 34),"In",1,2,false,nil)
- TextLabel:TweenPosition(UDim2.new(0.938, 0,-0.002, 0),"In",1,2,false,nil)
- ImageLabel:TweenPosition(UDim2.new(-1.036, 0,-0.735, 0),"In",1,2,false,nil)
- Underline:TweenSize(UDim2.new(0, 34,0, 1),"In",1,2,false,nil)
- ImageLabel:TweenPosition(UDim2.new(0.875, 0,-0.875, 0), "In", 6,2,false,nil)
- script.Parent.Text = ""
- main.Draggable = false
- else
- Toggled = 0
- script.Parent.Parent.BackgroundTransparency = 0
- script.Parent.Parent.Sections.Visible = true
- script.Parent.Parent.Sideline.BackgroundTransparency = 0
- script.Parent.Parent.NavWindow.Visible = true
- main:TweenPosition(oldpos, "In",6, 2, false, nil)
- main:TweenSize(UDim2.new(0, 547,0, 250),"In",1,2,false,nil)
- TextLabel:TweenSize(UDim2.new(0, 547,0, 30),"In",1,2,false,nil)
- TextLabel:TweenPosition(UDim2.new(0, 0,0, 0),"In",1,2,false,nil)
- Underline:TweenSize(UDim2.new(0, 547,0, 1),"In",1,2,false,nil)
- ImageLabel:TweenPosition(UDim2.new(-0.066, 0,-0.875, 0), "In", 6,2,false,nil)
- script.Parent.Text = "-"
- main.Draggable = true
- end
- end)
- end
- coroutine.wrap(EKIS_fake_script)()
- local function MOTWOX_fake_script() -- Minimize.LocalScript
- local script = Instance.new('LocalScript', Minimize)
- local color = _G.MinimizeColor
- local selected = script.Parent
- if color == "red" or color =="Red" then
- selected.TextColor3 = Color3.fromRGB(255,0,0)
- end
- if color == "blue" or color =="Blue" then
- selected.TextColor3 = Color3.fromRGB(0,0,255)
- end
- if color == "Green" or color == "green" then
- selected.TextColor3 = Color3.fromRGB(0,255,0)
- end
- if color == "White" or color =="white" then
- selected.TextColor3 = Color3.fromRGB(255,255,255)
- end
- if color == "rainbow" or color == "Rainbow" then
- while true do
- for i=0, 1, 1 / 300 do
- selected.TextColor3 = Color3.fromHSV(i, 1, 1);
- wait()
- end;
- end
- end
- end
- coroutine.wrap(MOTWOX_fake_script)()
- local function OZJQKA_fake_script() -- main.LocalScript
- local script = Instance.new('LocalScript', main)
- script.Parent.Draggable = true
- end
- coroutine.wrap(OZJQKA_fake_script)()
Add Comment
Please, Sign In to add comment