for _, model in ipairs(workspace:GetChildren()) do
    if model:IsA("Model") and model.Name == "ATM" then
        local part = model:FindFirstChildWhichIsA("BasePart")
        if part then
            local esp = Instance.new("BillboardGui", part)
            esp.Name = "ATM_ESP"
            esp.Size = UDim2.new(0, 100, 0, 30)
            esp.AlwaysOnTop = true
            esp.StudsOffset = Vector3.new(0, 3, 0)

            local label = Instance.new("TextLabel", esp)
            label.Size = UDim2.new(1, 0, 1, 0)
            label.BackgroundTransparency = 1
            label.Text = "[ Atm ]"
            label.TextColor3 = Color3.fromRGB(0, 255, 0)
            label.TextScaled = true
            label.Font = Enum.Font.GothamBold
        end
    end
end

Embed on website

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