-- ChatGPT ESP
local players = game:GetService("Players"):GetPlayers()

-- Loop through each player
for _, player in pairs(players) do
    -- Create a new Part and Mesh for highlighting
    local highlightPart = Instance.new("Part")
    highlightPart.Anchored = true
    highlightPart.CanCollide = false
    highlightPart.Transparency = 0.7
    highlightPart.BrickColor = BrickColor.new("Bright red")
    highlightPart.Size = player.Character.HumanoidRootPart.Size
    highlightPart.CFrame = player.Character.HumanoidRootPart.CFrame
    highlightPart.Parent = workspace

    local mesh = Instance.new("BlockMesh")
    mesh.Scale = highlightPart.Size
    mesh.Parent = highlightPart

    -- Delete the highlight after some time
    wait(3)
    highlightPart:Destroy()
end

Embed on website

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