local target = workspace:FindFirstChild("MapSegments") if target then target = target:FindFirstChild("Segment000") if target then target = target:FindFirstChild("Debris") if target then target = target:FindFirstChild("John") end end end if target and target:IsA("Model") or target:IsA("BasePart") then local highlight = Instance.new("Highlight") highlight.Name = "JohnHighlight" highlight.FillColor = Color3.fromRGB(255, 255, 0) -- yellow highlight.OutlineColor = Color3.fromRGB(255, 255, 255) highlight.FillTransparency = 0.3 highlight.OutlineTransparency = 0 highlight.Adornee = target highlight.Parent = target else warn("❌ Could not find workspace.MapSegments.Segment000.Debris.John") end