[SCRIPT] ADVANCED NOTIFY
Last updated
-- Standard notification
exports['Notify_fvz']:Notify('Title', 'Your message here', { icon = '✅', color = '#00ff88', timeout = 5000 })
-- Preset shortcuts
exports['Notify_fvz']:NotifySuccess('Operation completed!')
exports['Notify_fvz']:NotifyError('You do not have enough money!')-- Notify a specific player (ID)
exports['Notify_fvz']:NotifyPlayer(source, 'BANK', 'You received $500', { color = '#00ff88' })
-- Notify everyone on the server
exports['Notify_fvz']:NotifyAll('SERVER', 'Restart in 5 minutes!', { color = '#ff3333' })exports['Notify_fvz']:Notify('ADMIN', 'Please come to Support!', { timeout = 0, color = '#ff0000' })