Advertisement
xCharliex

Glade v1.1.0

Aug 22nd, 2017
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 19.15 KB | None | 0 0
  1. --[[
  2.    ____   _               _        
  3.   / ___| | |   __ _    __| |   ___
  4.  | |  _  | |  / _` |  / _` |  / _ \
  5.  | |_| | | | | (_| | | (_| | |  __/
  6.   \____| |_|  \__,_|  \__,_|  \___|
  7.  
  8. ]]--
  9.  
  10. -- Objects
  11.  
  12. wait(0.3)
  13.  
  14. -- System builder
  15.  
  16. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  17.     Text = "Injecting Glade"; -- Required. Has to be a string!
  18.     Color = Color3.new(255,0,0); -- Cyan is (0, 255 / 255, 255 / 255). Optional, defaults to white: Color3.new(255 / 255, 255 / 255, 243 / 255)
  19.     Font = Enum.Font.SourceSans; -- Optional, defaults to Enum.Font.SourceSansBold
  20.     FontSize = Enum.FontSize.Size24; -- Optional, defaults to Enum.FontSize.Size18
  21. })
  22.  
  23. wait(1)
  24.  
  25. local plrs = {game.Players.LocalPlayer.Name}
  26. local plrsy = {true}
  27.  
  28. local Glade = Instance.new("ScreenGui")
  29. local UI = Instance.new("Frame")
  30. local Topbar = Instance.new("Frame")
  31. local AppName = Instance.new("TextLabel")
  32. local Close = Instance.new("TextButton")
  33. local AppIcon = Instance.new("ImageLabel")
  34. local SelectorBar = Instance.new("Frame")
  35. local Decor = Instance.new("Frame")
  36. local ScriptExecutor = Instance.new("TextButton")
  37. local LocalPlayer = Instance.new("TextButton")
  38. local Server = Instance.new("TextButton")
  39. local Players = Instance.new("TextButton")
  40. local TextLabel = Instance.new("TextLabel")
  41. local Home = Instance.new("TextButton")
  42. local SizeTemp = Instance.new("Frame")
  43. local ScriptExecutor_2 = Instance.new("Frame")
  44. local Input = Instance.new("TextBox")
  45. local Execute = Instance.new("TextButton")
  46. local Clear = Instance.new("TextButton")
  47. local Players_2 = Instance.new("Frame")
  48. local SelectPlayers = Instance.new("TextButton")
  49. local SelectPlrs = Instance.new("Frame")
  50. local ScrollingFrame = Instance.new("ScrollingFrame")
  51. local Done = Instance.new("TextButton")
  52. local BTools = Instance.new("TextButton")
  53. local Kill = Instance.new("TextButton")
  54. local Home_3 = Instance.new("Frame")
  55. local WlcmMsg = Instance.new("TextLabel")
  56. local Thumb = Instance.new("ImageLabel")
  57. local TextLabel_2 = Instance.new("TextLabel")
  58. local Info = Instance.new("Frame")
  59. local About = Instance.new("TextLabel")
  60. local Coppyright = Instance.new("TextLabel")
  61. local Server_2 = Instance.new("Frame")
  62. local Shutdown = Instance.new("TextButton")
  63. local SixSixSix = Instance.new("TextButton")
  64. local Skybox = Instance.new("TextButton")
  65. local Skybox_Input = Instance.new("TextBox")
  66. local OpenUI = Instance.new("Frame")
  67. local OpenBtn = Instance.new("TextButton")
  68. local GKill = Instance.new('TextButton')
  69. local GKill_Input = Instance.new('TextBox')
  70.  
  71. -- Properties
  72.  
  73. Glade.Name = "Glade"
  74. Glade.Parent = game.Players.LocalPlayer.PlayerGui
  75. Glade.ResetOnSpawn = false
  76.  
  77. UI.Name = "UI"
  78. UI.Parent = Glade
  79. UI.BackgroundColor3 = Color3.new(0.670588, 0, 0)
  80. UI.Draggable = true
  81. UI.Position = UDim2.new(0.351851851, 0, 0.234074071, 0)
  82. UI.Size = UDim2.new(0, 399, 0, 360)
  83.  
  84. Topbar.Name = "Topbar"
  85. Topbar.Parent = UI
  86. Topbar.BackgroundColor3 = Color3.new(0, 0, 0)
  87. Topbar.BorderSizePixel = 0
  88. Topbar.Size = UDim2.new(0, 400, 0, 15)
  89.  
  90. AppName.Name = "AppName"
  91. AppName.Parent = Topbar
  92. AppName.BackgroundColor3 = Color3.new(1, 1, 1)
  93. AppName.BackgroundTransparency = 1
  94. AppName.BorderSizePixel = 0
  95. AppName.Position = UDim2.new(0, 23, 0, 0)
  96. AppName.Size = UDim2.new(0, 200, 0, 15)
  97. AppName.Font = Enum.Font.SourceSans
  98. AppName.FontSize = Enum.FontSize.Size14
  99. AppName.Text = "Glade"
  100. AppName.TextColor3 = Color3.new(0.333333, 1, 0)
  101. AppName.TextSize = 14
  102. AppName.TextXAlignment = Enum.TextXAlignment.Left
  103.  
  104. Close.Name = "Close"
  105. Close.Parent = Topbar
  106. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  107. Close.BackgroundTransparency = 1
  108. Close.BorderSizePixel = 0
  109. Close.Position = UDim2.new(0.492500007, 178, -0.0666666701, 0)
  110. Close.Size = UDim2.new(0, 22, 0, 16)
  111. Close.Font = Enum.Font.SciFi
  112. Close.FontSize = Enum.FontSize.Size14
  113. Close.Text = "X"
  114. Close.TextColor3 = Color3.new(0.333333, 1, 0)
  115. Close.TextSize = 14
  116.  
  117. AppIcon.Name = "AppIcon"
  118. AppIcon.Parent = Topbar
  119. AppIcon.BackgroundColor3 = Color3.new(1, 1, 1)
  120. AppIcon.BackgroundTransparency = 1
  121. AppIcon.BorderSizePixel = 0
  122. AppIcon.Size = UDim2.new(0, 17, 0, 15)
  123. AppIcon.Image = "rbxassetid://1000596080"
  124.  
  125. SelectorBar.Name = "SelectorBar"
  126. SelectorBar.Parent = UI
  127. SelectorBar.BackgroundColor3 = Color3.new(1, 1, 1)
  128. SelectorBar.BackgroundTransparency = 1
  129. SelectorBar.Position = UDim2.new(0, 0, 0.0444444455, 0)
  130. SelectorBar.Size = UDim2.new(0, 100, 0, 344)
  131.  
  132. Decor.Name = "Decor"
  133. Decor.Parent = SelectorBar
  134. Decor.BackgroundColor3 = Color3.new(0, 0, 0)
  135. Decor.BorderColor3 = Color3.new(0, 0, 0)
  136. Decor.Position = UDim2.new(0, 100, 0, 0)
  137. Decor.Size = UDim2.new(0, 0, 0, 344)
  138.  
  139. ScriptExecutor.Name = "ScriptExecutor"
  140. ScriptExecutor.Parent = SelectorBar
  141. ScriptExecutor.BackgroundColor3 = Color3.new(0, 0, 0)
  142. ScriptExecutor.BorderSizePixel = 0
  143. ScriptExecutor.Position = UDim2.new(0, 10, 0, 10)
  144. ScriptExecutor.Size = UDim2.new(0, 80, 0, 30)
  145. ScriptExecutor.Font = Enum.Font.SourceSans
  146. ScriptExecutor.FontSize = Enum.FontSize.Size14
  147. ScriptExecutor.Text = "Script Executor"
  148. ScriptExecutor.TextColor3 = Color3.new(0.635294, 0, 0)
  149. ScriptExecutor.TextSize = 14
  150.  
  151. LocalPlayer.Name = "LocalPlayer"
  152. LocalPlayer.Parent = SelectorBar
  153. LocalPlayer.BackgroundColor3 = Color3.new(0, 0, 0)
  154. LocalPlayer.BorderSizePixel = 0
  155. LocalPlayer.Position = UDim2.new(0, 10, 0, 50)
  156. LocalPlayer.Size = UDim2.new(0, 80, 0, 30)
  157. LocalPlayer.Font = Enum.Font.SourceSans
  158. LocalPlayer.FontSize = Enum.FontSize.Size14
  159. LocalPlayer.Text = "Local Player"
  160. LocalPlayer.TextColor3 = Color3.new(0.635294, 0, 0)
  161. LocalPlayer.TextSize = 14
  162.  
  163. Server.Name = "Server"
  164. Server.Parent = SelectorBar
  165. Server.BackgroundColor3 = Color3.new(0, 0, 0)
  166. Server.BorderSizePixel = 0
  167. Server.Position = UDim2.new(0, 10, 0, 90)
  168. Server.Size = UDim2.new(0, 80, 0, 30)
  169. Server.Font = Enum.Font.SourceSans
  170. Server.FontSize = Enum.FontSize.Size14
  171. Server.Text = "Server"
  172. Server.TextColor3 = Color3.new(0.635294, 0, 0)
  173. Server.TextSize = 14
  174.  
  175. Players.Name = "Players"
  176. Players.Parent = SelectorBar
  177. Players.BackgroundColor3 = Color3.new(0, 0, 0)
  178. Players.BorderSizePixel = 0
  179. Players.Position = UDim2.new(0, 10, 0, 130)
  180. Players.Size = UDim2.new(0, 80, 0, 30)
  181. Players.Font = Enum.Font.SourceSans
  182. Players.FontSize = Enum.FontSize.Size14
  183. Players.Text = "Players"
  184. Players.TextColor3 = Color3.new(0.635294, 0, 0)
  185. Players.TextSize = 14
  186.  
  187. TextLabel.Parent = SelectorBar
  188. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  189. TextLabel.BackgroundTransparency = 1
  190. TextLabel.BorderSizePixel = 0
  191. TextLabel.Position = UDim2.new(0, 0, 0, 305)
  192. TextLabel.Size = UDim2.new(0, 100, 0, 39)
  193. TextLabel.Font = Enum.Font.SourceSans
  194. TextLabel.FontSize = Enum.FontSize.Size14
  195. TextLabel.Text = "Made by OMG_Gaming404"
  196. TextLabel.TextSize = 14
  197. TextLabel.TextWrapped = true
  198.  
  199. Home.Name = "Home"
  200. Home.Parent = SelectorBar
  201. Home.BackgroundColor3 = Color3.new(0, 0, 0)
  202. Home.BorderSizePixel = 0
  203. Home.Position = UDim2.new(0, 10, 0, 200)
  204. Home.Size = UDim2.new(0, 80, 0, 30)
  205. Home.Font = Enum.Font.SourceSans
  206. Home.FontSize = Enum.FontSize.Size14
  207. Home.Text = "Home"
  208. Home.TextColor3 = Color3.new(0.635294, 0, 0)
  209. Home.TextSize = 14
  210.  
  211. SizeTemp.Name = "SizeTemp"
  212. SizeTemp.Parent = UI
  213. SizeTemp.BackgroundColor3 = Color3.new(1, 1, 1)
  214. SizeTemp.BackgroundTransparency = 1
  215. SizeTemp.BorderSizePixel = 0
  216. SizeTemp.Position = UDim2.new(0, 105, 0, 16)
  217. SizeTemp.Size = UDim2.new(0, 294, 0, 344)
  218. SizeTemp.Visible = false
  219.  
  220. ScriptExecutor_2.Name = "ScriptExecutor"
  221. ScriptExecutor_2.Parent = UI
  222. ScriptExecutor_2.BackgroundColor3 = Color3.new(1, 1, 1)
  223. ScriptExecutor_2.BackgroundTransparency = 1
  224. ScriptExecutor_2.BorderSizePixel = 0
  225. ScriptExecutor_2.Position = UDim2.new(0, 105, 0, 16)
  226. ScriptExecutor_2.Size = UDim2.new(0, 294, 0, 344)
  227. ScriptExecutor_2.Visible = false
  228.  
  229. Input.Name = "Input"
  230. Input.Parent = ScriptExecutor_2
  231. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  232. Input.Size = UDim2.new(0, 294, 0, 277)
  233. Input.Font = Enum.Font.SourceSans
  234. Input.FontSize = Enum.FontSize.Size24
  235. Input.Text = "Script Here"
  236. Input.TextSize = 20
  237. Input.TextXAlignment = Enum.TextXAlignment.Left
  238. Input.TextYAlignment = Enum.TextYAlignment.Top
  239.  
  240. Execute.Name = "Execute"
  241. Execute.Parent = ScriptExecutor_2
  242. Execute.BackgroundColor3 = Color3.new(1, 1, 1)
  243. Execute.Position = UDim2.new(0, 10, 0, 300)
  244. Execute.Size = UDim2.new(0, 122, 0, 24)
  245. Execute.Font = Enum.Font.SourceSans
  246. Execute.FontSize = Enum.FontSize.Size28
  247. Execute.Text = "Execute"
  248. Execute.TextColor3 = Color3.new(0, 0, 0)
  249. Execute.TextSize = 25
  250.  
  251. Clear.Name = "Clear"
  252. Clear.Parent = ScriptExecutor_2
  253. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  254. Clear.Position = UDim2.new(0, 152, 0, 300)
  255. Clear.Size = UDim2.new(0, 122, 0, 24)
  256. Clear.Font = Enum.Font.SourceSans
  257. Clear.FontSize = Enum.FontSize.Size28
  258. Clear.Text = "Clear"
  259. Clear.TextColor3 = Color3.new(0, 0, 0)
  260. Clear.TextSize = 25
  261.  
  262. Players_2.Name = "Players"
  263. Players_2.Parent = UI
  264. Players_2.BackgroundColor3 = Color3.new(1, 1, 1)
  265. Players_2.BackgroundTransparency = 1
  266. Players_2.BorderSizePixel = 0
  267. Players_2.Position = UDim2.new(0, 105, 0, 16)
  268. Players_2.Size = UDim2.new(0, 294, 0, 344)
  269. Players_2.Visible = false
  270.  
  271. SelectPlayers.Name = "SelectPlayers"
  272. SelectPlayers.Parent = Players_2
  273. SelectPlayers.BackgroundColor3 = Color3.new(1, 1, 1)
  274. SelectPlayers.Size = UDim2.new(0, 294, 0, 35)
  275. SelectPlayers.Font = Enum.Font.SourceSans
  276. SelectPlayers.FontSize = Enum.FontSize.Size14
  277. SelectPlayers.Text = "Select Players"
  278. SelectPlayers.TextScaled = true
  279. SelectPlayers.TextSize = 14
  280. SelectPlayers.TextWrapped = true
  281.  
  282. SelectPlrs.Name = "SelectPlrs"
  283. SelectPlrs.Parent = Players_2
  284. SelectPlrs.BackgroundColor3 = Color3.new(1, 1, 1)
  285. SelectPlrs.Position = UDim2.new(1.16666663, 0, 0.28197673, 0)
  286. SelectPlrs.Size = UDim2.new(0, 210, 0, 129)
  287. SelectPlrs.Visible = false
  288.  
  289. ScrollingFrame.Parent = SelectPlrs
  290. ScrollingFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  291. ScrollingFrame.Position = UDim2.new(0.00952380989, 0, 0, 0)
  292. ScrollingFrame.Size = UDim2.new(0, 208, 0, 106)
  293.  
  294. Done.Name = "Done"
  295. Done.Parent = SelectPlrs
  296. Done.BackgroundColor3 = Color3.new(1, 1, 1)
  297. Done.BorderSizePixel = 0
  298. Done.Position = UDim2.new(0, 0, 0, 108)
  299. Done.Size = UDim2.new(0, 210, 0, 21)
  300. Done.Font = Enum.Font.SourceSans
  301. Done.FontSize = Enum.FontSize.Size14
  302. Done.Text = "Done"
  303. Done.TextSize = 14
  304.  
  305. BTools.Name = "BTools"
  306. BTools.Parent = Players_2
  307. BTools.BackgroundColor3 = Color3.new(1, 1, 1)
  308. BTools.Position = UDim2.new(0, 10, 0, 49)
  309. BTools.Size = UDim2.new(0, 100, 0, 30)
  310. BTools.Font = Enum.Font.SourceSans
  311. BTools.FontSize = Enum.FontSize.Size14
  312. BTools.Text = "Btools"
  313. BTools.TextSize = 14
  314.  
  315. Kill.Name = "Kill"
  316. Kill.Parent = Players_2
  317. Kill.BackgroundColor3 = Color3.new(1, 1, 1)
  318. Kill.Position = UDim2.new(0, 184, 0, 49)
  319. Kill.Size = UDim2.new(0, 100, 0, 30)
  320. Kill.Font = Enum.Font.SourceSans
  321. Kill.FontSize = Enum.FontSize.Size14
  322. Kill.Text = "Kill"
  323. Kill.TextSize = 14
  324.  
  325. Home_3.Name = "Home"
  326. Home_3.Parent = UI
  327. Home_3.BackgroundColor3 = Color3.new(1, 1, 1)
  328. Home_3.BackgroundTransparency = 1
  329. Home_3.BorderSizePixel = 0
  330. Home_3.Position = UDim2.new(0, 105, 0, 16)
  331. Home_3.Size = UDim2.new(0, 294, 0, 344)
  332.  
  333. WlcmMsg.Name = "WlcmMsg"
  334. WlcmMsg.Parent = Home_3
  335. WlcmMsg.BackgroundColor3 = Color3.new(1, 1, 1)
  336. WlcmMsg.BackgroundTransparency = 1
  337. WlcmMsg.BorderSizePixel = 0
  338. WlcmMsg.Size = UDim2.new(0, 294, 0, 50)
  339. WlcmMsg.Font = Enum.Font.SourceSans
  340. WlcmMsg.FontSize = Enum.FontSize.Size14
  341. WlcmMsg.Text = "Welcome!"
  342. WlcmMsg.TextScaled = true
  343. WlcmMsg.TextSize = 14
  344. WlcmMsg.TextWrapped = true
  345.  
  346. Thumb.Name = "Thumb"
  347. Thumb.Parent = Home_3
  348. Thumb.BackgroundColor3 = Color3.new(1, 1, 1)
  349. Thumb.BackgroundTransparency = 1
  350. Thumb.BorderSizePixel = 0
  351. Thumb.Position = UDim2.new(0, 0, 0, 58)
  352. Thumb.Size = UDim2.new(0, 100, 0, 87)
  353. Thumb.Image = "rbxassetid://1000596080"
  354.  
  355. TextLabel_2.Parent = Home_3
  356. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  357. TextLabel_2.BackgroundTransparency = 1
  358. TextLabel_2.BorderSizePixel = 0
  359. TextLabel_2.Position = UDim2.new(0, 103, 0, 66)
  360. TextLabel_2.Size = UDim2.new(0, 191, 0, 71)
  361. TextLabel_2.Font = Enum.Font.SourceSans
  362. TextLabel_2.FontSize = Enum.FontSize.Size14
  363. TextLabel_2.Text = "Glade"
  364. TextLabel_2.TextScaled = true
  365. TextLabel_2.TextSize = 14
  366. TextLabel_2.TextWrapped = true
  367. TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
  368.  
  369. Info.Name = "Info"
  370. Info.Parent = Home_3
  371. Info.BackgroundColor3 = Color3.new(1, 1, 1)
  372. Info.BackgroundTransparency = 1
  373. Info.BorderSizePixel = 0
  374. Info.Position = UDim2.new(0, 0, 0, 172)
  375. Info.Size = UDim2.new(0, 294, 0, 172)
  376.  
  377. About.Name = "About"
  378. About.Parent = Info
  379. About.BackgroundColor3 = Color3.new(1, 1, 1)
  380. About.BackgroundTransparency = 1
  381. About.BorderSizePixel = 0
  382. About.Size = UDim2.new(0, 294, 0, 146)
  383. About.Font = Enum.Font.SourceSans
  384. About.FontSize = Enum.FontSize.Size18
  385. About.Text = "Glade is a exploiting GUI that is designed to work on Void's Script Builder, allthough it should work on any game, plus it's been tested in studio! Glade is free to use but you DO NOT have permission to change any of its code, if you've got ideas or know some bugs about Glade don't hesitate to message OMG_Gaming404!"
  386. About.TextScaled = true
  387. About.TextSize = 15
  388. About.TextWrapped = true
  389. About.TextYAlignment = Enum.TextYAlignment.Top
  390.  
  391. Coppyright.Name = "Coppyright"
  392. Coppyright.Parent = Info
  393. Coppyright.BackgroundColor3 = Color3.new(1, 1, 1)
  394. Coppyright.BackgroundTransparency = 1
  395. Coppyright.BorderSizePixel = 0
  396. Coppyright.Position = UDim2.new(0, 0, 0, 151)
  397. Coppyright.Size = UDim2.new(0, 107, 0, 21)
  398. Coppyright.Font = Enum.Font.SourceSans
  399. Coppyright.FontSize = Enum.FontSize.Size14
  400. Coppyright.Text = " © Star Corporation™"
  401. Coppyright.TextSize = 14
  402. Coppyright.TextXAlignment = Enum.TextXAlignment.Left
  403. Coppyright.TextYAlignment = Enum.TextYAlignment.Bottom
  404.  
  405. Server_2.Name = "Server"
  406. Server_2.Parent = UI
  407. Server_2.BackgroundColor3 = Color3.new(1, 1, 1)
  408. Server_2.BackgroundTransparency = 1
  409. Server_2.BorderSizePixel = 0
  410. Server_2.Position = UDim2.new(0, 105, 0, 16)
  411. Server_2.Size = UDim2.new(0, 294, 0, 344)
  412. Server_2.Visible = false
  413.  
  414. Shutdown.Name = "Shutdown"
  415. Shutdown.Parent = Server_2
  416. Shutdown.BackgroundColor3 = Color3.new(1, 1, 1)
  417. Shutdown.Position = UDim2.new(0, 0, 0, 10)
  418. Shutdown.Size = UDim2.new(0, 294, 0, 30)
  419. Shutdown.Font = Enum.Font.SourceSans
  420. Shutdown.FontSize = Enum.FontSize.Size14
  421. Shutdown.Text = "Shutdown"
  422. Shutdown.TextSize = 14
  423.  
  424. SixSixSix.Name = "SixSixSix"
  425. SixSixSix.Parent = Server_2
  426. SixSixSix.BackgroundColor3 = Color3.new(1, 1, 1)
  427. SixSixSix.Position = UDim2.new(0, 0, 0, 50)
  428. SixSixSix.Size = UDim2.new(0, 294, 0, 30)
  429. SixSixSix.Font = Enum.Font.SourceSans
  430. SixSixSix.FontSize = Enum.FontSize.Size14
  431. SixSixSix.Text = "666"
  432. SixSixSix.TextSize = 14
  433.  
  434. Skybox.Name = "Skybox"
  435. Skybox.Parent = Server_2
  436. Skybox.BackgroundColor3 = Color3.new(1, 1, 1)
  437. Skybox.Position = UDim2.new(0, 0, 0, 90)
  438. Skybox.Size = UDim2.new(0, 142, 0, 30)
  439. Skybox.Font = Enum.Font.SourceSans
  440. Skybox.FontSize = Enum.FontSize.Size14
  441. Skybox.Text = "Kick Player"
  442. Skybox.TextSize = 14
  443.  
  444. Skybox_Input.Name = "Skybox_Input"
  445. Skybox_Input.Parent = Server_2
  446. Skybox_Input.BackgroundColor3 = Color3.new(1, 1, 1)
  447. Skybox_Input.Position = UDim2.new(0, 152, 0, 90)
  448. Skybox_Input.Size = UDim2.new(0, 142, 0, 30)
  449. Skybox_Input.Font = Enum.Font.SourceSans
  450. Skybox_Input.FontSize = Enum.FontSize.Size14
  451. Skybox_Input.Text = "Username"
  452. Skybox_Input.TextSize = 14
  453.  
  454. GKill.Name = 'KillB'
  455. GKill_Input.Name = 'Kill_Input'
  456. GKill.Size = UDim2.new(0, 142, 0, 30)
  457. GKill.Position = UDim2.new(0, 0, 0, 130)
  458. GKill_Input.Position = UDim2.new(0, 152, 0, 130)
  459. GKill_Input.Size = UDim2.new(0, 142, 0, 30)
  460. GKill.Parent = Server_2
  461. GKill_Input.Parent = Server_2
  462. GKill.Text = 'Kill Player'
  463. GKill_Input.Text = 'Username'
  464. GKill.BackgroundColor3 = Color3.new(1,1,1)
  465. GKill_Input.BackgroundColor3 = Color3.new(1,1,1)
  466.  
  467. OpenUI.Name = "OpenUI"
  468. OpenUI.Parent = Glade
  469. OpenUI.BackgroundColor3 = Color3.new(1, 1, 1)
  470. OpenUI.BackgroundTransparency = 1
  471. OpenUI.BorderSizePixel = 0
  472. OpenUI.Size = UDim2.new(0, 148, 0, 42)
  473.  
  474. OpenBtn.Name = "OpenBtn"
  475. OpenBtn.Parent = OpenUI
  476. OpenBtn.BackgroundColor3 = Color3.new(1, 1, 1)
  477. OpenBtn.BorderSizePixel = 0
  478. OpenBtn.Size = UDim2.new(0, 148, 0, 42)
  479. OpenBtn.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  480. OpenBtn.Font = Enum.Font.SourceSans
  481. OpenBtn.FontSize = Enum.FontSize.Size14
  482. OpenBtn.Text = "Open Glade"
  483. OpenBtn.TextScaled = true
  484. OpenBtn.TextSize = 14
  485. OpenBtn.TextWrapped = true
  486.  
  487. UI.Visible = false
  488.  
  489. function btools(p)
  490.     local backpack = p:FindFirstChild('Backpack')
  491.     local Del = Instance.new('HopperBin')
  492.     local Cop = Instance.new('HopperBin')
  493.     local Mov = Instance.new('HopperBin')
  494.     Cop.BinType = 1
  495.     Mov.BinType = 3
  496.     Del.BinType = 4
  497.     Del.Name = 'Delete'
  498.     Mov.Name = 'Move'
  499.     Cop.Name = 'Coppy'
  500.     Cop.Parent = backpack
  501.     Del.Parent = backpack
  502.     Mov.Parent = backpack
  503. end
  504.  
  505. function openUI(i)
  506.     if ScriptExecutor_2.Visible == true then
  507.         ScriptExecutor_2.Visible = false
  508.         i.Visible = true
  509.         return true
  510.     elseif Home_3.Visible == true then
  511.         Home_3.Visible = false
  512.         i.Visible = true
  513.         return true
  514.     elseif Server_2.Visible == true then
  515.         Server_2.Visible = false
  516.         i.Visible = true
  517.         return true
  518.     elseif Players_2.Visible == true then
  519.         Players_2.Visible = false
  520.         i.Visible = true
  521.         return true
  522.     end
  523. end
  524.  
  525. OpenBtn.MouseButton1Click:connect(function()
  526.     UI.Visible = true
  527.     OpenUI.Visible = false
  528. end)
  529.  
  530. Close.MouseButton1Click:connect(function()
  531.     OpenUI.Visible = true
  532.     UI.Visible = false
  533. end)
  534.  
  535. ScriptExecutor.MouseButton1Click:connect(function()
  536.     openUI(ScriptExecutor_2)
  537. end)
  538.  
  539. Home.MouseButton1Click:connect(function()
  540.     openUI(Home_3)
  541. end)
  542.  
  543. Server.MouseButton1Click:connect(function()
  544.     openUI(Server_2)
  545. end)
  546.  
  547. Players.MouseButton1Click:connect(function()
  548.     openUI(Players_2)
  549. end)
  550.  
  551. Clear.MouseButton1Click:connect(function()
  552.     Input.Text = ''
  553. end)
  554.  
  555. Execute.MouseButton1Click:connect(function()
  556.     loadstring(Input.Text)()
  557. end)
  558.  
  559. BTools.MouseButton1Click:connect(function()
  560. btools(game.Players.LocalPlayer)
  561. end)
  562.  
  563. Kill.MouseButton1Click:connect(function()
  564.     game.Players.LocalPlayer.Character:BreakJoints()
  565. end)
  566.  
  567. Shutdown.MouseButton1Click:connect(function()
  568.     for i,v in pairs(game.Players:GetChildren()) do
  569.         if v.ClassName == 'Player' then
  570. if v.Name ~= game.Players.LocalPlayer.Name then
  571.             v:Kick('This game has shutdown')
  572.         end
  573. end
  574.     end
  575. end)
  576.  
  577. Skybox.MouseButton1Click:connect(function()
  578.     game.Players:FindFirstChild(Skybox_Input.Text):Kick('You have been kicked by Glade')
  579. end)
  580.  
  581. GKill.MouseButton1Click:connect(function()
  582.     game.Players:FindFirstChild(GKill_Input.Text).Character:BreakJoints()
  583. end)
  584.  
  585. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  586.     Text = "Sucessfully injected Glade!"; -- Required. Has to be a string!
  587.     Color = Color3.new(255,0,0); -- Cyan is (0, 255 / 255, 255 / 255). Optional, defaults to white: Color3.new(255 / 255, 255 / 255, 243 / 255)
  588.     Font = Enum.Font.SourceSans; -- Optional, defaults to Enum.Font.SourceSansBold
  589.     FontSize = Enum.FontSize.Size24; -- Optional, defaults to Enum.FontSize.Size18
  590. })
  591.  
  592. local bf = Instance.new("BindableFunction")
  593.  
  594. function cab(nill)
  595. if nill == "Open" then
  596. UI.Visible = true
  597. OpenUI.Visible = false
  598. end
  599. end
  600.  
  601.  
  602. bf.OnInvoke = cab
  603.  
  604. game.StarterGui:SetCore("SendNotification", {
  605.     Title = "Glade"; -- Required. Has to be a string!
  606.     Text = "Glade has successfully loaded!"; -- Required. Has to be a string!
  607.     Icon = "rbxassetid://1000596080"; -- Optional, defaults to "" (no icon)
  608.     Duration = 5; -- Optional, defaults to 5 seconds
  609.     Callback = bf;
  610.     Button1 = "Open";
  611. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement