local SEARCH_RADIUS = 300 spawn(function() local localPlayer = game.Players.LocalPlayer while task.wait(0.3) do local character = localPlayer.Character local root = character and character:FindFirstChild("HumanoidRootPart") if root then local eventFolder = workspace:FindFirstChild("EventFolder") if eventFolder then for _, part in pairs(eventFolder:GetDescendants()) do if part:IsA("BasePart") and not part:IsAncestorOf(character) then if (part.Position - root.Position).Magnitude < SEARCH_RADIUS then if not part:FindFirstChild("ESP_Highlight") then local highlight = Instance.new("Highlight") highlight.Name = "ESP_Highlight" highlight.Adornee = part highlight.FillColor = Color3.fromRGB(255, 0, 0) highlight.FillTransparency = 1 highlight.OutlineColor = Color3.fromRGB(255, 0, 0) highlight.OutlineTransparency = 0.2 highlight.Parent = part local label = Instance.new("BillboardGui") label.Name = "ESP_Label" label.Adornee = part label.Size = UDim2.new(0, 50, 0, 20) label.StudsOffset = Vector3.new(0, 2.5, 0) label.AlwaysOnTop = true label.Parent = part local text = Instance.new("TextLabel") text.Size = UDim2.new(1, 0, 1, 0) text.BackgroundTransparency = 1 text.Text = "ITEM [" .. part.Name .. "]" text.TextColor3 = Color3.fromRGB(255, 255, 255) text.TextStrokeTransparency = 0 text.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) text.Parent = label end else local oldH = part:FindFirstChild("ESP_Highlight") if oldH then oldH:Destroy() end local oldL = part:FindFirstChild("ESP_Label") if oldL then oldL:Destroy() end end end end end end end end) print("ESP EVENTFOLDER DZIALA!")