Facebook
From monkey, 2 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 370
  1. while true do
  2.     for _, player in ipairs(game:GetService("Players"):GetPlayers()) do
  3.         if player ~= game:GetService("Players").LocalPlayer then
  4.             local billboard = Instance.new("BillboardGui")
  5.             billboard.Name = "ESP"
  6.             billboard.AlwaysOnTop = true
  7.             billboard.Size = UDim2.new(0, 200, 0, 50)
  8.             billboard.StudsOffset = Vector3.new(0, 2, 0)
  9.             billboard.Adornee = player.Character.HumanoidRootPart
  10.  
  11.             local label = Instance.new("TextLabel")
  12.             label.BackgroundTransparency = 1
  13.             label.Size = UDim2.new(1, 0, 1, 0)
  14.             label.Text = player.Name
  15.             label.TextColor3 = Color3.new(1, 1, 1)
  16.             label.Font = Enum.Font.SourceSansBold
  17.             label.TextSize = 20
  18.             label.Parent = billboard
  19.  
  20.             billboard.Parent = game:GetService("CoreGui")
  21.         end
  22.     end
  23.  
  24.     game:GetService("RunService").Heartbeat:Wait()
  25. end