跳转到内容
可用

Simple ESP

CLclarkdevlinorg0 次浏览Phantom Forces2026年7月26日
分享
Simple ESP

脚本代码

Lua
local function CreateESP(model, name)
    if model:FindFirstChild("ESP") then return end
    local basepart = model:FindFirstChildWhichIsA("BasePart", true)
    if not basepart then return end

    local Billboard = Instance.new("BillboardGui")
    Billboard.Name = "ESP"
    Billboard.Size = UDim2.new(0, 120, 0, 25)
    Billboard.Adornee = basepart
    Billboard.AlwaysOnTop = true
    Billboard.Parent = model

    local NameLabel = Instance.new("TextLabel")
    NameLabel.Size = UDim2.new(1, 0, 1, 0)
    NameLabel.BackgroundTransparency = 1
    NameLabel.Text = name
    NameLabel.TextColor3 = Color3.fromRGB(255, 255, 0)
    NameLabel.TextStrokeTransparency = 0.5
    NameLabel.Font = Enum.Font.SourceSansBold
    NameLabel.TextScaled = true
    NameLabel.Parent = Billboard
end

local function TryESP(model)
    if model:IsA("Model") and model:FindFirstChild("NameTagGui", true) then
        local tag = model:FindFirstChild("PlayerTag", true)
        if not tag or not tag:IsA("TextLabel") then return end
        if tag.TextColor3 ~= Color3.fromRGB(255, 10, 20) then return end
        local displayName = tag.Text or "[Unknown]"
        CreateESP(model, displayName)
    end
end

for _, desc in ipairs(workspace:GetDescendants()) do
    if desc:IsA("Model") then
        TryESP(desc)
    end
end

workspace.DescendantAdded:Connect(function(obj)
    if obj:IsA("Model") then
        task.wait(0.5)
        TryESP(obj)
    end
end)

评论 (0)

登录以参与讨论

  • 成为第一个评论的人。

常见问题

如何使用 Simple ESP 脚本?
复制上方的脚本代码,打开你的 Roblox 执行器,粘贴代码,然后在游戏中点击执行。脚本运行后功能会立即激活。
Simple ESP 脚本免费吗?
是的。此脚本免费复制和使用。如果使用密钥系统,请通过「获取密钥」链接免费解锁。
使用 Simple ESP 脚本安全吗?
完整源代码显示在此页面上,让你在运行前准确了解其功能。请始终使用可信的执行器,并记住使用脚本违反 Roblox 服务条款,风险自负。
哪个执行器兼容 Simple ESP?
此脚本兼容大多数热门 Roblox 执行器。查看我们的执行器页面,为你的设备找到可信的免费或付费执行器。
Simple ESP | BloxScripter