player list with groups
so I've been working on this little piece of code and I figured it out but my problem is that when you use it, the names overlap eachother.
does anyone know how to fix the overlap issue and how to put the corresponding player group next to the names?



does anyone know how to fix the overlap issue and how to put the corresponding player group next to the names?



Code:
surface.CreateFont( "******font", {
font = "Arial",
size = 13,
weight = 750,
blursize = 0,
scanlines = 0,
antialias = false,
underline = false,
italic = false,
strikeout = false,
symbol = false,
rotary = false,
shadow = true,
additive = false,
outline = true,
} )
local topleft = TEXT_ALIGN_LEFT, TEXT_ALIGN_TOP
hook.Add( "HUDPaint", "watermark", function()
for k,v in pairs( player.GetAll() ) do
draw.DrawText( "players: \n"..v:Nick(),"******font", 0, 0, Color( 0,255,0,255 ), topleft )
end
end)

