Howdy! How do I get a players profile picture from their profile? Since I am using a localscript, I could do this through the script.
Cheers!
Howdy! How do I get a players profile picture from their profile? Since I am using a localscript, I could do this through the script.
Cheers!
You would use GetUserThumbnailAsync
local Player = game.Players.LocalPlayer
local ImageSize = Enum.ThumbnailSize.Size420x420 -- Thumbnail Size
local ImageType = Enum.ThumbnailType.HeadShot -- Thumbnail Type
local content = game.Players:GetUserThumbnailAsync(Player.UserId, ImageType, ImageSize) -- Gets Image from UserId
ImageLabel.Image = content -- Inserts Image
Mind explaining to me how to do this? I am not sure how to use player stats (beside username)
Ohhhh. I see. And I would just copy paste this into my script?
I appreciate it. I’ll see if it works!
Yep! That works! Thank you so much for the help!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.