🛠️Setup

This is a detailed setup guide for Modern ID Card. If you have any questions before making a purchase, you can contact us on Discord

Creation & Custom Designs

  • Create unlimited cards as shown in this configuration

  • You can also customize a particular card if you want, as shown in the photo below

Exports and Event

  • Open ID Management UI

    Client Side Event
    TriggerEvent('cs:identification:openUI')
  • Export to Add License or ID Card to Player

    exports['cs_identification']:createLicense(playerID, 'id_card', true)
    
    --playerID = Player's ID to whom you want to issue ID Card
    --'id_card' = ID Card Name which you want to issue
    --true = if you want to put the player's photo on the ID card
    --false = if you don't want to use a picture (use default pic)
  • Event to Add License or ID Card to Player

    TriggerEvent('cs:identification:getCard_Export', playerID, 'id_card', true)
    
    --playerID = Player's ID to whom you want to issue ID Card
    --'id_card' = ID Card Name which you want to issue
    --true = if you want to put the player's photo on the ID card
    --false = if you don't want to use a picture (use default pic)

Last updated