Saltar al contenido

obtener la imagen de perfil de Roblox del ejemplo de código de API de ID de usuario

Ejemplo: mostrar la imagen de los jugadores en roblox

local Players = game:GetService("Players")
local player = Players.LocalPlayer
 
-- Get the player image
local userId = player.UserId

--ThumbnailTypes:
--"HeadShot": Just the head and face
--"AvatarBust": Upper chest and head
--"AvatarThumbnail": The hole avatar

local thumbType = Enum.ThumbnailType.HeadShot --ThumbnailType

local thumbSize = Enum.ThumbnailSize.Size420x420
local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
 
-- Insert the player image to an imageLabel
local imageLabel = script.Parent
imageLabel.Image = content
imageLabel.Size = UDim2.new(0, 420, 0, 420)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *