Players head vieuwport frame?

How would i make a vieuwport frame with just a picture of the players head exactly like in this game?

1 Like
local userid = -- the userid of the player
local Players = game.Players
local imagelabel = -- path to image label
local image,status = Players:GetUserThumbnailAsync(userid,Enum.ThumbnailType.Headshot,Enum.ThumbnailSize.Size420x420)
imagelabel.Image = image
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.