How To Get Fivem Identifier Page
Copy the string that begins with fivem: followed by a series of numbers. For Developers: Scripting the Identifier
If you cannot launch the game but need your ID for a whitelist application, you can find it via the web: how to get fivem identifier
-- Server-side response RegisterNetEvent('requestMyIdentifier') AddEventHandler('requestMyIdentifier', function() local src = source local identifiers = GetPlayerIdentifiers(src) for _, id in ipairs(identifiers) do if id:find('license:') then TriggerClientEvent('receiveIdentifier', src, id) break end end end) Copy the string that begins with fivem: followed
-- Example usage when player joins AddEventHandler('playerConnecting', function(name, setKickReason, deferrals) local src = source deferrals.defer() Wait(100) how to get fivem identifier