local DISTANCE = 9999 local function enhanceAmmo(prompt) if not prompt:IsA("ProximityPrompt") then return end prompt.MaxActivationDistance = DISTANCE prompt.RequiresLineOfSight = false prompt.HoldDuration = 0 local model = prompt:FindFirstAncestorOfClass("Model") if model and not model:FindFirstChild("AmmoESP") then local hl = Instance.new("Highlight") hl.Name = "AmmoESP" hl.FillColor = Color3.fromRGB(255, 255, 0) hl.OutlineColor = Color3.fromRGB(255, 255, 255) hl.FillTransparency = 0.5 hl.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop hl.Parent = model end end workspace.DescendantAdded:Connect(function(obj) if obj:IsA("ProximityPrompt") and (obj.Parent.Name:find("ammo_") or obj.Parent.Name:find("AmmoBox")) then task.wait(0.5) enhanceAmmo(obj) end end) for _, v in pairs(workspace:GetDescendants()) do if v:IsA("ProximityPrompt") and (v.Parent.Name:find("ammo_") or v.Parent.Name:find("AmmoBox")) then enhanceAmmo(v) end end print("物資透視已啟動。")