-- Créé par Juju - Simpe ES
-- CONFIG:

local espColor = Color3.new(1, 0, 0) -- La couleur.
local checkInterval = 1 -- ¨L'intervale pour entourer les joueurs.

-- CONFIG

if getgenv().tmrespLoaded == true then
    game:GetService("StarterGui"):SetCore("SendNotification", {
        Title = "Déja charger",
        Text = "Simlpe ESP - Le Script est deja charger",
        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

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: