24 lines
857 B
Lua
24 lines
857 B
Lua
-- Avatar v1.0.1
|
|
-- This is the thumbnail script for R6 avatars. Straight up and down, with the right arm out if they have a gear.
|
|
|
|
characterAppearanceUrl, baseUrl, fileExtension, x, y = ...
|
|
|
|
pcall(function() game:GetService("ContentProvider"):SetBaseUrl(baseUrl) end)
|
|
game:GetService("ScriptContext").ScriptsDisabled = true
|
|
|
|
local player = game:GetService("Players"):CreateLocalPlayer(0)
|
|
player.CharacterAppearance = characterAppearanceUrl
|
|
print(characterAppearanceUrl)
|
|
player:LoadCharacterBlocking()
|
|
|
|
-- Raise up the character's arm if they have gear.
|
|
if player.Character then
|
|
for _, child in pairs(player.Character:GetChildren()) do
|
|
if child:IsA("Tool") then
|
|
player.Character.Torso["Right Shoulder"].CurrentAngle = math.rad(90)
|
|
break
|
|
end
|
|
end
|
|
end
|
|
|
|
return game:GetService("ThumbnailGenerator"):Click(fileExtension, x, y, --[[hideSky = ]] true) |