Advertisement
FilterYT

Untitled

Apr 16th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.79 KB | None | 0 0
  1. local DBR = Instance.new('ScreenGui')
  2. local MainDesign = Instance.new('Frame')
  3. local Frame = Instance.new('Frame')
  4. local Ki = Instance.new('TextButton')
  5. local AntiKick = Instance.new('TextButton')
  6. local Defense = Instance.new('TextButton')
  7. local Agility = Instance.new('TextButton')
  8. local AutoSave = Instance.new('TextButton')
  9. local Charge = Instance.new('TextButton')
  10. local Combat = Instance.new('TextButton')
  11. local NoCharge = Instance.new('TextButton')
  12. local ToggleGUI = Instance.new('TextButton')
  13. local ora = Instance.new('TextLabel')
  14. local dustyn = Instance.new('TextLabel')
  15. local oracredit = Instance.new('TextLabel')
  16. local dustyncredit = Instance.new('TextLabel')
  17. local Title = Instance.new('TextLabel')
  18. local FrameStatus = Instance.new('Frame')
  19. local DefenseStatus = Instance.new('TextLabel')
  20. local DefTog = Instance.new('TextLabel')
  21. local KiBlastStatus = Instance.new('TextLabel')
  22. local KiTog = Instance.new('TextLabel')
  23. local AgilityStatis = Instance.new('TextLabel')
  24. local AgiTog = Instance.new('TextLabel')
  25. local CombatStatus = Instance.new('TextLabel')
  26. local ComTog = Instance.new('TextLabel')
  27. local ChargeStatus = Instance.new('TextLabel')
  28. local ChargeTog = Instance.new('TextLabel')
  29. local Delete = Instance.new('TextButton')
  30. local Name = game.Players.LocalPlayer.Name
  31. --Properties:
  32. DBR.Name = 'DBR'
  33. DBR.Parent = game.CoreGui
  34.  
  35. MainDesign.Name = 'MainDesign'
  36. MainDesign.Parent = DBR
  37. MainDesign.Active = true
  38. MainDesign.BackgroundColor3 = Color3.new(0, 0, 0)
  39. MainDesign.BorderColor3 = Color3.new(1, 1, 1)
  40. MainDesign.Position = UDim2.new(0.321915597, 0, 0.272512466, 0)
  41. MainDesign.Size = UDim2.new(0, 463, 0, 291)
  42. MainDesign.Style = Enum.FrameStyle.RobloxRound
  43. MainDesign.Draggable = true
  44. MainDesign.Visible = true
  45.  
  46. Frame.Parent = MainDesign
  47. Frame.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  48. Frame.BorderColor3 = Color3.new(1, 1, 1)
  49. Frame.Position = UDim2.new(0.0913098454, 0, 0.0950036272, 0)
  50. Frame.Size = UDim2.new(0, 352, 0, 221)
  51. Frame.Style = Enum.FrameStyle.DropShadow
  52.  
  53. Ki.Name = 'Ki'
  54. Ki.Parent = Frame
  55. Ki.Active = false
  56. Ki.BackgroundColor3 = Color3.new(1, 1, 1)
  57. Ki.BorderColor3 = Color3.new(1, 1, 1)
  58. Ki.Position = UDim2.new(0.503212869, 0, -0.000783997937, 0)
  59. Ki.Size = UDim2.new(0, 166, 0, 32)
  60. Ki.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  61. Ki.Font = Enum.Font.SciFi
  62. Ki.Text = 'Ki Blast'
  63. Ki.TextColor3 = Color3.new(0, 0, 0)
  64. Ki.TextSize = 14
  65. Ki.MouseButton1Down:connect(function()
  66. if Ki.Text == 'Ki Blast' then
  67. Ki.Text = 'Stop Ki Blast'
  68. KiTog.Text = 'Enabled'
  69. KiTog.TextColor3 = Color3.new(0, 255, 0)
  70. while Ki.Text == 'Stop Ki Blast' do
  71. game.ReplicatedStorage.Remotes.Actions.EnergyBlast:InvokeServer('Left')
  72. game.ReplicatedStorage.Remotes.Actions.EnergyBlast:InvokeServer('Right')
  73. end
  74. else
  75. Ki.Text = 'Ki Blast'
  76. KiTog.Text = 'Disabled'
  77. KiTog.TextColor3 = Color3.new(0.666667, 0, 0)
  78. _G.B = false
  79. while _G.B do
  80. game.ReplicatedStorage.Remotes.Actions.EnergyBlast:InvokeServer('Left')
  81. game.ReplicatedStorage.Remotes.Actions.EnergyBlast:InvokeServer('Right')
  82. end
  83. end
  84. end)
  85.  
  86. AntiKick.Name = 'Anti-Kick'
  87. AntiKick.Parent = Frame
  88. AntiKick.Active = false
  89. AntiKick.BackgroundColor3 = Color3.new(1, 1, 1)
  90. AntiKick.BorderColor3 = Color3.new(1, 1, 1)
  91. AntiKick.Position = UDim2.new(0.250371933, 0, 0.469804287, 0)
  92. AntiKick.Size = UDim2.new(0, 166, 0, 32)
  93. AntiKick.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  94. AntiKick.Font = Enum.Font.SciFi
  95. AntiKick.Text = 'Anti-Kick'
  96. AntiKick.TextColor3 = Color3.new(0, 0, 0)
  97. AntiKick.TextSize = 14
  98. AntiKick.MouseButton1Down:connect(function()
  99. print('[DBR]Anti-Kick Activated.')
  100. game.ReplicatedStorage.Kick:Destroy()
  101. end)
  102.  
  103. Defense.Name = 'Defense'
  104. Defense.Parent = Frame
  105. Defense.Active = false
  106. Defense.BackgroundColor3 = Color3.new(1, 1, 1)
  107. Defense.BorderColor3 = Color3.new(1, 1, 1)
  108. Defense.Position = UDim2.new(-0.0015179133, 0, 0.153964013, 0)
  109. Defense.Size = UDim2.new(0, 166, 0, 32)
  110. Defense.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  111. Defense.Font = Enum.Font.SciFi
  112. Defense.Text = 'Defense'
  113. Defense.TextColor3 = Color3.new(0, 0, 0)
  114. Defense.TextSize = 14
  115. Defense.MouseButton1Click:connect(function()
  116. if Defense.Text == 'Defense' then
  117. DefTog.Text = 'Enabled'
  118. DefTog.TextColor3 = Color3.new(0, 255, 0)
  119. Defense.Text = 'Stop Defense' do
  120. while Defense.Text == 'Stop Defense' do
  121. local remote = game['ReplicatedStorage']['Remotes']['Training']['Defense']
  122. local args = {
  123. [1] = game['Players'][Name]['Stats'],
  124. [2] = game['Players'][Name]['Status'],
  125. [3] = game['Workspace'][Name]['Humanoid'],
  126. [4] = game['Workspace'][Name]['RightHand']
  127. }
  128. remote:InvokeServer(unpack(args))
  129. end
  130. end
  131. else
  132. Defense.Text = 'Defense'
  133. DefTog.Text = 'Disabled'
  134. DefTog.TextColor3 = Color3.new(0.666667, 0, 0)
  135. end
  136. end)
  137.  
  138.  
  139. Agility.Name = 'Agility'
  140. Agility.Parent = Frame
  141. Agility.Active = false
  142. Agility.BackgroundColor3 = Color3.new(1, 1, 1)
  143. Agility.BorderColor3 = Color3.new(1, 1, 1)
  144. Agility.Position = UDim2.new(0.504973829, 0, 0.155052483, 0)
  145. Agility.Size = UDim2.new(0, 166, 0, 32)
  146. Agility.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  147. Agility.Font = Enum.Font.SciFi
  148. Agility.Text = 'Agility'
  149. Agility.TextColor3 = Color3.new(0, 0, 0)
  150. Agility.TextSize = 14
  151. Agility.MouseButton1Down:connect(function()
  152. if Agility.Text == 'Agility' then
  153. AgiTog.Text = 'Enabled'
  154. AgiTog.TextColor3 = Color3.new(0, 255, 0)
  155. Agility.Text = 'Stop Agility' do
  156. while Agility.Text == 'Stop Agility' do
  157. wait()
  158. game.ReplicatedStorage.Remotes.Training.Agility:FireServer(game.Players.Name.Stats)
  159. end
  160. end
  161. else
  162. Agility.Text = 'Agility'
  163. AgiTog.Text = 'Disabled'
  164. AgiTog.TextColor3 = Color3.new(0.666667, 0, 0)
  165. end
  166. end)
  167.  
  168. AutoSave.Name = 'AutoSave'
  169. AutoSave.Parent = Frame
  170. AutoSave.Active = false
  171. AutoSave.BackgroundColor3 = Color3.new(1, 1, 1)
  172. AutoSave.BorderColor3 = Color3.new(1, 1, 1)
  173. AutoSave.Position = UDim2.new(0.504292727, 0, 0.307172656, 0)
  174. AutoSave.Size = UDim2.new(0, 166, 0, 32)
  175. AutoSave.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  176. AutoSave.Font = Enum.Font.SciFi
  177. AutoSave.Text = 'Auto-Save'
  178. AutoSave.TextColor3 = Color3.new(0, 0, 0)
  179. AutoSave.TextSize = 14
  180. AutoSave.MouseButton1Down:connect(function()
  181. print('[DBR]Auto-save Activated.')
  182. _G.e = true
  183. while _G.e do
  184. wait(20)
  185. game.ReplicatedStorage.Remotes.Save:InvokeServer()
  186. end
  187. end)
  188.  
  189. Charge.Name = 'Charge'
  190. Charge.Parent = Frame
  191. Charge.Active = false
  192. Charge.BackgroundColor3 = Color3.new(1, 1, 1)
  193. Charge.BorderColor3 = Color3.new(1, 1, 1)
  194. Charge.Position = UDim2.new(-0.0015179161, 0, 0.307172656, 0)
  195. Charge.Size = UDim2.new(0, 166, 0, 32)
  196. Charge.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  197. Charge.Font = Enum.Font.SciFi
  198. Charge.Text = 'Charge'
  199. Charge.TextColor3 = Color3.new(0, 0, 0)
  200. Charge.TextSize = 14
  201. Charge.MouseButton1Down:connect(function()
  202. if Charge.Text == 'Charge' then
  203. Charge.Text = 'Stop Charging'
  204. ChargeTog.Text = 'Enabled'
  205. ChargeTog.TextColor3 = Color3.new(0, 255, 0)
  206. local remote = game['ReplicatedStorage']['Remotes']['Training']['Charge']
  207. local args = {
  208. [1] = game['Players'][Name]['Status'],
  209. [2] = game['Workspace'][Name]['UpperTorso'],
  210. [3] = game['Workspace'][Name]['Humanoid']}
  211. remote:InvokeServer(unpack(args))
  212.  
  213. else
  214. game.ReplicatedStorage.Remotes.Training.ChargeFinish:FireServer()
  215. Charge.Text = 'Charge'
  216. ChargeTog.Text = 'Disabled'
  217. ChargeTog.TextColor3 = Color3.new(0.666667, 0, 0)
  218. end
  219. end)
  220.  
  221. Combat.Name = 'Combat'
  222. Combat.Parent = Frame
  223. Combat.Active = false
  224. Combat.BackgroundColor3 = Color3.new(1, 1, 1)
  225. Combat.BorderColor3 = Color3.new(1, 1, 1)
  226. Combat.Position = UDim2.new(0.000371932983, 0, -0.000783997937, 0)
  227. Combat.Size = UDim2.new(0, 166, 0, 32)
  228. Combat.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  229. Combat.Font = Enum.Font.SciFi
  230. Combat.Text = 'Combat'
  231. Combat.TextColor3 = Color3.new(0, 0, 0)
  232. Combat.TextSize = 14
  233. Combat.MouseButton1Down:connect(function()
  234. if Combat.Text == 'Combat' then
  235. Combat.Text = 'Stop Combat'
  236. ComTog.Text = 'Enabled'
  237. ComTog.TextColor3 = Color3.new(0, 255, 0)
  238. while Combat.Text == 'Stop Combat' do
  239. wait()
  240. local remote = game['ReplicatedStorage']['Remotes']['Training']['Combat']
  241. local args = {
  242. [1] = {
  243. LeftLowerArm = game['Workspace'][Name]['LeftLowerArm'],
  244. RightUpperArm = game['Workspace'][Name]['RightUpperArm'],
  245. LeftFoot = game['Workspace'][Name]['LeftFoot'],
  246. RightHand = game['Workspace'][Name]['RightHand'],
  247. RightLowerArm = game['Workspace'][Name]['RightLowerArm'],
  248. LeftUpperLeg = game['Workspace'][Name]['LeftUpperLeg'],
  249. LeftUpperArm = game['Workspace'][Name]['LeftUpperArm'],
  250. Character = game['Workspace'][Name],
  251. LeftHand = game['Workspace'][Name]['LeftHand'],
  252. RightFoot = game['Workspace'][Name]['RightFoot'],
  253. Humanoid = game['Workspace'][Name]['Humanoid'],
  254. RightLowerLeg = game['Workspace'][Name]['RightLowerLeg'],
  255. RightUpperLeg = game['Workspace'][Name]['RightUpperLeg'],
  256. LeftLowerLeg = game['Workspace'][Name]['LeftLowerLeg']
  257. }
  258. }
  259. remote:InvokeServer(unpack(args))
  260. end
  261. else
  262. Combat.Text = 'Combat'
  263. ComTog.Text = 'Disabled'
  264. ComTog.TextColor3 = Color3.new(0.666667, 0, 0)
  265. end
  266. end)
  267.  
  268.  
  269. ToggleGUI.Name = 'ToggleGUI'
  270. ToggleGUI.Parent = DBR
  271. ToggleGUI.Active = true
  272. ToggleGUI.Draggable = true
  273. ToggleGUI.Visible = true
  274. ToggleGUI.BackgroundColor3 = Color3.new(0, 0, 0)
  275. ToggleGUI.BackgroundTransparency = 0
  276. ToggleGUI.BorderColor3 = Color3.new(1, 1, 1)
  277. ToggleGUI.Position = UDim2.new(0.891, 0, 0.473, 0)
  278. ToggleGUI.Size = UDim2.new(0, 122, 0, 20)
  279. ToggleGUI.Font = Enum.Font.SciFi
  280. ToggleGUI.Text = 'Toggle GUI'
  281. ToggleGUI.TextColor3 = Color3.new(1, 1, 1)
  282. ToggleGUI.TextSize = 14
  283. ToggleGUI.TextStrokeColor3 = Color3.new(1, 1, 1)
  284. ToggleGUI.MouseButton1Down:connect(function()
  285. if MainDesign.Visible == true then
  286. MainDesign.Visible = false
  287. elseif MainDesign.Visible == false then
  288. MainDesign.Visible = true
  289. end
  290. end)
  291.  
  292. ora.Name = 'ora'
  293. ora.Parent = MainDesign
  294. ora.BackgroundColor3 = Color3.new(1, 1, 1)
  295. ora.BackgroundTransparency = 1
  296. ora.BorderColor3 = Color3.new(0, 0, 0)
  297. ora.Position = UDim2.new(0.679339409, 0, 0.0481509455, 0)
  298. ora.Size = UDim2.new(0, 139, 0, 21)
  299. ora.Font = Enum.Font.SciFi
  300. ora.Text = '3ora#2037'
  301. ora.TextColor3 = Color3.new(1, 1, 1)
  302. ora.TextSize = 14
  303.  
  304. dustyn.Name = 'dustyn'
  305. dustyn.Parent = MainDesign
  306. dustyn.BackgroundColor3 = Color3.new(1, 1, 1)
  307. dustyn.BackgroundTransparency = 1
  308. dustyn.Position = UDim2.new(-0.000373635441, 0, 0.0394395292, 0)
  309. dustyn.Size = UDim2.new(0, 171, 0, 25)
  310. dustyn.Font = Enum.Font.SciFi
  311. dustyn.Text = 'Dustyn#2215'
  312. dustyn.TextColor3 = Color3.new(1, 1, 1)
  313. dustyn.TextSize = 14
  314.  
  315. oracredit.Name = 'oracredit' --3ora credits
  316. oracredit.Parent = MainDesign
  317. oracredit.BackgroundColor3 = Color3.new(1, 1, 1)
  318. oracredit.BackgroundTransparency = 1
  319. oracredit.Position = UDim2.new(0.630147099, 0, 0.0200889017, 0)
  320. oracredit.Size = UDim2.new(0, 173, 0, 8)
  321. oracredit.Font = Enum.Font.ArialBold
  322. oracredit.Text = 'GUI Functionality'
  323. oracredit.TextColor3 = Color3.new(1, 1, 1)
  324. oracredit.TextSize = 14
  325.  
  326. dustyncredit.Name = 'dustyncredit' --Ralkei (dustyn) credits
  327. dustyncredit.Parent = MainDesign
  328. dustyncredit.BackgroundColor3 = Color3.new(1, 1, 1)
  329. dustyncredit.BackgroundTransparency = 1
  330. dustyncredit.Position = UDim2.new(0.0016373992, 0, 0.0200889017, 0)
  331. dustyncredit.Size = UDim2.new(0, 173, 0, 8)
  332. dustyncredit.Font = Enum.Font.ArialBold
  333. dustyncredit.Text = 'Features/Designing'
  334. dustyncredit.TextColor3 = Color3.new(1, 1, 1)
  335. dustyncredit.TextSize = 14
  336.  
  337. Title.Name = 'Title' --'DBR' Title
  338. Title.Parent = MainDesign
  339. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  340. Title.BackgroundTransparency = 1
  341. Title.Position = UDim2.new(0.261245757, 0, -0.00536128832, 0)
  342. Title.Size = UDim2.new(0, 200, 0, 35)
  343. Title.Font = Enum.Font.SciFi
  344. Title.Text = 'DBR'
  345. Title.TextColor3 = Color3.new(1, 1, 1)
  346. Title.TextSize = 50
  347.  
  348. FrameStatus.Name = 'FrameStatus' --Frame which is a parent to the statuses
  349. FrameStatus.Parent = MainDesign
  350. FrameStatus.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  351. FrameStatus.BorderColor3 = Color3.new(1, 1, 1)
  352. FrameStatus.Position = UDim2.new(0.303098202, 0, 0.66837877, 0)
  353. FrameStatus.Size = UDim2.new(0, 176, 0, 100)
  354. FrameStatus.Style = Enum.FrameStyle.DropShadow
  355.  
  356. DefenseStatus.Name = 'DefenseStatus'
  357. DefenseStatus.Parent = FrameStatus
  358. DefenseStatus.BackgroundColor3 = Color3.new(1, 1, 1)
  359. DefenseStatus.BackgroundTransparency = 1
  360. DefenseStatus.BorderColor3 = Color3.new(0, 0, 0)
  361. DefenseStatus.Position = UDim2.new(-0.0796937346, 0, 0.631392241, 0)
  362. DefenseStatus.Size = UDim2.new(0, 139, 0, 21)
  363. DefenseStatus.Font = Enum.Font.SciFi
  364. DefenseStatus.Text = 'Defense Status:'
  365. DefenseStatus.TextColor3 = Color3.new(1, 1, 1)
  366. DefenseStatus.TextSize = 14
  367.  
  368. DefTog.Name = 'DefTog'
  369. DefTog.Parent = DefenseStatus
  370. DefTog.BackgroundColor3 = Color3.new(1, 1, 1)
  371. DefTog.BackgroundTransparency = 1
  372. DefTog.Position = UDim2.new(0.661313772, 0, 0.0274934173, 0)
  373. DefTog.Size = UDim2.new(0, 112, 0, 18)
  374. DefTog.Font = Enum.Font.SciFi
  375. DefTog.Text = 'Disabled'
  376. DefTog.TextColor3 = Color3.new(0.666667, 0, 0)
  377. DefTog.TextSize = 14
  378.  
  379. KiBlastStatus.Name = 'KiBlastStatus'
  380. KiBlastStatus.Parent = FrameStatus
  381. KiBlastStatus.BackgroundColor3 = Color3.new(1, 1, 1)
  382. KiBlastStatus.BackgroundTransparency = 1
  383. KiBlastStatus.Position = UDim2.new(-0.160559237, 0, -0.0718653202, 0)
  384. KiBlastStatus.Size = UDim2.new(0, 166, 0, 22)
  385. KiBlastStatus.Font = Enum.Font.SciFi
  386. KiBlastStatus.Text = 'Ki Blast Status:'
  387. KiBlastStatus.TextColor3 = Color3.new(1, 1, 1)
  388. KiBlastStatus.TextSize = 14
  389.  
  390. KiTog.Name = 'KiTog'
  391. KiTog.Parent = KiBlastStatus
  392. KiTog.BackgroundColor3 = Color3.new(1, 1, 1)
  393. KiTog.BackgroundTransparency = 1
  394. KiTog.Position = UDim2.new(0.652551174, 0, 0.0991571695, 0)
  395. KiTog.Size = UDim2.new(0, 102, 0, 19)
  396. KiTog.Font = Enum.Font.SciFi
  397. KiTog.Text = 'Disabled'
  398. KiTog.TextColor3 = Color3.new(0.666667, 0, 0)
  399. KiTog.TextSize = 14
  400.  
  401. AgilityStatis.Name = 'AgilityStatis'
  402. AgilityStatis.Parent = FrameStatus
  403. AgilityStatis.BackgroundColor3 = Color3.new(1, 1, 1)
  404. AgilityStatis.BackgroundTransparency = 1
  405. AgilityStatis.Position = UDim2.new(0.0380910039, 0, 0.400999784, 0)
  406. AgilityStatis.Size = UDim2.new(0, 97, 0, 22)
  407. AgilityStatis.Font = Enum.Font.SciFi
  408. AgilityStatis.Text = 'Agility Status:'
  409. AgilityStatis.TextColor3 = Color3.new(1, 1, 1)
  410. AgilityStatis.TextSize = 14
  411. AgilityStatis.TextWrapped = true
  412.  
  413. AgiTog.Name = 'AgiTog'
  414. AgiTog.Parent = AgilityStatis
  415. AgiTog.BackgroundColor3 = Color3.new(1, 1, 1)
  416. AgiTog.BackgroundTransparency = 1
  417. AgiTog.Position = UDim2.new(0.867289424, 0, 0.110526562, 0)
  418. AgiTog.Size = UDim2.new(0, 73, 0, 16)
  419. AgiTog.Font = Enum.Font.SciFi
  420. AgiTog.Text = 'Disabled'
  421. AgiTog.TextColor3 = Color3.new(0.666667, 0, 0)
  422. AgiTog.TextSize = 14
  423.  
  424. CombatStatus.Name = 'CombatStatus'
  425. CombatStatus.Parent = FrameStatus
  426. CombatStatus.BackgroundColor3 = Color3.new(1, 1, 1)
  427. CombatStatus.BackgroundTransparency = 1
  428. CombatStatus.Position = UDim2.new(-0.0104681849, 0, 0.196267605, 0)
  429. CombatStatus.Size = UDim2.new(0, 113, 0, 18)
  430. CombatStatus.Font = Enum.Font.SciFi
  431. CombatStatus.Text = 'Combat Status:'
  432. CombatStatus.TextColor3 = Color3.new(1, 1, 1)
  433. CombatStatus.TextSize = 14
  434.  
  435. ComTog.Name = 'ComTog'
  436. ComTog.Parent = CombatStatus
  437. ComTog.BackgroundColor3 = Color3.new(1, 1, 1)
  438. ComTog.BackgroundTransparency = 1
  439. ComTog.Position = UDim2.new(0.76729238, 0, -0.043589592, 0)
  440. ComTog.Size = UDim2.new(0, 89, 0, 18)
  441. ComTog.Font = Enum.Font.SciFi
  442. ComTog.Text = 'Disabled'
  443. ComTog.TextColor3 = Color3.new(0.666667, 0, 0)
  444. ComTog.TextSize = 14
  445.  
  446. ChargeStatus.Name = 'ChargeStatus'
  447. ChargeStatus.Parent = FrameStatus
  448. ChargeStatus.BackgroundColor3 = Color3.new(1, 1, 1)
  449. ChargeStatus.BackgroundTransparency = 1
  450. ChargeStatus.Position = UDim2.new(0.0494545922, 0, 0.829039276, 0)
  451. ChargeStatus.Size = UDim2.new(0, 97, 0, 22)
  452. ChargeStatus.Font = Enum.Font.SciFi
  453. ChargeStatus.Text = 'Charge Status:'
  454. ChargeStatus.TextColor3 = Color3.new(1, 1, 1)
  455. ChargeStatus.TextSize = 14
  456. ChargeStatus.TextWrapped = true
  457.  
  458. ChargeTog.Name = 'ChargeTog'
  459. ChargeTog.Parent = ChargeStatus
  460. ChargeTog.BackgroundColor3 = Color3.new(1, 1, 1)
  461. ChargeTog.BackgroundTransparency = 1
  462. ChargeTog.Position = UDim2.new(0.829148054, 0, 0.138228595, 0)
  463. ChargeTog.Size = UDim2.new(0, 89, 0, 18)
  464. ChargeTog.Font = Enum.Font.SciFi
  465. ChargeTog.Text = 'Disabled'
  466. ChargeTog.TextColor3 = Color3.new(0.666667, 0, 0)
  467. ChargeTog.TextSize = 14
  468.  
  469. Delete.Name = 'Delete'
  470. Delete.Parent = MainDesign
  471. Delete.Active = false
  472. Delete.BackgroundColor3 = Color3.new(1, 1, 1)
  473. Delete.BackgroundTransparency = 1.0299999713898
  474. Delete.Position = UDim2.new(0.946227968, 0, 0.924391568, 0)
  475. Delete.Size = UDim2.new(0, 19, 0, 17)
  476. Delete.Font = Enum.Font.SciFi
  477. Delete.Text = 'X'
  478. Delete.TextColor3 = Color3.new(1, 1, 1)
  479. Delete.TextSize = 14
  480. Delete.TextWrapped = true
  481. Delete.MouseButton1Down:connect(function()
  482. wait(0.3)
  483. DBR:Destroy()
  484. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement