Answered by
5 years ago Edited 5 years ago
you can do the function :GetUserThumbnailAsync(), i dont know much about it the code below is from the wiki
01 | local Players = game:GetService( "Players" ) |
03 | local player = Players.LocalPlayer |
06 | local userId = player.UserId |
07 | local thumbType = Enum.ThumbnailType.HeadShot |
08 | local thumbSize = Enum.ThumbnailSize.Size 420 x 420 |
09 | local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize) |
12 | local imageLabel = script.Parent |
13 | imageLabel.Image = content |
you can read more about it at https://developer.roblox.com/en-us/api-reference/function/Players/GetUserThumbnailAsync