I want to ask you a question...
How to make a MSG on the screen for ever.. WIth lua...
Like
===
Hello!
===
and to be on the Right site of the Screen.
Thx for reading.
function hudtext2(id,tid,color,txt,x,y) local toprint = ("©"..color.." "..txt) parse('hudtxt2 '..id..' '..tid..' "'..toprint..'" '..x.." "..y) end addhook("spawn","a") function a(id) 			hudtext2(id,1,"255220000","==============",500,97) 			hudtext2(id,2,"255000000","Hello Guys!!!",515,116) 			hudtext2(id,3,"255220000","==============",500,135) end