コンテンツへスキップ
動作中

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