iMeanOk

Untitled

Dec 2nd, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. local track = false
  2.  
  3. function Create(base, team)
  4. local espMAIN = apocGUI.ESP:Clone()
  5. local F = espMAIN.DOT
  6.  
  7. espMAIN.Parent = Player.PlayerGui
  8. espMAIN.Adornee = base
  9.  
  10. F.Visible = true
  11. end
  12.  
  13. function Clear()
  14. for _,v in pairs(Player.PlayerGui:children()) do
  15. if v.Name == "ESP" and v:IsA("BillboardGui") then
  16. v:Destroy()
  17. end
  18. end
  19. end
  20.  
  21. function Find()
  22. Clear()
  23. track = true
  24. spawn(function()
  25. while wait() do
  26. if track then
  27. Clear()
  28. for i,v in pairs(game.Players:players()) do
  29. if v.Character and v.Character.Head then
  30. Create(v.Character.Head, true)
  31. end
  32. end
  33. end
  34. wait(1)
  35. end
  36. end)
  37. end
Advertisement
Add Comment
Please, Sign In to add comment