Hi, i was wondering how to make temporary text on screen that will change text after some time?
I want to make some text appearing at screen that will be displayed every 50 second but with random text.
I was thinking to make random table to make it work but i don’t know hot to exactly make entire script to work.
I used this to display text on screen
hook.Add( "HUDPaint", "drawtext", function()
surface.SetFont( "MyFont" )
surface.SetTextColor( 255, 255, 255, 255 )
surface.SetTextPos( 1500, 75 )
surface.DrawText( "hint" )
end )