Burkino

Yet another PF ESP

Feb 19th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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