Exports

Markdown Last updated:

Types

  • type: success, error, warning, info, inform
  • Positions: top-right, top-middle, top-left

CLIENT-SIDE EXPORT:

  exports['fs_notify']:SendNotification({ type = 'success', title = 'Title', description = 'Description', duration = 5000, position = 'top-right' })

SERVER-SIDE EXPORT (for specific player):

  exports['fs_notify']:NotifyPlayer(source, { type = 'success', title = 'Title', description = 'Description', duration = 5000, position = 'top-right' })

SERVER-SIDE EXPORT (for all players):

  exports['fs_notify']:NotifyAll({ type = 'success', title = 'Title', description = 'Description', duration = 5000, position = 'top-right' })