Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Is it possible to change player packages in R15?

Asked by 5 years ago

I have been working on a customization menu for a little while and I wanted to use these 2 packages for male and female.

https://www.roblox.com/catalog/376532384/ROBLOX-Boy

https://www.roblox.com/catalog/376548107/ROBLOX-Girl

But the problem is, I cant find any API anywhere that shows how you would go about converting a players package. Does anyone have any links or tutorials or even advice that could help me out?

Thank you for your time.

0
Not possible. User#19524 175 — 5y
0
Its not? Ive seen some games do it though GottaHaveAFunTime 218 — 5y
0
It’s probably a StarterCharacter. User#19524 175 — 5y
0
Yeah true GottaHaveAFunTime 218 — 5y
0
Completely Possible NeonProfile 111 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

@incapaz is completely wrong. It is indeed possible. If you ever equip a package, then you will know. I have made a youtube video on it. Here's the link. https://youtu.be/yeEb4Cl00L8

Here's a text explanation.

1) Create a script 2) Create PlayerAdded and CharacterAdded functions 3) Place a wait after characteradded 4) clear all the CharacterMeshes in the character's model 5) Equip the boy package on your profile 6) Play the game 7) Copy all the CharacterMeshes that are in there 8) Create a folder named bin inside of the script 9) Create a folder named boy inside of the bin folder 10) Create a giver

You can create a giver by

local character 

local itemstoclone = script.bin.boy
for _,v in pairs(itemstoclone:GetChildren()) do
v:Clone().Parent = character
end

The same can be done to add the starter girl you want too.

Hope this helped.

Ad

Answer this question