local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() -- Esperar la cabeza local head = character:WaitForChild("Head") -- Crear BillboardGui local billboard = Instance.new("BillboardGui") billboard.Name = "CustomNameTag" billboard.Adornee = head billboard.Size = UDim2.new(0, 200, 0, 50) billboard.StudsOffset = Vector3.new(0, 2.5, 0) billboard.AlwaysOnTop = true billboard.Parent = head -- Crear texto local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.BackgroundTransparency = 1 textLabel.Text = "C00lkidd" textLabel.TextColor3 = Color3.fromRGB(255, 0, 0) -- Rojo textLabel.TextScaled = true textLabel.Font = Enum.Font.GothamBold textLabel.Parent = billboard