local function getPlayerImage(player_id)
local content, isReady = game:GetService("Players"):GetUserThumbnailAsync(player_id,Enum.ThumbnailType.HeadShot,Enum.ThumbnailSize.Size420x420)
return content
end
The part I don’t understand is how they are using it, (local content, isready = …). If they just want to return content then why do they need “Isready”? What do each of those variables represent?