Hello everyone! I would like feedbacks on how to replace a simple image with the player’s body image?
An example would be:
PLAYER PICTURE
RANK: Cool dude
Help is appreciated!
Regards,
Ach!
Hello everyone! I would like feedbacks on how to replace a simple image with the player’s body image?
An example would be:
RANK: Cool dude
Help is appreciated!
Regards,
Ach!
Or you could use a viewport frame, which is basically cloning the player’s character inside the viewport frame, which then is displayed in the player’s UI as a 3D model.
Always you saving my life I see. Thanks you!
local players = game:GetService("Players")
local player = game.Players.LocalPlayer
local userId = player.UserId
local Type = Enum.ThumbnailType.AvatarThumbnail
local Size = Enum.ThumbnailSize.Size210x210
script.Parent.Image = players:GetUserThumbnailAsync(userId, Type, Size)