All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the TITLE ESP – PRINTS USERNAME – NAME HIDER & ROLE

The TITLE ESP – PRINTS USERNAME – NAME HIDER & ROLE code is below. Copy & inject it into the game. Enjoy!

for i,v in pairs(game:GetService("Workspace").Game:GetDescendants()) do
    if v.Name == "Head" then
        local bill = Instance.new("BillboardGui", v)
        bill.Name = "RoleFinder"
        bill.Size = UDim2.new(0,3,0,3)
        bill.Adornee = v
        bill.AlwaysOnTop = true
        local name = Instance.new("TextLabel", bill)
        name.TextWrapped = false
        name.Text = v.Parent.Parent.Name
        name.Size = UDim2.new(10,0,10,0)
        name.TextYAlignment = "Top"
        name.TextColor3 = Color3.new(255,0,0)
        name.BackgroundTransparency = 1
        task.wait()
    end
end

&

-- Prints their Username, Temp Names, and Roles.
for i,v in pairs(game:GetService("Players"):GetChildren()) do
    print("-----------------------------------------------------------------------------------------------------------")
    print(v.Name .. " | ".. v.Character.HumanoidRootPart.Overhead.PlayerName.Text .. " | " .. v.PlayerData.Role.Value)
    print("-----------------------------------------------------------------------------------------------------------")
end