Advertisement
ItzDiegoExploitzBoi

Untitled

Jul 4th, 2020
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.23 KB | None | 0 0
  1. _G.DungeonSettings = {
  2. ["General"] = {
  3. ["Hardcore"] = true, -- If the dungeon is hardcore
  4. ["AutoSelect"] = false -- Auto select highest dungeon
  5. },
  6. ["CustomDungeon"] = {
  7. ["Dungeon"] = "The Underworld", -- Custom dungeon
  8. ["Difficulty"] = "Nightmare" -- Custom difficulty
  9. },
  10. ["EggIsland"] = {
  11. ["Enabled"] = false, -- If egg island is enabled
  12. ["Difficulty"] = "Nightmare", -- Difficulty
  13. ["Set"] = "Mage" -- Capital first letter (case sensitive)
  14. },
  15. ["WaveDefense"] = {
  16. ["Enabled"] = false, -- If wave defense is enabled
  17. ["Dungeon"] = "Desert Temple",
  18. ["Difficulty"] = "Nightmare",
  19. ["StopAtWave"] = 300,
  20. },
  21. }
  22.  
  23. _G.AutofarmSettings = {
  24. ["FastMode"] = false, -- Ups the speed, only reccomended for Synapse (will probably bug out on other exploits)
  25. ["DisableDodges"] = false, -- Disables dodges
  26. }
  27.  
  28. _G.Autosell = {
  29. ["Enabled"] = false, -- If autosell is enabled
  30. ["Rarities"] = { -- Rarities to keep 100% of the time
  31. "legendary"
  32. },
  33. ["Items"] = { -- Items to keep 100% of the time
  34. ["Lava King's Warrior Helmet"] = {"epic", "rare"},
  35. ["Lava King's Warrior Armor"] = {"epic", "rare"},
  36. ["Lava King's Mage Helmet"] = {"epic", "rare"},
  37. ["Lava King's Mage Armor"] = {"epic", "rare"},
  38. }
  39. }
  40.  
  41. _G.AutoSkill = {
  42. ["Enabled"] = true, -- If auto skill is enabled or not
  43. ["SkillType"] = { -- Percentages to upgrade each
  44. ["physical"] = 100,
  45. ["spell"] = 0,
  46. ["stamina"] = 0
  47. }
  48. }
  49.  
  50. _G.AutoEquip = {
  51. ["Enabled"] = true, -- If autoequip is enabled
  52. ["EquipType"] = "physicalPower", -- Autoequip type, types: physicalPower, spellPower
  53. }
  54.  
  55. _G.AutoUpgrade = {
  56. ["Enabled"] = true, -- If auto upgrade is enabled
  57. }
  58.  
  59. _G.Joining = {
  60. ["Enabled"] = false, -- If joining is enabled or not
  61. ["Host"] = "account1", -- Party host
  62. ["Joiners"] = { -- Party joiner
  63. "account2"
  64. }
  65. }
  66.  
  67. _G.Multifarm = { -- Difference for "Joining" is that multi farm auto puts everyone into the round, and they all autofarm together, Joining just waits for them to join
  68. ["Enabled"] = false, -- If multifarm is enabled or not
  69. ["Host"] = "account1", -- Party host
  70. ["Joiners"] = { -- Party joiners
  71. "account2", "account3"
  72. }
  73. }
  74.  
  75. _G.LagReduce = {
  76. ["DisableSpell"] = true, -- Disables spell effects
  77. ["DisableDamageNums"] = true,
  78. ["ReduceGraphics"] = true,
  79. ["CumLand"] = false -- :)
  80. }
  81.  
  82. _G.Misc = {
  83. ["WaitTime"] = 0, -- How long the script waits before auto executing
  84. ["DupeSlot"] = "e", -- Spell slot to dupe (cast twice)
  85. ["EndAfterSeconds"] = 999, -- Time to auto end the dungeon after
  86. ["InstaRejoin"] = true, -- Insta rejoins after completion
  87. ["AutoDaily"] = true,
  88. }
  89.  
  90. _G.GuiChange = {
  91. ["Enabled"] = false, -- If gui change is enabled
  92. ["Name"] = "smh my head", -- Player's Name
  93. ["Level"] = "6969", -- Player's Level
  94. ["EXP"] = "6969", -- Player's EXP
  95. ["HP"] = "6969", -- Player's HP
  96. ["Gold"] = "6969", -- Player's Gold
  97. ["Avatar"] = "https://www.roblox.com/asset-thumbnail/image?assetId=2833845574&width=420&height=420&format=png" -- Player's Avatar
  98. }
  99.  
  100. --[[
  101.  
  102. ____ __ _____ __
  103. /\ _`\ /\ \ /\ __`\ /\ \__
  104. \ \,\L\_\ _____ ___ ___ \_\ \ __ _ __ \ \ \/\ \ __ __ __ ____\ \ ,_\
  105. \/_\__ \ /\ '__`\ / __`\ / __`\ /'_` \ /'__`\/\`'__\ \ \ \ \ \/\ \/\ \ /'__`\ /',__\\ \ \/
  106. /\ \L\ \ \ \L\ \/\ \L\ \/\ \L\ \/\ \L\ \/\ __/\ \ \/ \ \ \\'\\ \ \_\ \/\ __//\__, `\\ \ \_
  107. \ `\____\ \ ,__/\ \____/\ \____/\ \___,_\ \____\\ \_\ \ \___\_\ \____/\ \____\/\____/ \ \__\
  108. \/_____/\ \ \/ \/___/ \/___/ \/__,_ /\/____/ \/_/ \/__//_/\/___/ \/____/\/___/ \/__/
  109. \ \_\
  110. \/_/
  111.  
  112. - Premium Dungeon Quest Autofarm | Developed by Introvert#1337 and Username#6969
  113.  
  114. ]]
  115.  
  116. loadstring(game:HttpGet('https://raw.githubusercontent.com/Introvert1337/SpooderQuest/master/main.lua', true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement