local map = workspace:WaitForChild("Map") while true do for _, obj in pairs(map:GetDescendants()) do if obj.Name == "EXEVINES" then if not obj:FindFirstChild("EXEHighlight") then local highlight = Instance.new("Highlight") highlight.Name = "EXEHighlight" highlight.Adornee = obj highlight.FillColor = Color3.fromRGB(255, 0, 0) highlight.OutlineColor = Color3.fromRGB(255, 255, 0) highlight.FillTransparency = 0.6 highlight.OutlineTransparency = 0 highlight.Parent = obj end end end for _, highlight in pairs(map:GetDescendants()) do if highlight:IsA("Highlight") and highlight.Name == "EXEHighlight" then local adornee = highlight.Adornee if not adornee or adornee.Parent == nil then highlight:Destroy() end end end task.wait(3) end