Advertisement
Guest User

voice_less dbr

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