How to get assets for an R15 package (not an animation package!)

So im trying to add package ids to a R15 character but I have no idea where to find them to put them in the mesh part.

game:GetService(“AssetService”):GetAssetIdsForPackage(243881675) does not work as its for R6 only… if there is a way please reply! Thanks! :slight_smile:

1 Like

Try running the following code in the command bar in Studio.

for _, id in pairs(game:GetService("AssetService"):GetAssetIdsForPackage(243881675)) do
    local model = game:GetService("InsertService"):LoadAsset(id).Parent
    model.Name = tostring(id)
    model.Parent = game.Workspace
end

You should see that in the inserted models there are two folders, one containing the R15 body parts and the other containing the R6 body parts.

You can find more information about this here.

2 Likes

i was able to find a plugin that did the trick.