8 lines
		
	
	
	
		
			213 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			213 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
---Displays a notification to the player
 | 
						|
---@param message string
 | 
						|
function DisplayNotification(message)
 | 
						|
    TriggerEvent('ox_lib:notify', {
 | 
						|
        description = message,
 | 
						|
        type = 'error'
 | 
						|
    })
 | 
						|
end
 |