Players:GetUserThumbnailAsync have problem , I can find picture but picture is empty?

	local Players = game:GetService("Players")
	local userId = 124839196
	local thumbType = Enum.ThumbnailType.AvatarBust
	local thumbSize = Enum.ThumbnailSize.Size420x420
	local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
	Player1.Image = content

image
Image = https://www.roblox.com/bust-thumbnail/image?userId=124839196&width=420&height=420&format=png
image

Have you tried waiting a bit or experimenting with different thumbTypes?
Perhaps try seeing if the bool, “isReady” has been satisfied before setting the image.

if isReady then
	Player1.Image = content
end