Advertisement
ThemodmenuX123456789

ESP

Jan 4th, 2023
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. local players = game.Players:GetPlayers()
  2.  
  3. for i, v in pairs(players) do
  4. local esp = Instance.new("Highlight")
  5.  
  6. esp.Name = v.Name
  7. esp.FillTransparency = 0.4
  8. esp.FillColor = Color3.new(255, 0, 0)
  9.  
  10. esp.OutlineColor = Color3.new(255, 255, 255)
  11.  
  12. esp.OutlineTransparency = 0
  13.  
  14. esp.Parent = v.Character
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement