14 lines
472 B
Lua
14 lines
472 B
Lua
local assetid, assetUrl, fileExtension, x, y, baseUrl = ...
|
|
|
|
print("Render Gear "..assetid)
|
|
|
|
local ThumbnailGenerator = game:GetService("ThumbnailGenerator")
|
|
|
|
pcall(function() game:GetService("ContentProvider"):SetBaseUrl(baseUrl) end)
|
|
game:GetService("ScriptContext").ScriptsDisabled = true
|
|
|
|
for _, object in pairs(game:GetObjects(assetUrl)) do
|
|
object.Parent = workspace
|
|
end
|
|
|
|
return ThumbnailGenerator:Click(fileExtension, x, y, --[[hideSky = ]] true, --[[crop =]] true) |