Files
gameserver/RCCService2018/content/internal/AppShell/Modules/Shell/Actions/FetchUserThumbnail.lua
T
2026-07-06 14:01:11 -04:00

11 lines
348 B
Lua

local CoreGui = game:GetService("CoreGui")
local Action = require(CoreGui.RobloxGui.Modules.Common.Action)
return Action("FetchUserThumbnail", function(thumbnailInfo)
thumbnailInfo = thumbnailInfo or {}
return {
rbxuid = thumbnailInfo.rbxuid,
thumbnailType = thumbnailInfo.thumbnailType,
thumbnailSize = thumbnailInfo.thumbnailSize
}
end)