1. _G.teleportDuringBossOnly = true -- if true, only use smallTeleports when its time for a boss
  2. _G.doInstakill = true
  3. -- AI Visual Settings
  4. _G.showTarget = true -- this will highlight each target in a red box
  5. _G.showPath = true
  6. -- AI Performance
  7. _G.extremelyFast = true -- makes the ai think exponentially faster, but might lag for people
  8. -- Lobby Settings
  9. _G.maxWaitTimeInLobby = 0 -- this is how long itll randomly walk around for before going into a dungeon
  10. _G.collect_daily_reward = false
  11. -- Dungeon Choosing Settings
  12. _G.auto_join_dungeon = true
  13. _G.dungeon = nil
  14. _G.difficulty = nil
  15. _G.hardcore = true -- hardcore mode
  16. _G.auto_choose_dungeon_and_difficulty = true -- if true, then script auto choose dungeon and difficulty for your lvl
  17. _G.autoexec_wait_time_secs = 3
  18. -- Boss Raid Settings
  19. _G.boss_raid = false
  20. _G.auto_choose_raid_boss_tier = true
  21. _G.boss_raid_tier = 1
  22. -- Wave Defense Settings
  23. _G.wavedefense = false -- wave defense
  24. -- Easter Event Settings
  25. _G.easter_enable = false
  26. _G.eggClass = "Mage"
  27. -- Party Settings
  28. -- Hosting Settings
  29. _G.wait_for_friends = false
  30. _G.friends = {"Friend 1", "Friend 2"}
  31. -- Joining Settings
  32. _G.wait_for_friends_to_host = false
  33. _G.host_name = "Name of the host"
  34. -- Multi-Instance Settings
  35. _G.multi_roblox = false
  36. _G.host_name_key = {"acc"} -- this account creates parties
  37. _G.name_key_list = {
  38. {"acc"},
  39. }
  40. -- Autosell Settings
  41. _G.autosell = false
  42. _G.testSell = false -- prints out what items would've been sold instead of selling the items
  43. _G.keep_items_level_requirement = 156 -- keeps items that level requirements are above this number
  44. _G.keep2spells = false -- sell spells extra spells if you have 2 already
  45. _G.keep_items_from_class = {
  46. ["physical"] = false,
  47. ["mage"] = false,
  48. } --[[ only keeps items that fall within the given class ]]
  49. _G.keeprarities = {
  50. ['legendary'] = true,
  51. ['epic'] = false,
  52. ['rare'] = false,
  53. ['uncommon'] = false,
  54. ['common'] = false,
  55. }
  56. _G.itemlist ={
  57. --Volcanic Chambers Armor
  58. ["Lava King's Warrior Helmet"] = {"rare","epic"},
  59. ["Lava King's Warrior Armor"] = {"rare","epic"},
  60. ["Lava King's Mage Helmet"] = {"rare","epic"},
  61. ["Lava King's Mage Armor"] = {"rare","epic"},
  62. -- Warrior Skills,
  63. ["Enhanced Inner Rage"] = {"legendary"},
  64. -- Others
  65. ["Enchanted Serpent Daggers"] = {"rare","epic"},
  66. ["Oceanic Greatsword"] = {"rare","epic"},
  67. ["Spear Strike"] = {"rare"},
  68. ["Water Orb"] = {"rare"},
  69. ["Ice Barrage"] = {"epic"},
  70. ["Ice Crash"] = {"epic"},
  71. ["Aquatic Smite"] = {"epic"},
  72. ["Ice Spikes"] = {"epic"},
  73. ["Triton Warrior Helmet"] = {"rare","epic","uncommon"},
  74. ["Triton Warrior Armor"] = {"rare","epic","uncommon"},
  75. ["Triton Mage Armor"] = {"rare","epic","uncommon"},
  76. ["Triton Mage Helmet"] = {"rare","epic","uncommon"},
  77. ["Triton Guardian Helmet"] = {"rare","epic"},
  78. ["Triton Guardian Armor"] = {"rare","epic"},
  79. }
  80. -- Auto Upgrade Settings
  81. _G.auto_stat_upgrade = false -- auto upgrade stats
  82. _G.stat = "physicalPower" -- selected stat
  83. _G.auto_equip_gear = false
  84. _G.equip_type = "spell" -- "physical", "spell"
  85. _G.auto_upgrade_equip = false
  86. _G.autoEquipSpell = false
  87. _G.spellType = "spell" -- "physical", "spell"
  88. -- ANTI LAG SETTINGS
  89. _G.wall_transparency = .5
  90. _G.optimize_mobs = true
  91. _G.destroy_map = true
  92. _G.del_armor= true
  93. _G.del_weapon = true
  94. _G.hide_projectiles = true
  95. _G.loadSlow = false
  96. _G.fpsBoost = true
  97. -- UI Settings
  98. _G.edit_ui = false
  99. _G.UI_portait_image = 'rbxassetid://3157197640'
  100. _G.UI_health = "Peanut"
  101. _G.UI_money = "Peanut"
  102. _G.UI_name = "Peanut Quest"
  103. _G.UI_xp = "66"
  104. _G.UI_lvl = "33"
  105. -- Discord Webhook
  106. _G.webhookEnabled = false
  107. _G.webhookLink = nil -- your webhook
  108. loadstring(game:HttpGet(('https://raw.githubusercontent.com/PeanutQuest/PeanutQuestBeta/main/Release.lua'),true))()