Howdy! Is there away to make every player in the game spawn with a block style avatar but with their clothes and accessories still in it?
For example: A player bought the Robloxian 2.0 bundle and wears a ROBLOX Jacket is there a way to replace the Robloxian 2.0 bundle but keep the ROBLOX Jacket?
local Players = game.Players
function PlayerJoined(Player)
local function RemoveMeshes(Character)
local Humanoid = Character:WaitForChild("Humanoid")
wait()
local Desc= Humanoid:GetAppliedDescription()
Desc.Head = 0
Desc.Torso = 0
Desc.LeftArm = 0
Desc.RightArm = 0
Desc.LeftLeg = 0
Desc.RightLeg = 0
Humanoid:ApplyDescription(Desc)
end
Player.CharacterAdded:Connect(RemoveMeshes)
end
Players.PlayerAdded:Connect(PlayerJoined)