Hello, currently I have a script to get the picture of the player on the plugin.
Here is the code,
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local SS = game:GetService('StudioService')
-- Fetch the thumbnail
local userId = SS:GetUserId()
local thumbType = Enum.ThumbnailType.HeadShot
local thumbSize = Enum.ThumbnailSize.Size420x420
local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
-- Set the ImageLabel's content to the user thumbnail
local imageLabel = script.Parent
imageLabel.Image = content
Here is how it turns out
And here is my explorer