Advertisement
SigmaBoy456

Esp player BillBoard Ex #732

Oct 5th, 2024
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. local function give_esp(object, name)
  2. local bill = Instance.new("BillboardGui", object)
  3. bill.Size = UDim2.new(0, 200, 0, 100)
  4. bill.Adornee = object
  5. bill.Name = "ESP"
  6. bill.AlwaysOnTop = true
  7. bill.StudsOffset = Vector3.new(0, 2, 0)
  8. local text = Instance.new("TextLabel", bill)
  9. text.Size = UDim2.new(1, 0, 1, 0)
  10. text.BackgroundTransparency = 1
  11. text.Name = "Message"
  12. text.Text = tostring(name)
  13. text.TextColor3 = Color3.fromRGB(255, 17, 0)
  14. textScaled = false
  15. textWrapped = true
  16. end
  17.  
  18. while wait(0.1) do
  19. for _, v in pairs(game.Players:GetPlayers()) do
  20. if v ~= game.Players.LocalPlayer and v.Character then
  21. local vroot = v.Character:FindFirstChild("HumanoidRootPart")
  22. if vroot and not vroot:FindFirstChild("ESP") then
  23. give_esp(vroot, v.Name)
  24. end
  25. end
  26. end
  27. end
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement