Advertisement
Pastebloxian

DemonDevs v1.3

Mar 4th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 19.32 KB | None | 0 0
  1. --[[
  2.     IMPORTANT BEFORE USE!!!
  3.     Please join our discord for updates of this script since we update 1 or 2 times a day!! <3
  4.     https://www.discord.me/demondevs or
  5.     https://discord.gg/m7aCGgn
  6.     IMPORTANT BEFORE USE!!!
  7. ]]
  8.  
  9. --Startup Start
  10. local player = game.Players.LocalPlayer
  11. local mouse = player:GetMouse()
  12. local coreGui = game:GetService("Players").LocalPlayer.PlayerGui
  13. local DemonDevs = Instance.new("ScreenGui")
  14. DemonDevs.Name = "DemonDevs"
  15. DemonDevs.Parent = coreGui
  16. --Startup End
  17.  
  18. --Scripts Start
  19. local scripts = {
  20.     {"InfiniteYield FE", "tzTXmYf2", 1},
  21.     {"Remote2Script v3", "qCS5MMVM", 1},
  22.     {"Dex v3", "TjRGHbsJ", 1},
  23.     {"Reviz Admin", "ibFPdiF7", 1},
  24.     {"Inf jump", "2eYepag7", 1},
  25.     {"ESP", "uw2P2fbY", 1},
  26. }
  27.  
  28. local demondev = {
  29.     {"CBRO", "tzCLXb5p", 2},
  30. }
  31.  
  32. --Scripts End
  33.  
  34. --Create.new's Start
  35. local function makeTextButton(BackgroundColor3, BorderSizePixel, Name, Parent, Position, Size, Font, Text, TextColor3, TextSize, BackgroundTransparency, ButtonStyle)
  36.     local TextButton = Instance.new("TextButton")
  37.     TextButton.BackgroundColor3 = BackgroundColor3
  38.     TextButton.BorderSizePixel = BorderSizePixel
  39.     TextButton.Name = Name
  40.     TextButton.Parent = Parent
  41.     TextButton.Position = Position
  42.     TextButton.Size = Size
  43.     TextButton.Font = Font
  44.     TextButton.Text = Text
  45.     TextButton.TextColor3 = TextColor3
  46.     TextButton.TextSize = TextSize
  47.     TextButton.BackgroundTransparency = BackgroundTransparency
  48.     TextButton.Style = ButtonStyle
  49. end
  50.  
  51. local function makeTextButton2(BackgroundColor3, BorderSizePixel, Name, Parent, Position, Size, Font, Text, TextColor3, TextSize, BackgroundTransparency, ButtonStyle, func)
  52.     local TextButton = Instance.new("TextButton")
  53.     TextButton.BackgroundColor3 = BackgroundColor3
  54.     TextButton.BorderSizePixel = BorderSizePixel
  55.     TextButton.Name = Name
  56.     TextButton.Parent = Parent
  57.     TextButton.Position = Position
  58.     TextButton.Size = Size
  59.     TextButton.Font = Font
  60.     TextButton.Text = Text
  61.     TextButton.TextColor3 = TextColor3
  62.     TextButton.TextSize = TextSize
  63.     TextButton.BackgroundTransparency = BackgroundTransparency
  64.     TextButton.Style = ButtonStyle
  65.     TextButton.MouseButton1Down:connect(func)
  66. end
  67.  
  68. local function makeTextButton(BackgroundColor3, BorderSizePixel, Name, Parent, Position, Size, Font, Text, TextColor3, TextSize, BackgroundTransparency, ButtonStyle)
  69.     local TextButton = Instance.new("TextButton")
  70.     TextButton.BackgroundColor3 = BackgroundColor3
  71.     TextButton.BorderSizePixel = BorderSizePixel
  72.     TextButton.Name = Name
  73.     TextButton.Parent = Parent
  74.     TextButton.Position = Position
  75.     TextButton.Size = Size
  76.     TextButton.Font = Font
  77.     TextButton.Text = Text
  78.     TextButton.TextColor3 = TextColor3
  79.     TextButton.TextSize = TextSize
  80.     TextButton.BackgroundTransparency = BackgroundTransparency
  81.     TextButton.Style = ButtonStyle
  82. end
  83.  
  84. local function makeFrame(Active, BackgroundColor3, BorderSizePixel, Name, Parent, Position, Size, ClipsDescendants, Draggable, BackgroundTransparency)
  85.     local Frame = Instance.new("Frame")
  86.     Frame.Active = Active
  87.     Frame.BackgroundColor3 = BackgroundColor3
  88.     Frame.BorderSizePixel = BorderSizePixel
  89.     Frame.Name = Name
  90.     Frame.Parent = Parent
  91.     Frame.Position = Position
  92.     Frame.Size = Size
  93.     Frame.ClipsDescendants = ClipsDescendants
  94.     Frame.Draggable = Draggable
  95.     Frame.BackgroundTransparency = BackgroundTransparency
  96. end
  97.  
  98. local function makeScrollingFrame(BackgroundColor3, BorderSizePixel, Name, Parent, Position, Size, CanvasSize, BackgroundTransparency, ScrollBarThickness)
  99.     local ScrollingFrame = Instance.new("ScrollingFrame")
  100.     ScrollingFrame.BackgroundColor3 = BackgroundColor3
  101.     ScrollingFrame.BorderSizePixel = BorderSizePixel
  102.     ScrollingFrame.Name = Name
  103.     ScrollingFrame.Parent = Parent
  104.     ScrollingFrame.Position = Position
  105.     ScrollingFrame.Size = Size
  106.     ScrollingFrame.CanvasSize = CanvasSize
  107.     ScrollingFrame.BackgroundTransparency = BackgroundTransparency
  108.     ScrollingFrame.ScrollBarThickness = ScrollBarThickness
  109. end
  110.  
  111. local function makeTextLabel(BackgroundColor3, BackgroundTransparency, Name, Parent, Position, Size, Font, Text, TextColor3, TextSize, BorderSizePixel, TextWrapped)
  112.     local TextLabel = Instance.new("TextLabel")
  113.     TextLabel.BackgroundColor3 = BackgroundColor3
  114.     TextLabel.BackgroundTransparency = BackgroundTransparency
  115.     TextLabel.Name = Name
  116.     TextLabel.Parent = Parent
  117.     TextLabel.Position = Position
  118.     TextLabel.Size = Size
  119.     TextLabel.Font = Font
  120.     TextLabel.Text = Text
  121.     TextLabel.TextColor3 = TextColor3
  122.     TextLabel.TextSize = TextSize
  123.     TextLabel.BorderSizePixel = BorderSizePixel
  124.     TextLabel.TextWrapped = TextWrapped
  125. end
  126.  
  127. local function makeTextBox(BackgroundColor3, BackgroundTransparency, MultiLine, Name, Parent, Position, Size, Font, Text, TextColor3, TextSize, TextWrapped, TextYAlignment, BorderSizePixel, PlaceholderText, TextXAlignment)
  128.     local TextBox = Instance.new("TextBox")
  129.     TextBox.BackgroundColor3 = BackgroundColor3
  130.     TextBox.BackgroundTransparency = BackgroundTransparency
  131.     TextBox.MultiLine = MultiLine
  132.     TextBox.Name = Name
  133.     TextBox.Parent = Parent
  134.     TextBox.Position = Position
  135.     TextBox.Size = Size
  136.     TextBox.Font = Font
  137.     TextBox.Text = Text
  138.     TextBox.TextColor3 = TextColor3
  139.     TextBox.TextSize = TextSize
  140.     TextBox.TextWrapped = TextWrapped
  141.     TextBox.TextYAlignment = TextYAlignment
  142.     TextBox.BorderSizePixel = BorderSizePixel
  143.     TextBox.PlaceholderText = PlaceholderText
  144.     TextBox.TextXAlignment = TextXAlignment
  145. end
  146.  
  147. local function makeImageLabel(BackgroundColor3, BackgroundTransparency, BorderSizePixel, Name, Parent, Selectable, Size, Image, Position, Rotation)
  148.     local ImageLabel = Instance.new("ImageLabel")
  149.     ImageLabel.BackgroundColor3 = BackgroundColor3
  150.     ImageLabel.BackgroundTransparency = BackgroundTransparency
  151.     ImageLabel.BorderSizePixel = BorderSizePixel
  152.     ImageLabel.Name = Name
  153.     ImageLabel.Parent = Parent
  154.     ImageLabel.Selectable = Selectable
  155.     ImageLabel.Size = Size
  156.     ImageLabel.Image = Image
  157.     ImageLabel.Position = Position
  158.     ImageLabel.Rotation = Rotation
  159. end
  160.  
  161. --Create.new's End
  162.  
  163. --CreateGui Start
  164.  
  165. makeFrame(true, Color3.fromRGB(255, 255, 255), 0, "header", DemonDevs, UDim2.new(0.25, 0, 0.118, 0), UDim2.new(0, 788, 0, 80), false, true, 0.99)
  166. makeImageLabel(Color3.fromRGB(0, 0, 0), 1, 0, "headerimg", DemonDevs.header, false, UDim2.new(0, 788, 0, 80), "rbxassetid://2828426078", UDim2.new(0, 0, 0, 0), 0)
  167. makeFrame(false, Color3.fromRGB(255, 255, 255), 0, "infobar", DemonDevs.header, UDim2.new(0.237, 0, 0.993, 0), UDim2.new(0, 601, 0, 57), false, false, 0.99)
  168. makeFrame(false, Color3.fromRGB(255, 255, 255), 0, "scriptcontainer", DemonDevs.header, UDim2.new(0.237, 0, 1.693, 0), UDim2.new(0, 601, 0, 371), false, false, 0.99)
  169. makeFrame(false, Color3.fromRGB(255, 255, 255), 0, "tabbar", DemonDevs.header, UDim2.new(0, 0, 0.993, 0), UDim2.new(0, 187, 0, 428), false, false, 0.99)
  170. makeImageLabel(Color3.fromRGB(0, 0, 0), 1, 0, "infobarimg", DemonDevs.header.infobar, false, UDim2.new(0, 601, 0, 57), "rbxassetid://2828426426" , UDim2.new(-0.001, 0, -0.002, 0), 0)
  171. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "infobartext", DemonDevs.header.infobar, UDim2.new(0, 0, -0.018, 0), UDim2.new(0, 601, 0, 57), Enum.Font.Cartoon, "", Color3.new(255, 255, 255), 25, 0, true)
  172. makeFrame(false, Color3.new(255, 255, 255), 0, "demondevframe", DemonDevs.header.scriptcontainer, UDim2.new(0, 0, 0, 0), UDim2.new(0, 601, 0, 371), false, false, 0.99)
  173. makeFrame(false, Color3.fromRGB(255, 255, 255), 0, "scriptsframe", DemonDevs.header.scriptcontainer, UDim2.new(0, 0, 0, 0), UDim2.new(0, 601, 0, 371), false, false, 0.99)
  174. makeFrame(false, Color3.fromRGB(255, 255, 255), 0, "settingsframe", DemonDevs.header.scriptcontainer, UDim2.new(0, 0, 0, 0), UDim2.new(0, 601, 0, 371), false, false, 0.99)
  175. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "credits", DemonDevs.header.scriptcontainer.settingsframe, UDim2.new(0.609, 0, 0, 0), UDim2.new(0, 235, 0, 85), Enum.Font.SourceSansBold, "Credits:                                                        BlueBearTim#8590  Technoo-_#8904 SjorsApenWorst#7911                         excuse me#7423", Color3.fromRGB(255, 255, 255), 18, 0, true)
  176. makeImageLabel(Color3.fromRGB(0, 0, 0), 1, 0, "scriptcontainerimg", DemonDevs.header.scriptcontainer, false, UDim2.new(0, 601, 0, 370), "rbxassetid://2828427360", UDim2.new(-0.001, 0, 0.002, 0), 0)
  177. makeFrame(false, Color3.fromRGB(255, 255, 255), 0, "tabbar", DemonDevs.header, UDim2.new(0, 0, 0.993, 0), UDim2.new(0, 187, 0, 428), false, false, 0.99)
  178. makeImageLabel(Color3.fromRGB(0, 0, 0), 1, 0, "tabbarimg", DemonDevs.header.tabbar, false, UDim2.new(0, 187, 0, 428), "rbxassetid://2828427074", UDim2.new(0, 0, -0.002, 0), 0)
  179. makeTextButton(Color3.fromRGB(255, 255, 255), 0, "toggleblurbtn", DemonDevs.header.scriptcontainer.settingsframe, UDim2.new(0.053, 0, 0.094, 0), UDim2.new(0, 200, 0, 50), Enum.Font.SourceSansSemibold, "Toggle Blur", Color3.fromRGB(0, 0, 0), 20, 0, Enum.ButtonStyle.RobloxRoundButton)
  180. makeTextButton(Color3.new(255, 255, 255), 0, "settingstab", DemonDevs.header.tabbar, UDim2.new(0, 0, 0.133, 0), UDim2.new(0, 187, 0, 43), Enum.Font.Cartoon, "Settings", Color3.fromRGB(255, 255, 255), 20, 0.99, Enum.ButtonStyle.Custom)
  181. makeTextButton(Color3.new(255, 255, 255), 0, "scriptstab", DemonDevs.header.tabbar, UDim2.new(0, 0, 0.336, 0), UDim2.new(0, 187, 0, 41), Enum.Font.Cartoon, "Scripts", Color3.fromRGB(255, 255, 255), 20, 0.99, Enum.ButtonStyle.Custom)
  182. makeTextButton(Color3.new(255, 255, 255), 0, "demondevtab", DemonDevs.header.tabbar, UDim2.new(0, 0, 0.234, 0), UDim2.new(0, 187, 0, 44), Enum.Font.Cartoon, "DemonDev", Color3.fromRGB(255, 255, 255), 20, 0.99, Enum.ButtonStyle.Custom)
  183. makeScrollingFrame(Color3.fromRGB(255, 255, 255), 0, "scriptsscrolling", DemonDevs.header.scriptcontainer.scriptsframe, UDim2.new(0, 0, 0, 0), UDim2.new(0, 601, 0, 371), UDim2.new(0, 0, 50, 0), 0.99, 12)
  184. makeScrollingFrame(Color3.fromRGB(255, 255, 255), 0, "demondevsscrolling", DemonDevs.header.scriptcontainer.demondevframe, UDim2.new(0, 0, 0, 0), UDim2.new(0, 601, 0, 371), UDim2.new(0, 0, 50, 0), 0.99, 12)
  185.  
  186.  
  187.  
  188.     DemonDevs.header.scriptcontainer.scriptsframe.Visible = true
  189.     DemonDevs.header.scriptcontainer.settingsframe.Visible = false
  190.     DemonDevs.header.scriptcontainer.demondevframe.Visible = false
  191.     DemonDevs.header.scriptcontainer.scriptcontainerimg.ZIndex = 0
  192.  
  193. local frames = {
  194.     DemonDevs.header.scriptcontainer.scriptsframe,
  195.     DemonDevs.header.scriptcontainer.settingsframe,
  196.     DemonDevs.header.scriptcontainer.demondevframe,
  197. }
  198.  
  199. local scrollingframes = {
  200.     DemonDevs.header.scriptcontainer.scriptsframe.scriptsscrolling,
  201.     DemonDevs.header.scriptcontainer.demondevframe.demondevsscrolling,
  202. }
  203.  
  204. local enabledscrollingframe = scrollingframes[1]
  205.  
  206. local enabledframe = frames[1]
  207.  
  208. local tabs = {
  209.     DemonDevs.header.tabbar.scriptstab,
  210.     DemonDevs.header.tabbar.settingstab,
  211.     DemonDevs.header.tabbar.demondevtab,
  212.     }
  213. local enabledtab = tabs[1]
  214.  
  215. local function tabchange(newtab)
  216.     DemonDevs.header.scriptcontainer.scriptsframe.Visible = false
  217.     DemonDevs.header.scriptcontainer.settingsframe.Visible = false
  218.     DemonDevs.header.scriptcontainer.demondevframe.Visible = false
  219.     DemonDevs.header.tabbar.settingstab.BackgroundTransparency = 0.99
  220.     DemonDevs.header.tabbar.scriptstab.BackgroundTransparency = 0.99
  221.     DemonDevs.header.tabbar.demondevtab.BackgroundTransparency = 0.99
  222.     enabledtab.BackgroundTransparency = 0.8
  223.     enabledframe.Visible = true
  224. end
  225.  
  226. DemonDevs.header.Position = UDim2.new(0.25, 0, -1.118, 0)
  227.  
  228. enabledtab.BackgroundTransparency = 0.8
  229. --CreateGui End
  230.  
  231. --ToggleGui Start
  232. local blur = Instance.new("BlurEffect", workspace.Camera)
  233. blur.Enabled = false
  234. toggleblur = false
  235. DemonDevs.header.scriptcontainer.settingsframe.toggleblurbtn.MouseButton1Down:connect(function()
  236.     if toggleblur == false then
  237.         blur:Destroy()
  238.         toggleblur = true
  239.     else
  240.         blur = Instance.new("BlurEffect", workspace.Camera)
  241.         toggleblur = false
  242.         blur.Enabled = true
  243.     end
  244. end)
  245.  
  246. local guitoggled = true
  247. mouse.KeyDown:connect(function(key)
  248.     if key:byte() == 112 then
  249.         if guitoggled == true then
  250.     print("Working")
  251.     DemonDevs.header:TweenPosition(UDim2.new(0.25, 0, 0.118, 0), "In", "Quad", 1)
  252.     blur.Enabled = true
  253.     guitoggled = false
  254. else
  255.     print("Working")
  256.     DemonDevs.header:TweenPosition(UDim2.new(0.25, 0, -1.118, 0), "Out", "Quad", 1)
  257.     blur.Enabled = false
  258.     guitoggled = true
  259. end
  260.     end
  261. end)
  262. --ToggleGui End
  263.  
  264. --Scriptstab ButtonCreate Start
  265. local pos = 0
  266.     local function createButtons(text)
  267.         pos = 0
  268.         for _,button in pairs(scripts) do
  269.         if string.find(string.lower(button[1]), string.lower(text)) then
  270.                makeTextButton2(Color3.fromRGB(255, 255, 255), 0, button[1], DemonDevs.header.scriptcontainer.scriptsframe.scriptsscrolling, UDim2.new(0.042, 0, 0.001, pos), UDim2.new(0, 549, 0, 32), Enum.Font.SourceSansSemibold, button[1], Color3.fromRGB(0, 0, 0), 20, 0, Enum.ButtonStyle.RobloxRoundButton, function()
  271.     loadstring(game:HttpGet("https://pastebin.com/raw/"..button[2], true))()
  272. end)   
  273.         pos = pos + 35
  274.             end
  275.         end
  276.         end
  277. --Scriptstab ButtonCreate End
  278.  
  279. local poss = 0
  280. --Scriptstab DevButtonCreate Start
  281.     local function createButtonsDev(text)
  282.         poss = 0
  283.         for _,button in pairs(demondev) do
  284.         if string.find(string.lower(button[1]), string.lower(text)) then
  285.                makeTextButton2(Color3.fromRGB(255, 255, 255), 0, button[1], DemonDevs.header.scriptcontainer.demondevframe.demondevsscrolling, UDim2.new(0.042, 0, 0.001, poss), UDim2.new(0, 549, 0, 32), Enum.Font.SourceSansSemibold, button[1], Color3.fromRGB(0, 0, 0), 20, 0, Enum.ButtonStyle.RobloxRoundButton, function()
  286.     loadstring(game:HttpGet("https://pastebin.com/raw/"..button[2], true))()
  287. end)   
  288.         poss = poss + 35           
  289.             end
  290.         end
  291.         end
  292. --Scriptstab DevButtonCreate End
  293.  
  294. --DestroyButtons Start
  295.     local function DestroyButtons()
  296.         for _,button in pairs(enabledscrollingframe:GetChildren()) do
  297.             if button.ClassName == "TextButton" then
  298.                 button:Destroy()
  299.             end
  300.         end
  301.     end
  302. --DestroyButtons End
  303.  
  304. makeTextBox(Color3.fromRGB(255, 255, 255), 1, false, "searchbox", DemonDevs.header.tabbar, UDim2.new(0, 0, 0, 0), UDim2.new(0, 186, 0, 56), Enum.Font.Gotham, "", Color3.fromRGB(255, 255, 255), 20, false, Enum.TextYAlignment.Center, 0, "Search...", Enum.TextXAlignment.Center)
  305.     local function searchBar(chosenList)
  306.         local searchbox = DemonDevs.header.tabbar.searchbox
  307.         local currentSearch = ""
  308.         searchbox.Changed:connect(function(property)
  309.             if property == "Text" then
  310.                 if searchbox.Text ~= "" and searchbox.Text ~= currentSearch then
  311.                     currentSearch = searchbox.Text
  312.                     DestroyButtons()
  313.                     createButtons(searchbox.Text)
  314.                 elseif searchbox.Text == "" and currentSearch.Text ~= "" then
  315.                     currentSearch = searchbox.Text
  316.                     DestroyButtons()
  317.                     createButtons("")
  318.                 end
  319.             end
  320.         end)
  321.     end
  322.     searchBar(enabledtab)
  323.     createButtons("")
  324. --Searchbar End
  325.  
  326. --DevSearchbar Start
  327. makeTextBox(Color3.fromRGB(255, 255, 255), 1, false, "devsearchbox", DemonDevs.header.tabbar, UDim2.new(0, 0, 0, 0), UDim2.new(0, 186, 0, 56), Enum.Font.Gotham, "", Color3.fromRGB(255, 255, 255), 20, false, Enum.TextYAlignment.Center, 0, "Search...", Enum.TextXAlignment.Center)
  328.     local function DevsearchBar(chosenList)
  329.         local search2 = DemonDevs.header.tabbar.devsearchbox
  330.         local currentSearch2 = ""
  331.         search2.Changed:connect(function(property2)
  332.             if property2 == "Text" then
  333.                 if search2.Text ~= "" and search2.Text ~= currentSearch2 then
  334.                     currentSearch2 = search2.Text
  335.                     DestroyButtons()
  336.                     createButtonsDev(search2.Text)
  337.                 elseif search2.Text == "" and currentSearch2.Text ~= "" then
  338.                     currentSearch2 = search2.Text
  339.                     DestroyButtons()
  340.                     createButtonsDev("")
  341.                 end
  342.             end
  343.         end)
  344.     end
  345.     DevsearchBar(enabledtab)
  346.     createButtonsDev("")
  347. --DevSearchbar End
  348. DemonDevs.header.tabbar.devsearchbox.Visible = false
  349. --Searchbar Start
  350.  
  351. --Infobar Start
  352. local function infobar2(info2)
  353.         DemonDevs.header.infobar.infobartext.Text = "n"
  354.     wait (0.1)
  355.         DemonDevs.header.infobar.infobartext.Text = "ne"
  356.     wait (0.1)
  357.         DemonDevs.header.infobar.infobartext.Text = "new"
  358.     wait (0.1)
  359.         DemonDevs.header.infobar.infobartext.Text = "new i"
  360.     wait (0.1)
  361.         DemonDevs.header.infobar.infobartext.Text = "new in"
  362.     wait (0.1)
  363.         DemonDevs.header.infobar.infobartext.Text = "new inf"
  364.     wait (0.1)
  365.         DemonDevs.header.infobar.infobartext.Text = "new info"
  366.     wait (0.1)
  367.         DemonDevs.header.infobar.infobartext.Text = "new info!"
  368.     wait (2)
  369.         DemonDevs.header.infobar.infobartext.Text = ""
  370.     wait (0.1)
  371.         DemonDevs.header.infobar.infobartext.Text = "O"
  372.     wait (0.1)
  373.         DemonDevs.header.infobar.infobartext.Text = "Ou"
  374.     wait (0.1)
  375.         DemonDevs.header.infobar.infobartext.Text = "Our"
  376.     wait (0.1)
  377.         DemonDevs.header.infobar.infobartext.Text = "Our o"
  378.     wait (0.1)
  379.         DemonDevs.header.infobar.infobartext.Text = "Our ow"
  380.     wait (0.1)
  381.         DemonDevs.header.infobar.infobartext.Text = "Our own"
  382.     wait (0.1)
  383.         DemonDevs.header.infobar.infobartext.Text = "Our own s"
  384.     wait (0.1)
  385.         DemonDevs.header.infobar.infobartext.Text = "Our own sc"
  386.     wait (0.1)
  387.         DemonDevs.header.infobar.infobartext.Text = "Our own scr"
  388.     wait (0.1)
  389.         DemonDevs.header.infobar.infobartext.Text = "Our own scri"
  390.     wait (0.1)
  391.         DemonDevs.header.infobar.infobartext.Text = "Our own scrip"
  392.     wait (0.1)
  393.         DemonDevs.header.infobar.infobartext.Text = "Our own script"
  394.     wait (0.1)
  395.         DemonDevs.header.infobar.infobartext.Text = "Our own scripts"
  396.     wait (0.1)
  397.         DemonDevs.header.infobar.infobartext.Text = "Our own scripts b"
  398.     wait (0.1)
  399.         DemonDevs.header.infobar.infobartext.Text = "Our own scripts be"
  400.     wait (0.1)
  401.         DemonDevs.header.infobar.infobartext.Text = "Our own scripts bel"
  402.     wait (0.1)
  403.         DemonDevs.header.infobar.infobartext.Text = "Our own scripts belo"
  404.     wait (0.1)
  405.         DemonDevs.header.infobar.infobartext.Text = "Our own scripts below"
  406.     wait (0.1)
  407.         DemonDevs.header.infobar.infobartext.Text = "Our own scripts below!"
  408.     wait (0.1)
  409.         DemonDevs.header.infobar.infobartext.Visible = false
  410.     wait (0.1)
  411.         DemonDevs.header.infobar.infobartext.Visible = true
  412.     wait (0.1)
  413.         DemonDevs.header.infobar.infobartext.Visible = false
  414.     wait (0.1)
  415.         DemonDevs.header.infobar.infobartext.Visible = true
  416.     wait (5)
  417.         DemonDevs.header.infobar.infobartext.Visible = false
  418. end
  419. --Infobar End
  420.  
  421. DemonDevs.header.tabbar.settingstab.MouseButton1Down:connect(function()
  422.     enabledframe = frames[2]
  423.     enabledtab = tabs[2]
  424.     tabchange()
  425. end)
  426. DemonDevs.header.tabbar.scriptstab.MouseButton1Down:connect(function()
  427.     enabledframe = frames[1]
  428.     enabledtab = tabs[1]
  429.     enabledscrollingframe = scrollingframes[1]
  430.     DemonDevs.header.tabbar.devsearchbox.Visible = false
  431.     DemonDevs.header.tabbar.searchbox.Visible = true
  432.     tabchange()
  433. end)
  434. DemonDevs.header.tabbar.demondevtab.MouseButton1Down:connect(function()
  435.     enabledframe = frames[3]
  436.     enabledtab = tabs[3]
  437.     enabledscrollingframe = scrollingframes[2]
  438.     DemonDevs.header.tabbar.devsearchbox.Visible = true
  439.     DemonDevs.header.tabbar.searchbox.Visible = false
  440.     tabchange()
  441.     infobar2()
  442. end)
  443.  
  444. --Tabbar Start
  445.  
  446. --Tabbar End
  447.  
  448. game.StarterGui:SetCore("SendNotification", {
  449. Title = "Open/Close";
  450. Text = "Keybind = (P)!";
  451. Icon = "";
  452. Duration = 5;
  453. })
  454.  
  455. game.StarterGui:SetCore("SendNotification", {
  456. Title = "Join our discord for updates!";
  457. Text = "discord.gg/m7aCGgn";
  458. Icon = "";
  459. Duration = 10;
  460. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement