gilward

Pf esp

Feb 20th, 2018
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. local players = game:GetService("Players")
  2. local player = players.LocalPlayer
  3. while wait(10) do
  4. for _,v in next, players:GetChildren() do
  5. if v.Team ~= player.Team then
  6. local esp = Instance.new("PointLight",v.Character.Head)
  7. esp.Color = Color3.fromRGB(255, 0, 0)
  8. esp.Range = 18
  9. esp.Brightness = 4.635
  10. end
  11. end
  12. end
Add Comment
Please, Sign In to add comment