-
What do you want to achieve? An avatar photo that gets updated every time player changes their clothes
-
What is the issue? the photo uses a
Enum.ThumbnailType.AvatarBustbut it uses the clothes that the player was wearing at first and not their new clothing
proof: -
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

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.
