The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
World // Zero script pastebin roblox
By LINK GAME on 2024-09-19 08:00 am | Syntax: LUA | Views: 22



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. _G.AutoSell = true -- Self explanatory
  2. _G.AutoEquipAndUpgrade = true -- Only upgrades items if you have more than 2000 gold
  3.  
  4. _G.OnlySellBelowMyLevel = true -- Only sells items below your level
  5. _G.RaritiesToNotSell = { -- Does not sell rarities set that are set to true
  6. ["Common"] = true;
  7. ["Uncommon"] = false;
  8. ["Rare"] = false;
  9. ["Epic"] = true;
  10. ["Legendary"] = true;
  11. }
  12.  
  13. _G.AutoJoinNextDungeon = false -- Auto joins the next dungeon after dungeon is complete and collects rewards
  14.  
  15. _G.ChooseDungeon = false -- If true then it will join the dungeon set in _G.Dungeon
  16. _G.Dungeon = "Volcano Dungeon"
  17. --[[
  18. World 1: Crabby Crusade (1-2), Dire Problem (3), Scarecrow Defense (4-6), Kingslayer (7-8), Night of the Dead (9-11), Gravetower Dungeon (12-14)
  19. World 2: Temple of Ruin (15-17), Mama Trauma (18-21), Volcano's Shadow (22-25), Volcano Dungeon (26-29)
  20. World 3: Mountain Pass (30-34), Winter Cavern (35-39), Winter Dungeon (40-45)
  21. ]]--
  22.  
  23. _G.Dance = false -- ok
  24.  
  25. loadstring(game:HttpGet("https://pastebin.com/raw/T6psqHmB", true))()