local function esp(v) if v.Name~="GameLight" then return end local m=v.Parent if not m or m:FindFirstChild("ESPHighlight") then return end local h=Instance.new("Highlight") h.Name,h.FillColor,h.OutlineColor,h.FillTransparency,h.DepthMode,h.Parent="ESPHighlight",Color3.fromRGB(255,255,0),Color3.new(1,1,1),.5,Enum.HighlightDepthMode.AlwaysOnTop,m end for _,v in workspace:GetDescendants() do esp(v) end workspace.DescendantAdded:Connect(esp)