simple esp using roblox’s new highlight instance

MADE BY darkhalo#2022

FEATURE:

  • ESP

UNIVERSAL GAMES

SCRIPT:

local highlight = Instance.new("Highlight")
local rS = game:GetService("RunService")

rS.RenderStepped:Connect(function()
    for _, v in pairs(game.Players:GetPlayers()) do
        if not v.Character:FindFirstChild("Highlight") then
            highlight.FillTransparency = 1
            highlight:Clone().Parent = v.Character
            highlight.OutlineColor = v.Team.TeamColor.Color
    end
    
    game.Players.PlayerAdded:Connect(function(plr)
        plr.CharacterAdded:Connect(function(char)
            if not char:FindFirstChild("Highlight") then
                highlight.FillTransparency = 1
                highlight:Clone().Parent = char
                highlight.OutlineColor = plr.Team.TeamColor.Color
            end
        end)
    end)
    end
end)

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!