Advertisement
Jjgames

GUIDEMONDEVS

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