Advertisement
DesiredPaths

Untitled

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