The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Role Esp script pastebin roblox
By Role Esp on 2024-09-22 08:00 am | Syntax: LUA | Views: 8



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. for i,v in pairs(game.Players:GetPlayers()) do
  2.         if v.Character then
  3.                 local charac = v.Character
  4.                 local gui = Instance.new("BillboardGui", charac.Head)
  5.                 gui.Name = "Roles"
  6.                 gui.Size = UDim2.new(0, 2, 0, 2)
  7.                 gui.Adornee = charac
  8.                 gui.AlwaysOnTop = true
  9.                 local name = Instance.new("TextLabel", gui)
  10.                 name.Text = v.PlayerData.Role.value
  11.                 name.Size = UDim2.new(0, 8, 0, 8)
  12.                 name.TextYAlignment = "Top"
  13.                 name.TextColor3 = Color3.new(255, 255, 255) -- color
  14.                 name.BackgroundTransparency = 1
  15.         end
  16. end



  • Recent Roblox Scripts