Advertisement
fxdogxd
Jun 16th, 2023
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. hile wait() do
  2. pcall(function()
  3. for i,v in pairs(game.Players:GetChildren()) do
  4. if not v.Character.Head:FindFirstChild("ESP") then
  5. local BillboardGui = Instance.new("BillboardGui")
  6. local TextLabel = Instance.new("TextLabel")
  7. BillboardGui.Parent = v.Character.Head
  8. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9. BillboardGui.Active = true
  10. BillboardGui.Name = "ESP"
  11. BillboardGui.AlwaysOnTop = true
  12. BillboardGui.LightInfluence = 1.000
  13. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  14. BillboardGui.StudsOffset = Vector3.new(0, 2.5, 0)
  15. TextLabel.Parent = BillboardGui
  16. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  17. TextLabel.BackgroundTransparency = 0
  18. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  19. TextLabel.Font = Enum.Font.GothamBold
  20. TextLabel.Text = v.Name
  21. TextLabel.TextColor3 = Color3.fromRGB(25, 0, 255)
  22. TextLabel.TextScaled = true
  23. TextLabel.TextSize = 14.000
  24. TextLabel.TextStrokeTransparency = 0.000
  25. TextLabel.TextWrapped = true
  26. end
  27. end
  28. end)
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement