When a player joins my game, I want to force them to the default R15 block rig while still keeping their clothing and skin color. I personally don’t know an easy way to do this as the block rig isn’t uploaded as a bundle if i’m correct.
If anyone knows a possible way to do this, please throw it at me
Tried that earlier and unfortunately, that method won’t work as the default block rig has no bundle IDs associated with it as it was never uploaded as a bundle.
game.Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Character)
for _, BodyPart in pairs(script.Rig:GetChildren()) do
Character.Humanoid:ReplaceBodyPartR15(Enum.BodyPartR15[BodyPart.Name], BodyPart)
end
end)
end)