How do i call the player's Shirt from the user?

Can i call the player’s Classic Shirt from the user?
i am trying to make a starter character with the player’s shirt.
Any help will be good.

local function getShirtByUserId(userId: number): Shirt
	local description = game.Players:GetHumanoidDescriptionFromUserId(userId)
	local shirtId = description.Shirt
	local Shirt = Instance.new("Shirt")
	Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id="..shirtId
	return Shirt
end
2 Likes

Wow man Big thanks. It’s easier than i expected

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