aesnike

Spooder Quest | DQ AUTOFARM SCRIPT(SAFE)

Oct 22nd, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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"] = "Orbital Outpost", -- 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.Autosell = {
  24. ["Enabled"] = true, -- If autosell is enabled
  25. ["Rarities"] = { -- Rarities to keep 100% of the time
  26. "legendary",
  27. },
  28. ["Items"] = { -- Items to keep 100% of the time
  29. ["Alien Warrior Helmet"] = {"epic"},
  30. ["Alien Warrior Armor"] = {"epic"},
  31. ["Alien Mage Helmet"] = {"epic"},
  32. ["Alien Mage Armor"] = {"epic"},
  33. ["Twin Slash"] = {"epic"}
  34. }
  35. }
  36.  
  37. _G.AutoSkill = {
  38. ["Enabled"] = true, -- If auto skill is enabled or not
  39. ["SkillType"] = { -- Percentages to upgrade each
  40. ["physical"] = 100,
  41. ["spell"] = 0,
  42. ["stamina"] = 0
  43. }
  44. }
  45.  
  46. _G.AutoEquip = {
  47. ["Enabled"] = true, -- If autoequip is enabled
  48. ["EquipType"] = "physicalPower", -- Autoequip type, types: physicalPower, spellPower
  49. }
  50.  
  51. _G.AutoUpgrade = {
  52. ["Enabled"] = true, -- If auto upgrade is enabled
  53. }
  54.  
  55. _G.Joining = {
  56. ["Enabled"] = false, -- If joining is enabled or not
  57. ["Host"] = "account1", -- Party host
  58. ["Joiners"] = { -- Party joiner
  59. "account2"
  60. }
  61. }
  62.  
  63. _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
  64. ["Enabled"] = false, -- If multifarm is enabled or not
  65. ["Host"] = "account1", -- Party host
  66. ["Joiners"] = { -- Party joiners
  67. "account2", "account3"
  68. }
  69. }
  70.  
  71. _G.LagReduce = {
  72. ["DisableSpell"] = true, -- Disables spell effects
  73. ["DisableDamageNums"] = true,
  74. ["ReduceGraphics"] = true,
  75. ["CumLand"] = false -- :)
  76. }
  77.  
  78. _G.Misc = {
  79. ["WaitTime"] = 0, -- How long the script waits before auto executing
  80. ["DupeSlot"] = "e", -- Spell slot to dupe (cast twice)
  81. ["EndAfterSeconds"] = 999, -- Time to auto end the dungeon after
  82. ["InstaRejoin"] = true, -- Insta rejoins after completion
  83. ["AutoDaily"] = true,
  84. }
  85.  
  86. _G.GuiChange = {
  87. ["Enabled"] = false, -- If gui change is enabled
  88. ["Name"] = "smh my head", -- Player's Name
  89. ["Level"] = "6969", -- Player's Level
  90. ["EXP"] = "6969", -- Player's EXP
  91. ["HP"] = "6969", -- Player's HP
  92. ["Gold"] = "6969", -- Player's Gold
  93. ["Avatar"] = "https://www.roblox.com/asset-thumbnail/image?assetId=2833845574&width=420&height=420&format=png" -- Player's Avatar
  94. }
  95.  
  96. --[[
  97.  
  98. ____ __ _____ __
  99. /\ _`\ /\ \ /\ __`\ /\ \__
  100. \ \,\L\_\ _____ ___ ___ \_\ \ __ _ __ \ \ \/\ \ __ __ __ ____\ \ ,_\
  101. \/_\__ \ /\ '__`\ / __`\ / __`\ /'_` \ /'__`\/\`'__\ \ \ \ \ \/\ \/\ \ /'__`\ /',__\\ \ \/
  102. /\ \L\ \ \ \L\ \/\ \L\ \/\ \L\ \/\ \L\ \/\ __/\ \ \/ \ \ \\'\\ \ \_\ \/\ __//\__, `\\ \ \_
  103. \ `\____\ \ ,__/\ \____/\ \____/\ \___,_\ \____\\ \_\ \ \___\_\ \____/\ \____\/\____/ \ \__\
  104. \/_____/\ \ \/ \/___/ \/___/ \/__,_ /\/____/ \/_/ \/__//_/\/___/ \/____/\/___/ \/__/
  105. \ \_\
  106. \/_/
  107.  
  108. - Premium Dungeon Quest Autofarm | Developed by Introvert#1337 and Username#6969
  109.  
  110. ]]
  111.  
  112. loadstring(game:HttpGet('https://raw.githubusercontent.com/Introvert1337/SpooderQuest/master/main.lua', true))()
Add Comment
Please, Sign In to add comment