16 lines
		
	
	
	
		
			216 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			216 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
function DrawText(text)
 | 
						|
  SendNUIMessage({
 | 
						|
    type = 'show',
 | 
						|
    text = text
 | 
						|
  })
 | 
						|
end
 | 
						|
 | 
						|
exports('DrawText', DrawText)
 | 
						|
 | 
						|
function HideText()
 | 
						|
  SendNUIMessage({
 | 
						|
    type = 'hide'
 | 
						|
  })
 | 
						|
end
 | 
						|
 | 
						|
exports('HideText', HideText)
 |