You are on page 1of 3

-- Whitelist

_G.key = "keyhere" -- type to bot !getwl for this info


_G.id = "idhere"
-- AI Settings
-- AI Behavioral Settings
_G.abilityRange = 65 -- the target must be atleast 65 studs away before using
abilities
-- ABILITY RANGE MUST BE GREATER THAN BOSSRANGE AND MOBRANGE TO HIT ANYTHING
_G.bossRange = 55 -- this is how far away the bot will try stay away from bosses
_G.mobRange = 55 -- this is how far away the bot will try to stay away from mobs
_G.ignoreAbilityRange = false
_G.walkspeed = 24 -- 35 is like the max, if you have high ping lower this alittle
_G.smallTeleports = true -- if true, player teleports to places, might want to
lower walkspeed alittle or else you'll probably get kicked
_G.teleportDuringBossOnly = true -- if true, only use smallTeleports when its time
for a boss
_G.doInstakill = true
-- AI Visual Settings
_G.showTarget = true -- this will highlight each target in a red box
-- AI Performance
_G.extremelyFast = true -- makes the ai think exponentially faster, but might lag
for peopel
-- Lobby Settings
_G.maxWaitTimeInLobby = 0 -- this is how long itll randomly walk around for before
going into a dungeon
_G.collect_daily_reward = true

-- Dungeon Choosing Settings


-- Normal Dungeon Settings
_G.auto_join_dungeon = true
_G.dungeon = "Steampunk Sewers"
_G.difficulty = "Nightmare"
_G.hardcore = false
_G.auto_choose_dungeon_and_difficulty = true
_G.autoexec_wait_time_secs = 3

-- Boss Raid Settings


_G.boss_raid = false
_G.auto_choose_raid_boss_tier = true
_G.boss_raid_tier = 1

-- Wave Defense Settings


_G.wavedefense = false

-- Easter Event Settings


_G.easter_enable = false
_G.eggClass = "Mage"

-- Party Settings
-- Hosting Settings
_G.wait_for_friends = false
_G.friends = {"Friend 1", "Friend 2"}

-- Joining Settings
_G.wait_for_friends_to_host = false
_G.host_name = "Name of the host"

-- Multi-Instance Settings
_G.multi_roblox = false
_G.host_name_key = {"roblox account 1 name"} -- this account creates parties
_G.name_key_list = {

{"roblox account 1 name"},


{"roblox account 2 name"},

-- Autosell Settings
_G.autosell = true
_G.testSell = false -- prints out what items would've been sold instead of selling
the items
_G.keep_items_level_requirement = 999 -- keeps items that level requirements are
above this number
_G.keep2spells = true -- sell spells extra spells if you have 2 already
_G.keep_items_from_class = {
["physical"] = false,
["mage"] = false,
} --[[ only keeps items that fall within the given class ]]
_G.keeprarities = {
['legendary'] = true,
['epic'] = true,
['rare'] = false,
['uncommon'] = false,
['common'] = false,
}
_G.itemlist ={

--Volcanic Chambers Armor


["Lava King's Warrior Helmet"] = {"rare","epic"},
["Lava King's Warrior Armor"] = {"rare","epic"},
["Lava King's Mage Helmet"] = {"rare","epic"},
["Lava King's Mage Armor"] = {"rare","epic"},
["Molten Forged Mage Helmet"] = {"epic"},
["Molten Forged Mage Armor"] = {"epic"},
["Molten Forged Warrior Helmet"] = {"epic"},
["Molten Forged Warrior Armor"] = {"epic"},
-- Warrior Skills
["Twin Slash"] = {"epic"},
["Enhanced Inner Rage"] = {"legendary"},
["Lava Barrage"] = {"epic"},
["Blade Fall"] = {"epic"},
-- Others
["Dual Magma Shields"] = {"epic"},
["Volcanic Greatsword"] = {"epic"},
["Magma Infused Waraxe"] = {"epic"},
["Shattered Magma Blade"] = {"epic"},
["Ancient Lava Axe"] = {"epic"},
["Dual Hellfire Blades"] = {"epic"},

-- Auto Upgrade Settings


_G.auto_stat_upgrade = false
_G.stat = "physicalPower" -- "physicalPower", "stamina", "spellPower"
_G.auto_equip_gear = false
_G.equip_type = "physical" -- "physical", "spell"
_G.auto_upgrade_equip = false
_G.autoEquipSpell = false
_G.spellType = "spell" -- "physical", "spell"

-- ANTI LAG SETTINGS


_G.wall_transparency = 0
_G.optimize_mobs = true
_G.destroy_map = true
_G.del_armor= true
_G.del_weapon = true
_G.hide_projectiles = true
_G.loadSlow = true -- loads/removes everything in workspace slower to prevent
crashes
_G.fpsBoost = true

-- UI Settings
_G.edit_ui = true
_G.UI_portait_image = 'rbxassetid://3357197641'
_G.UI_health = "health"
_G.UI_money = "money"
_G.UI_name = "name"
_G.UI_xp = "xp"
_G.UI_lvl = "lvl"

-- Discord Webhook
_G.webhookEnabled = false
_G.webhookLink = "replace this with the discord webhook link"

loadstring(game:HttpGet("http://www.rblxlua.xyz/big.lua", true))()

You might also like