The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Blade Quest [OPAUTOFARM] script pastebin roblox
By Blade Quest on 2024-09-21 08:00 am | Syntax: LUA | Views: 14



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. -- Dungeon Settings
  2.  
  3. _G.endlessmode = true -- Will only run endless mode and will reset dungeon after highest level gear is obtained (or the last area is cleared if lastendlesszone is not false), need to be lvl 25+
  4.  
  5. _G.lastendlesszone = false -- leave false if farming for items and/or not farming xp, otherwise set to a number which will be the last area you will do before you start a new endless run
  6.  
  7. _G.endlessmodelimittest = false -- DO NOT LEAVE ON WHILE AFKING ENDLESS MODE, only meant for pushing the limits of the autofarm in endless mode (for leaderboards and shit)
  8.  
  9. _G.hardestdungeonpossible = true -- Will ignore custom dungeon settings below (except for hardcore) and play highest dungeon possible
  10.  
  11. _G.Hardcore = true -- Should be fine for the most part to keep on, but if for some reason you keep dying while autofarming, set to false temporarily until you no longer die.
  12.  
  13. -- Custom Dungeon Settings
  14.  
  15. _G.Location = "Crystal Mines" -- Locations include Dragon's Den, Toy World, Crystal Mines, Ghost Town, and Forest
  16. _G.Difficulty = "Expert" -- Difficulties include Easy, Medium, Hard, and Expert
  17. _G.Privatelobby = true -- Stops randoms from joining your lobby, keep on to avoid suspision and reports
  18.  
  19. -- Loot Settings
  20.  
  21. _G.AutoSell = true -- Automatically sells gear if it is worse than your current gear (Based on damage and level)
  22.  
  23. _G.KeepLegendaries = true -- Will not sell legendaries if you obtain one
  24.  
  25. _G.KeepMythics = true -- will not sell mythics if you obtain one
  26.  
  27. _G.AutoUpgradeSkill = true -- Automatically puts level up points into damage to increase efficiency of autofarm
  28.  
  29. _G.BuySwords = true -- will buy a rare+ sword of your level if you have the gold for it
  30.  
  31. _G.UpgradeEpics = true -- will keep any epics earned and will merge them into legendaries when possible, not worth keeping on unless you want to collect every legendary
  32.  
  33. _G.UpgradeLegendaries = true -- will keep any legendaries earned and will merge them into mythics when possible, best used super late game (lvl 60+)
  34.  
  35. -- Misc Settings
  36.  
  37. _G.BootlegRainbowBlade = false -- Recreates the Rainbow Blade Gamepass locally (Only you will see it) pure aesthetics only.
  38.  
  39. loadstring(game:HttpGet(('https://pastebin.com/raw/AKLySKkf'),true))()