Facebook
From Elsrlol1, 2 Years ago, written in Plain Text.
This paste is a reply to Dragon blox ultimate from hacker - view diff
Embed
Download Paste or View Raw
Hits: 416
  1. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/BimbusCoder/Roblox-Scripts/master/MaterialLua"))()
  2. local UI = Material.Load({Title = "Dragon Blox Ultimate | {}#0001", Style = 1, SizeX = 250, SizeY = 250, Theme = "Mocha"})
  3.  
  4. -- Tabslocal Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/BimbusCoder/Roblox-Scripts/master/MaterialLua"))()
  5. local UI = Material.Load({Title = "Dragon Blox Ultimate | {}#0001", Style = 1, SizeX = 250, SizeY = 250, Theme = "Mocha"})
  6.  
  7. -- Tabs
  8. local Main = UI.New({Title = "Main"})
  9. --
  10. local plr = game.Players.LocalPlayer
  11. local RunService = game:GetService('RunService')
  12. local questRemote = game:GetService("ReplicatedStorage").Package.Events.Qaction
  13. local punchRemote = game:GetService("ReplicatedStorage").Package.Events.p
  14. local equipRemote = game:GetService("ReplicatedStorage").Package.Events.equipskill
  15. local rebirthRemote = game:GetService("ReplicatedStorage").Package.Events.reb
  16.  
  17. local Settings = {Tables = {Forms = {'SSJB4','True God of Creation','True God of Destruction','Super Broly','LSSJG','LSSJ4','SSJG4','LSSJ3','SSJ5','Mystic Kaioken','LSSJ Kaioken','SSJ2 Kaioken','SSJR3','SSJB3','God Of Destruction','God Of Creation','Jiren Ultra Instinct', 'Mastered Ultra Instinct','Godly SSJ2', 'Ultra Instinct Omen', 'Evil SSJ','Blue Evolution','Dark Rose','Kefla SSJ2','SSJ Berserker','True Rose', 'SSJB Kaioken','SSJ Rose', 'SSJ Blue','Corrupt SSJ','SSJ Rage','SSJG','SSJ4','Mystic','LSSJ','SSJ3','Spirit SSJ','SSJ2 Majin','SSJ2','SSJ Kaioken','SSJ','FSSJ','Kaioken'}};Variables = {Farm = false}}
  18. setmetatable(Settings, {__index = function() warn('Dumbass') end}) -- literally no use i was just bored
  19.  
  20. local function returnQuest(boolean)
  21.     local quest = getrenv()._G.x.GetRecommendedQuest(game.Players.LocalPlayer)
  22.     if (boolean) and quest:find('Bills Planet') then
  23.         return 'SSJG Kakata'
  24.     else
  25.         return quest
  26.     end
  27. end
  28. local function transform()
  29.     pcall(function()
  30.         for i,v in pairs(Settings.Tables.Forms) do
  31.             if equipRemote:InvokeServer(v) then
  32.                 break
  33.             end
  34.         end
  35.         repeat wait()
  36.             if plr.Character.Status.SelectedTransformation.Value ~= plr.Character.Status.Transformation.Value then
  37.                 game:GetService("ReplicatedStorage").Package.Events.ta:InvokeServer()
  38.             end
  39.         until game.Players.LocalPlayer.Character.Status.SelectedTransformation.Value == game.Players.LocalPlayer.Character.Status.Transformation.Value
  40.     end)
  41. end
  42.  
  43. RunService.RenderStepped:Connect(function()
  44.     if Settings.Variables.Farm then
  45.         plr.Character:WaitForChild('Humanoid'):ChangeState(11)
  46.     end
  47. end)
  48. local RebirthFarm = Main.Toggle({
  49.     Text = 'Rebirth-Farm',
  50.     Callback = function(bool)
  51.         Settings.Variables.Farm = bool
  52.         while bool and wait() do
  53.             if (not plr.PlayerGui.Main.MainFrame.Frames.Quest.Nop.Visible and bool) then
  54.                 for i,v in next, workspace.Living:GetChildren() do
  55.                     if (v.Name == returnQuest(true) or v.Name == game:GetService("ReplicatedStorage").Package.Quests[returnQuest(true)].Objective.Value) and not plr.PlayerGui.Main.MainFrame.Frames.Quest.Nop.Visible and v:FindFirstChild('Humanoid') and v:FindFirstChild('HumanoidRootPart') and v.Humanoid.Health > 0 then
  56.                         repeat wait()
  57.                             pcall(function() plr.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,2) end)
  58.                             punchRemote:FireServer('Blacknwhite27',1)
  59.                         until not v or not v:FindFirstChild('Humanoid') or not v:FindFirstChild('HumanoidRootPart') or v.Humanoid.Health <= 0 or not Settings.Variables.Farm or plr.PlayerGui:WaitForChild('Main').MainFrame.Frames.Quest.Nop.Visible
  60.                     end
  61.                 end
  62.             else
  63.                 pcall(function() questRemote:InvokeServer(workspace.Others.NPCs[returnQuest(true)]) end)
  64.             end
  65.         end
  66.     end
  67. })
  68.  
  69. local GodMode = Main.Toggle({
  70.     Text = 'GodMode',
  71.     Callback = function(bool)
  72.         pcall(function()
  73.             if bool then
  74.                 plr.Character.Status.Blocking.Parent = nil
  75.             else
  76.                 plr.Character.Humanoid.Health = -math.huge
  77.             end
  78.         end)
  79.     end
  80. })
  81. local AutoTransform = Main.Toggle({
  82.     Text = 'Auto-Transform',
  83.     Callback = function(bool)
  84.         pcall(function()
  85.             while bool and wait() do
  86.                 transform()
  87.             end
  88.         end)
  89.     end
  90. })
  91. local AutoRebirth = Main.Toggle({
  92.     Text = 'Rebirth',
  93.     Callback = function(bool)
  94.         while bool and wait() do
  95.             rebirthRemote:InvokeServer()
  96.         end
  97.     end
  98. })
  99. local AutoCharge = Main.Toggle({
  100.     Text = 'Auto-Charge',
  101.     Callback = function(bool)
  102.         while bool and wait() do
  103.             game:GetService("ReplicatedStorage").Package.Events.cha:InvokeServer('Blacknwhite27')
  104.         end
  105.     end
  106. })
  107. local Main = UI.New({Title = "Main"})
  108. --
  109. local plr = game.Players.LocalPlayer
  110. local RunService = game:GetService('RunService')
  111. local questRemote = game:GetService("ReplicatedStorage").Package.Events.Qaction
  112. local punchRemote = game:GetService("ReplicatedStorage").Package.Events.p
  113. local equipRemote = game:GetService("ReplicatedStorage").Package.Events.equipskill
  114. local rebirthRemote = game:GetService("ReplicatedStorage").Package.Events.reb
  115.  
  116. local Settings = {Tables = {Forms = {'SSJB4','True God of Creation','True God of Destruction','Super Broly','LSSJG','LSSJ4','SSJG4','LSSJ3','SSJ5','Mystic Kaioken','LSSJ Kaioken','SSJ2 Kaioken','SSJR3','SSJB3','God Of Destruction','God Of Creation','Jiren Ultra Instinct', 'Mastered Ultra Instinct','Godly SSJ2', 'Ultra Instinct Omen', 'Evil SSJ','Blue Evolution','Dark Rose','Kefla SSJ2','SSJ Berserker','True Rose', 'SSJB Kaioken','SSJ Rose', 'SSJ Blue','Corrupt SSJ','SSJ Rage','SSJG','SSJ4','Mystic','LSSJ','SSJ3','Spirit SSJ','SSJ2 Majin','SSJ2','SSJ Kaioken','SSJ','FSSJ','Kaioken'}};Variables = {Farm = false}}
  117. setmetatable(Settings, {__index = function() warn('Dumbass') end}) -- literally no use i was just bored
  118.  
  119. local function returnQuest(boolean)
  120.     local quest = getrenv()._G.x.GetRecommendedQuest(game.Players.LocalPlayer)
  121.     if (boolean) and quest:find('Bills Planet') then
  122.         return 'SSJG Kakata'
  123.     else
  124.         return quest
  125.     end
  126. end
  127. local function transform()
  128.     pcall(function()
  129.         for i,v in pairs(Settings.Tables.Forms) do
  130.             if equipRemote:InvokeServer(v) then
  131.                 break
  132.             end
  133.         end
  134.         repeat wait()
  135.             if plr.Character.Status.SelectedTransformation.Value ~= plr.Character.Status.Transformation.Value then
  136.                 game:GetService("ReplicatedStorage").Package.Events.ta:InvokeServer()
  137.             end
  138.         until game.Players.LocalPlayer.Character.Status.SelectedTransformation.Value == game.Players.LocalPlayer.Character.Status.Transformation.Value
  139.     end)
  140. end
  141.  
  142. RunService.RenderStepped:Connect(function()
  143.     if Settings.Variables.Farm then
  144.         plr.Character:WaitForChild('Humanoid'):ChangeState(11)
  145.     end
  146. end)
  147. local RebirthFarm = Main.Toggle({
  148.     Text = 'Rebirth-Farm',
  149.     Callback = function(bool)
  150.         Settings.Variables.Farm = bool
  151.         while bool and wait() do
  152.             if (not plr.PlayerGui.Main.MainFrame.Frames.Quest.Nop.Visible and bool) then
  153.                 for i,v in next, workspace.Living:GetChildren() do
  154.                     if (v.Name == returnQuest(true) or v.Name == game:GetService("ReplicatedStorage").Package.Quests[returnQuest(true)].Objective.Value) and not plr.PlayerGui.Main.MainFrame.Frames.Quest.Nop.Visible and v:FindFirstChild('Humanoid') and v:FindFirstChild('HumanoidRootPart') and v.Humanoid.Health > 0 then
  155.                         repeat wait()
  156.                             pcall(function() plr.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,2) end)
  157.                             punchRemote:FireServer('Blacknwhite27',1)
  158.                         until not v or not v:FindFirstChild('Humanoid') or not v:FindFirstChild('HumanoidRootPart') or v.Humanoid.Health <= 0 or not Settings.Variables.Farm or plr.PlayerGui:WaitForChild('Main').MainFrame.Frames.Quest.Nop.Visible
  159.                     end
  160.                 end
  161.             else
  162.                 pcall(function() questRemote:InvokeServer(workspace.Others.NPCs[returnQuest(true)]) end)
  163.             end
  164.         end
  165.     end
  166. })
  167.  
  168. local GodMode = Main.Toggle({
  169.     Text = 'GodMode',
  170.     Callback = function(bool)
  171.         pcall(function()
  172.             if bool then
  173.                 plr.Character.Status.Blocking.Parent = nil
  174.             else
  175.                 plr.Character.Humanoid.Health = -math.huge
  176.             end
  177.         end)
  178.     end
  179. })
  180. local AutoTransform = Main.Toggle({
  181.     Text = 'Auto-Transform',
  182.     Callback = function(bool)
  183.         pcall(function()
  184.             while bool and wait() do
  185.                 transform()
  186.             end
  187.         end)
  188.     end
  189. })
  190. local AutoRebirth = Main.Toggle({
  191.     Text = 'Rebirth',
  192.     Callback = function(bool)
  193.         while bool and wait() do
  194.             rebirthRemote:InvokeServer()
  195.         end
  196.     end
  197. })
  198. local AutoCharge = Main.Toggle({
  199.     Text = 'Auto-Charge',
  200.     Callback = function(bool)
  201.         while bool and wait() do
  202.             game:GetService("ReplicatedStorage").Package.Events.cha:InvokeServer('Blacknwhite27')
  203.         end
  204.     end
  205. })
  206.  

Replies to Re: Dragon blox ultimate rss

Title Name Language When
Re: Re: Dragon blox ultimate Bulky Horse text 2 Years ago.
captcha