How do I change the players uniform to player own avatar?

Like if you wear a uniform and you want to back your own avatar. Like char command but touch a part

1 Like

When they touch the part, refresh their avatar.

1 Like

Yeah but not totally reset and teleport them back to the park not like that

1 Like

So you want something to refresh the character?

1 Like

Yeah but not totally reset and teleport them back to the park

1 Like

Just delete the clothes they have on, and make them wear their original ones.

1 Like

You mean that the player currently wearing if yes how do I do that?

1 Like

Save the CFrame of the player, then use LoadCharacter and set the players CFrame to where it was.

1 Like

You can simply get the ID of their shirt and pants using

local players = game:GetService("Players")

local humanoidDescription = players:GetHumanoidDescriptionFromUserId(UserIdHere)
local shirtId = humanoidDescription.Shirt
local pantsId = humanoidDescription.Pants
3 Likes