Advertisement
BigDaddy1978

ESP

Jun 3rd, 2023 (edited)
31
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. for i,v in pairs(game.Players:GetPlayers()) do
  2. if v ~= game.Players.LocalPlayer then
  3. local function addEsp(character)
  4. local newHighlight = Instance.new("Highlight")
  5.  
  6. newHighlight.Parent = character
  7. end
  8.  
  9. addEsp(v.Character)
  10.  
  11. v.CharacterAdded:Connect(function(char)
  12. addEsp(char)
  13. end)
  14. end
  15. end
  16.  
  17. game.Players.PlayerAdded:Connect(function(v)
  18. local function addEsp(character)
  19. local newHighlight = Instance.new("Highlight")
  20.  
  21. newHighlight.Parent = character
  22. end
  23.  
  24. addEsp(v.Character)
  25.  
  26. v.CharacterAdded:Connect(function(char)
  27. addEsp(char)
  28. end)
  29. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement