Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local track = false
- function Create(base, team)
- local espMAIN = apocGUI.ESP:Clone()
- local F = espMAIN.DOT
- espMAIN.Parent = Player.PlayerGui
- espMAIN.Adornee = base
- F.Visible = true
- end
- function Clear()
- for _,v in pairs(Player.PlayerGui:children()) do
- if v.Name == "ESP" and v:IsA("BillboardGui") then
- v:Destroy()
- end
- end
- end
- function Find()
- Clear()
- track = true
- spawn(function()
- while wait() do
- if track then
- Clear()
- for i,v in pairs(game.Players:players()) do
- if v.Character and v.Character.Head then
- Create(v.Character.Head, true)
- end
- end
- end
- wait(1)
- end
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment