Depth Spelunking Scripts

ESP v2 — Tasks, Entities, Codes

Primary utility highlights CurrentMap tasks (yellow → green when done), entities in red with names, upgrade terminals in purple, Envy info keepers and traps, players in white, and the elevator floor in orange. Also pushes number/colour code notifications when SpawnedItems update—strong for Atlas learning and Daily seed practice.

Paste into your executor after the lobby loads. Recode and major patches can break hooks when Foxxive renames CurrentTasks or Entities folders.

loadstring(game:HttpGet("https://rawscripts.net/raw/Depth-Spelunking-depth-spelunking-esp-v2-by-grok-ai-56306"))()

Scrambler Task Helper

Lightweight helper that completes the Scrambler task input when that task is present on the current floor. Useful for learning Scrambler timing without full autopilot suites. Prefer custom lobbies—never ranked Daily.

loadstring(game:HttpGet("https://rawscripts.net/raw/Depth-Spelunking-Auto-scramble-task-check-desc-60298"))()

Local Fallback ESP (No HttpGet)

If remote loadstrings fail, this compact local scanner marks parts named like tasks, machines, and elevators plus other players. Less accurate than the CurrentMap-aware ESP v2 but works offline when raw hosts are down.

local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local LocalPlayer = Players.LocalPlayer
local COLORS = {
  taskIncomplete = Color3.fromRGB(255, 255, 0),
  player = Color3.fromRGB(255, 255, 255),
  machine = Color3.fromRGB(180, 0, 255),
  elevator = Color3.fromRGB(255, 140, 0),
}
local function addHighlight(part, color, name)
  if part:FindFirstChild("DS_ESP") then return end
  local h = Instance.new("Highlight")
  h.Name = "DS_ESP"
  h.FillColor = color
  h.OutlineColor = color
  h.FillTransparency = 0.7
  h.Parent = part
  local bb = Instance.new("BillboardGui")
  bb.Size = UDim2.new(0, 80, 0, 20)
  bb.AlwaysOnTop = true
  bb.Parent = part
  local lbl = Instance.new("TextLabel")
  lbl.Size = UDim2.new(1, 0, 1, 0)
  lbl.BackgroundTransparency = 1
  lbl.TextColor3 = color
  lbl.TextScaled = true
  lbl.Text = name
  lbl.Parent = bb
end
RunService.Heartbeat:Connect(function()
  for _, obj in ipairs(workspace:GetDescendants()) do
    if obj:IsA("BasePart") then
      local n = obj.Name:lower()
      if n:find("task") then addHighlight(obj, COLORS.taskIncomplete, "Task")
      elseif n:find("machine") then addHighlight(obj, COLORS.machine, "Machine")
      elseif n:find("elevator") then addHighlight(obj, COLORS.elevator, "Elevator") end
    end
  end
  for _, plr in ipairs(Players:GetPlayers()) do
    if plr ~= LocalPlayer and plr.Character then
      local root = plr.Character:FindFirstChild("HumanoidRootPart")
      if root then addHighlight(root, COLORS.player, plr.Name) end
    end
  end
end)
print("[Depth Spelunking] Local ESP loaded")

Usage & Safety

Scripts need a compatible Roblox executor. Run in private practice or with group consent—ESP reveals information other Delvers earn fairly. Ranked Daily Mode use wrecks competitive integrity and risks reports.

Third-party executors carry malware risk. Script use violates Roblox Terms of Service and can ban accounts. Prefer wiki map and boss guides when hooks break after Recode or Epilogue patches.

よくある質問

Do these scripts work on mobile?
Most executors target PC. Mobile script support is limited and higher ban risk.
Will ESP get me banned?
Yes, possible. Roblox anti-cheat and player reports can flag exploit use.
Script stopped working after Recode?
Expected. Recode renames systems—wait for updated hooks or play clean.
Can I use scripts in Daily Mode?
Technically possible but unfair and bannable. Practice in custom lobbies instead.
HttpGet loadstring failed?
Use the local fallback ESP or retry later when the raw host is reachable.