How can I make the avatar photo update with the current clothes

  1. What do you want to achieve? An avatar photo that gets updated every time player changes their clothes

  2. What is the issue? the photo uses a Enum.ThumbnailType.AvatarBust but it uses the clothes that the player was wearing at first and not their new clothing
    proof:

  3. What solutions have you tried so far? none since I’m still new and I don’t really know how I could get it to update

here’s how the thumbnail is set up

Screen Shot 2021-07-30 at 4.05.01 PM

here’s the script

local players = game:GetService("Players")
local player = players.LocalPlayer

local userID = player.UserId
local thumbtype = Enum.ThumbnailType.AvatarBust
local thumbsize = Enum.ThumbnailSize.Size100x100

local content, isReady = players:GetUserThumbnailAsync(userID,thumbtype,thumbsize)

local imageLabel = script.Parent

imageLabel.Image = content

Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.