The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
TITLE ESP – PRINTS USERNAME – NAME HIDER & ROLE script pastebin roblox
By TITLE ESP – PRINTS USERNAME – NAME HIDER & ROLE on 2024-09-22 08:00 am | Syntax: LUA | Views: 14



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. for i,v in pairs(game:GetService("Workspace").Game:GetDescendants()) do
  2.     if v.Name == "Head" then
  3.         local bill = Instance.new("BillboardGui", v)
  4.         bill.Name = "RoleFinder"
  5.         bill.Size = UDim2.new(0,3,0,3)
  6.         bill.Adornee = v
  7.         bill.AlwaysOnTop = true
  8.         local name = Instance.new("TextLabel", bill)
  9.         name.TextWrapped = false
  10.         name.Text = v.Parent.Parent.Name
  11.         name.Size = UDim2.new(10,0,10,0)
  12.         name.TextYAlignment = "Top"
  13.         name.TextColor3 = Color3.new(255,0,0)
  14.         name.BackgroundTransparency = 1
  15.         task.wait()
  16.     end
  17. end
  18.  
  19. &
  20.  
  21. -- Prints their Username, Temp Names, and Roles.
  22. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  23.     print("-----------------------------------------------------------------------------------------------------------")
  24.     print(v.Name .. " | ".. v.Character.HumanoidRootPart.Overhead.PlayerName.Text .. " | " .. v.PlayerData.Role.Value)
  25.     print("-----------------------------------------------------------------------------------------------------------")
  26. end



  • Recent Roblox Scripts