Facebook
From Fiery Earthworm, 1 Year ago, written in Plain Text.
This paste is a reply to Re: Dragon blox ultimate from Toxic Motmot - view diff
Embed
Download Paste or View Raw
Hits: 194
  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. -- Tabs
  5. local Main = UI.New({Title = "Main"})
  6. --
  7. local plr = game.Players.LocalPlayer
  8. local RunService = game:GetService('RunService')
  9. local questRemote = game:GetService("ReplicatedStorage").Package.Events.Qaction
  10. local punchRemote = game:GetService("ReplicatedStorage").Package.Events.p
  11. local equipRemote = game:GetService("ReplicatedStorage").Package.Events.equipskill
  12. local rebirthRemote = game:GetService("ReplicatedStorage").Package.Events.reb
  13.  
  14. 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}}
  15. setmetatable(Settings, {__index = function() warn('Dumbass') end}) -- literally no use i was just bored
  16.  
  17. local function returnQuest(boolean)
  18.     local quest = getrenv()._G.x.GetRecommendedQuest(game.Players.LocalPlayer)
  19.     if (boolean) and quest:find('Bills Planet') then
  20.         return 'SSJG Kakata'
  21.     else
  22.         return quest
  23.     end
  24. end
  25. local function transform()
  26.     pcall(function()
  27.         for i,v in pairs(Settings.Tables.Forms) do
  28.             if equipRemote:InvokeServer(v) then
  29.                 break
  30.             end
  31.         end
  32.         repeat wait()
  33.             if plr.Character.Status.SelectedTransformation.Value ~= plr.Character.Status.Transformation.Value then
  34.                 game:GetService("ReplicatedStorage").Package.Events.ta:InvokeServer()
  35.             end
  36.         until game.Players.LocalPlayer.Character.Status.SelectedTransformation.Value == game.Players.LocalPlayer.Character.Status.Transformation.Value
  37.     end)
  38. end
  39.  
  40. RunService.RenderStepped:Connect(function()
  41.     if Settings.Variables.Farm then
  42.         plr.Character:WaitForChild('Humanoid'):ChangeState(11)
  43.     end
  44. end)
  45. local RebirthFarm = Main.Toggle({
  46.     Text = 'Rebirth-Farm',
  47.     Callback = function(bool)
  48.         Settings.Variables.Farm = bool
  49.         while bool and wait() do
  50.             if (not plr.PlayerGui.Main.MainFrame.Frames.Quest.Nop.Visible and bool) then
  51.                 for i,v in next, workspace.Living:GetChildren() do
  52.                     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
  53.                         repeat wait()
  54.                             pcall(function() plr.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,2) end)
  55.                             punchRemote:FireServer('Blacknwhite27',1)
  56.                         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
  57.                     end
  58.                 end
  59.             else
  60.                 pcall(function() questRemote:InvokeServer(workspace.Others.NPCs[returnQuest(true)]) end)
  61.             end
  62.         end
  63.     end
  64. })
  65.  
  66. local GodMode = Main.Toggle({
  67.     Text = 'GodMode',
  68.     Callback = function(bool)
  69.         pcall(function()
  70.             if bool then
  71.                 plr.Character.Status.Blocking.Parent = nil
  72.             else
  73.                 plr.Character.Humanoid.Health = -math.huge
  74.             end
  75.         end)
  76.     end
  77. })
  78. local AutoTransform = Main.Toggle({
  79.     Text = 'Auto-Transform',
  80.     Callback = function(bool)
  81.         pcall(function()
  82.             while bool and wait() do
  83.                 transform()
  84.             end
  85.         end)
  86.     end
  87. })
  88. local AutoRebirth = Main.Toggle({
  89.     Text = 'Rebirth',
  90.     Callback = function(bool)
  91.         while bool and wait() do
  92.             rebirthRemote:InvokeServer()
  93.         end
  94.     end
  95. })
  96. local AutoCharge = Main.Toggle({
  97.     Text = 'Auto-Charge',
  98.     Callback = function(bool)
  99.         while bool and wait() do
  100.             game:GetService("ReplicatedStorage").Package.Events.cha:InvokeServer('Blacknwhite27')
  101.         end
  102.     end
  103. })
  104.