How could I get player default skin?

What’s the best way to get a player default skin? I have a skin change sistem in my game and I want to add a button to reset the skin, Which will be the most efficient way?

I’m not sure but maybe you can use humanoid:GetAppliedDescription() when a player joins and that would be your default skin?

You can just get the default humanoid description from a player using this function

local Players = game:GetService("Players")
local HumanoidDescription = Players:GetHumanoidDescriptionFromUserId(player.UserId)
1 Like

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