Installation
Download
To find and use the assets, you must have made the purchase from your own keymaster which you have your server key in. Otherwise you will not be able to use the asset.
Once you make the purchase, you'll be able to access it from your keymaster.
If you have more issues regarding FiveM Escrow, accounts or asset startup errors you can go here and see if any of them match your case, since Escrow requires some basics. Such as your keymaster account, your license key, etc.
Dependencies
This assets has depencies such as frameworks like QBCore and ESX. You can only use this script with qb-core or es_extended based servers.
Ensuring
To ensure and use this script in your server, simply add this code in your server.cfg file, under your MySQL and framework scripts.
ensure aty_spawnselector
Integration
Open your Multi Character script's client side and find the code that works when you select a character.
Then simply add these codes in there:
On Create Character
TriggerEvent("aty_spawnselector:client:open", true, character)
On Select Created Character
TriggerEvent("aty_spawnselector:client:open", false, character)
Skinchanger
Goto skinchanger/client/main.lua and find the ApplySkin at 149th line and chage with this:
function ApplySkin(skin, clothes, ped)
local playerPed = ped or PlayerPedId()
Then add this somewhere in the same file:
RegisterNetEvent("skinchanger:applySkin", ApplySkin)