Within the char creator you have two events you can use from 3rd party resources to open the skin menu
Skin reset menu
This opens the menu for the player right at his position and he can change & save his skin
From Client:
TriggerEvent('nextSkin:OpenSkinMenu')
From Server:
TriggerEvent('nextSkin:OpenSkinMenu', source)
Char creation menu (not recommended)
This opens the same menu as for new players. The player gets teleported into the skin create position and after saving to the selected entry position, this is not recommended.
RegisterNetEvent("nextSkin:playerSpawned")
AddEventHandler("nextSkin:playerSpawned", function(target)
-- target is the playerid that created the character
end
RegisterNetEvent("nextSkin:finischedSkinreset")
AddEventHandler("nextSkin:finischedSkinreset", function(target)
-- target is the playerid that created the character
end