yeoyeoyeoyayaya

Untitled

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