Roblox Name Esp Script Work For Mobile And Pc Direct

local function createNameESP(player) -- Wait for the character to load local character = player.Character or player.CharacterAdded:Wait() local head = character:WaitForChild("Head", 5) if head then -- Create the BillboardGui local billboard = Instance.new("BillboardGui") billboard.Name = "NameESP" billboard.Size = UDim2.new(0, 200, 0, 50) billboard.Adornee = head billboard.AlwaysOnTop = true -- This makes it visible through walls billboard.ExtentsOffset = Vector3.new(0, 3, 0) -- Position it above the head -- Create the Name Label local label = Instance.new("TextLabel") label.Parent = billboard label.Size = UDim2.new(1, 0, 1, 0) label.BackgroundTransparency = 1 label.Text = player.Name label.TextColor3 = Color3.new(1, 1, 1) -- White text label.TextStrokeTransparency = 0 -- Outline for visibility label.TextSize = 14 billboard.Parent = character end end Use code with caution. Copied to clipboard 2. Cross-Platform Automation

Scroll to Top