kphs2

PHANTOM ESP

Sep 14th, 2024
2,845
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. enemyteam = game.Workspace.Players:GetChildren()[1]
  2. friendlyteam = game.Workspace.Players:GetChildren()[2]
  3. while wait(0.1) do
  4. for _,v in enemyteam:GetDescendants() do
  5. if v.ClassName == "Model" then
  6. if v:FindFirstChild("Highlight") then
  7.  
  8. else
  9. local h = Instance.new("Highlight",v)
  10. h.FillColor = Color3.new(1,0,0)
  11. h.FillTransparency = 0.4
  12. print(string.format("Highlighted %s",v.Name))
  13.  
  14. end
  15.  
  16. end
  17. end
  18. for _,v in friendlyteam:GetDescendants() do
  19. if v.ClassName == "Model" then
  20. if v:FindFirstChild("Highlight") then
  21.  
  22. else
  23. local h = Instance.new("Highlight",v)
  24. h.FillColor = Color3.new(0.227451, 1, 0.054902)
  25. h.FillTransparency = 0.8
  26. print(string.format("Highlighted %s",v.Name))
  27.  
  28. end
  29.  
  30. end
  31. end
  32. end
Add Comment
Please, Sign In to add comment