-- CONFIG: local espColor = Color3.new(1, 0, 0) -- The color of the esp highlight. local checkInterval = 1 -- The check interval for plr highlight. -- CONFIG if getgenv().tmrespLoaded == true then game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Already Loaded!", Text = "The Most Random Esp is already loaded!", Time = 6 }) return end getgenv().tmrespLoaded = true while task.wait(checkInterval) do for _, v in workspace:GetChildren() do if v:FindFirstChild("HumanoidRootPart") and v:IsA("Model") then if not v:FindFirstChild("espHighlight") and v:FindFirstChild("Humanoid").Health ~= 0 then local espH = Instance.new("Highlight", v) espH.OutlineColor = espColor espH.Name = "espHighlight" end end end end