Advertisement
rulfos

ESP in Lua

Jun 26th, 2020
1,122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.95 KB | None | 0 0
  1.   local script = Instance.new('LocalScript', ESP)
  2.        
  3.     for i,v in pairs(game.Players:GetChildren()) do
  4.                 local gui                                 = Instance.new("BillboardGui")
  5.                 gui.Size                                  = UDim2.new(5,10,5,0)
  6.                 gui.AlwaysOnTop                           = true
  7.                 gui.Parent                                = game.Workspace:WaitForChild(v.Name)
  8.                 local text                                = Instance.new("TextLabel")
  9.                 text.Text                                 = (v.Name)
  10.                 text.BackgroundTransparency               = 0.6
  11.                 text.Parent                               = gui
  12.                 text.Size                                 = UDim2.new (1,0,1,0)
  13.                 text.TextColor3                           = Color3.new(1,0,0)
  14.             end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement