Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. hook.Add("HUDPaint", "Crosshair", function()
  3. surface.SetDrawColor(Color(190,0,0,255))
  4. surface.DrawLine((ScrW() / 2) - 10, ScrH() / 2, (ScrW() / 2) - 4, ScrH() / 2)
  5. surface.DrawLine((ScrW() / 2) + 10, ScrH() / 2, (ScrW() / 2) + 4, ScrH() / 2)
  6. surface.DrawLine((ScrW() / 2), (ScrH() / 2) - 10, ScrW() / 2, (ScrH() / 2) - 4)
  7. surface.DrawLine((ScrW() / 2), (ScrH() / 2) + 10, ScrW() / 2, (ScrH() / 2) + 4)
  8. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement