Advertisement
Guest User

..................

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