2much4Us

Untitled

Oct 14th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. hook.Add('PostDrawOpaqueRenderables', 'example', function()
  2. for k,v in pairs(player.GetAll()) do
  3. plyPos = v:GetPos()
  4. plyAng = Angle(0,0,0)
  5.  
  6. cam.Start3D2D(plyPos,plyAng,1)
  7. surface.SetDrawColor(math.random(0,255),math.random(0,255),math.random(0,255))
  8. surface.DrawRect(-65556/2,-65556/2,65556,65556)
  9. cam.End3D2D()
  10. end
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment