local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
– Set the ImageLabel’s content to the user thumbnail
local imageLabel = script.Parent
imageLabel.Image = content
imageLabel.Size = UDim2.new(0, 420, 0, 420)
So I’m trying to make a leaderboard that shows your picture by your name. But I don’t know if this would be a local script or a script and I don’t know where the script will go
If you want only the player to see it then it will be a local script inside of an image label that is inside of a screengui or a frame, it really depends on how you design your gui but you could also just change how the image label is referenced.