How to turn R6 to R15 Models

I’m need to convert quite a few R6 models to R15 models,
Animation conversion is simple enough, I am just looking for the models to change and keep all of there Intended body part colors and Hats / Clothes.

I know I can just manually transfer them and basically rebuild them all from scratch but I was curious if anyone knows of a plugin to ease this process?

I have upwards of 20+ characters to change, and from what I have looked through I can’t seem to find exactly what I am looking for. Just trying to make my life a little easier if any knows any quick solutions.

1 Like

You could make a script copying all the clothes, accessories, ect, run it, copy the new r15 model in game, and paste it back in studio.

The possible script:

for i, v in pairs (script.Parent:GetChildren()) do 
    if v:IsA(“Accessory”) or v:IsA(“XXXXX”) then
        v:Clone().Parent = R15_Model
    end
end
Summary

Sorry if the script looks a bit odd, I was typing this on my phone😅

1 Like

This is an option but Size will not transfer, I wonder if I should write a plugin for this seems like it could be useful and theres nothing that exists out there.

Update: I just did them all by hand lol

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.