Replacing Default Notifications
ESX
Edit es_extended/client/functions.lua and replace the notification function with:
function ESX.ShowNotification(msg)
TriggerEvent('clearNotify', 'info', 'Notification', msg)
endQBCore
Edit qb-core/client/functions.lua and replace the notification function with:
function QBCore.Functions.Notify(text, type, length)
TriggerEvent('clearNotify', type or 'info', 'Notification', text)
end