Advertisement
ShiroharuXF

BrightestBeachImpEndless

Oct 28th, 2023
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.20 KB | None | 0 0
  1. _G.Noclip = true
  2. _G.Setting = {
  3.     CustomDungeon = {
  4.         Enabled = true,
  5.         Dungeon = "Brightest Beach",
  6.         Difficulty = "Impossible", -- Easy, Medium, Hard, Demon, Impossible
  7.         GameMode = "Endless" -- Classic, Uncapped, Endless, Minibosses
  8.     },
  9.     AutoFarm = {
  10.         Enabled = true,
  11.         GoToFinishRoom = true,
  12.         TpToSafeZone = true,
  13.         FastFarming = false, -- (if "true" may cause lag)
  14.         HitboxExpander = false,
  15.         CollectMedkits = true,
  16.         CollectChest = true,
  17.         CollectShrines = {
  18.             Enabled = false,
  19.             ToCollect = {"Summoning"} -- Summoning, Grass, Sacrifice, Healing
  20.         },
  21.         AutoStartDungeon = {
  22.             Enabled = true,
  23.             Delay = 4
  24.         }
  25.     },
  26.     AutoLeave = {
  27.         InventoryFull = {
  28.             Enabled = false,
  29.             Delay = 4
  30.         },
  31.         BackToLobby = {
  32.             Enabled = false,
  33.             Delay = 4
  34.         }
  35.     },
  36.     AntiLag = {
  37.         Enabled = true,
  38.         fpsBoost = true,
  39.         OptimizeMobs = true,
  40.         DestroyMap = true,
  41.         RemoveMobs = true,
  42.         SkipCutscene = true
  43.     },
  44.     AutoSell = { -- Please be careful
  45.         Enabled = false,
  46.         Common = true, -- green
  47.         Rare = true, -- blue
  48.         Legendary = true -- red
  49.     },
  50.     ItemNotifier = {
  51.         Enabled = false,
  52.         webhookLink = 'https://discord.com/api/webhooks/',
  53.         PingForRarity = {
  54.             Common = true, -- green
  55.             Rare = true, -- blue
  56.             Legendary = true, -- red
  57.             Mythical = true, -- yellow
  58.             Ultimate = true -- light blue
  59.         }
  60.     },
  61.     DisconnectNotifier = {
  62.         Enabled = false,
  63.         UserId = "",
  64.         webhookLink = 'https://discord.com/api/webhooks/'
  65.     },
  66.     CustomSky = {
  67.         Enabled = true,
  68.         SkyId = "rbxassetid://15066237310"
  69.     },
  70.     CustomUI = {
  71.         Enabled = true,
  72.         Candy = 'Inf',
  73.         Gold = 'Inf',
  74.         Profile = 'rbxassetid://15196403350',
  75.         Ability = "rbxassetid://15149943495"
  76.     }
  77. }
  78.  
  79. loadstring(game:HttpGet(
  80.     "https://raw.githubusercontent.com/smartsosilly/rblxScripts/main/srcs/treasureQuest"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement