Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- hook.Add( "PreDrawHalos", "swrp_draw", function()
- if !plys then plys = {} end
- if !frame then frame = 0 end
- frame = frame + 1
- if frame == 20 then
- frame = 0
- plys = {}
- for k,v in pairs(player.GetAll()) do
- if v:GetPos():Distance(LocalPlayer():GetPos()) <= 1200 then
- table.insert(plys, v)
- end
- end
- end
- halo.Add(plys, Color( 0, 0, 255 ), 2, 2, 1, true, true)
- end )
Advertisement
Add Comment
Please, Sign In to add comment