Hey, i have started making a hud as a little project of mine. I have encountered an issue where my hud is now lowering my fps from an average of 200
to about 30 - 50. I’m not sure if this is something about surface i’ve never been told before but here is a snip of my code:
surface.SetDrawColor(54,217,252)
surface.DrawRect(0,ScrH()-200,350,200)
-- Name Bar
surface.SetDrawColor(0,0,0)
surface.DrawRect(0,ScrH()-200,350,25)
surface.SetFont("fliq_medi")
surface.SetTextPos(0,ScrH()-200)
surface.SetTextColor(Color(255,255,255))
surface.DrawText("test")
Is this because i’m using surface or something else?