AtlasLoader

Westbound

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