Answered by
4 years ago Edited 4 years ago
What to do?
Hello, so basically you'd use something called Players:GetUserThumbnailAysync
this function stores data for players profile pictures.
What you need
You will need an:
image label
A local script
Image button
ScreenGui
Here's the script:
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 |
14 | imageLabel.Size = UDim 2. new( 0 , 420 , 0 , 420 ) |
If you need any more assistance on how to use this, watch this
Locked by JesseSong, DarkDanny04, and Nguyenlegiahung
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?