Hello,
I tried to make Player’s Image Icon, but everything I get was only error.
Error:
My script:
local Frame = script.Parent
local Player = game.Players.LocalPlayer
local UserID = Player.UserId
local ThumbType = Enum.ThumbnailType.AvatarBust
local ThumbSize = Enum.ThumbnailSize.Size420x420
local Content = game.Players:GetUserThumbnailAsync(UserID,ThumbSize,ThumbType)
Frame.PlayerImage.Image = Content
Second argument should be ThumbType instead ThumbSize.
Just swap them places.
local Frame = script.Parent
local Player = game.Players.LocalPlayer
local UserID = Player.UserId
local ThumbType = Enum.ThumbnailType.AvatarBust
local ThumbSize = Enum.ThumbnailSize.Size420x420
local Content = game.Players:GetUserThumbnailAsync(UserID,ThumbType,ThumbSize)
Frame.PlayerImage.Image = Content