The image above is a full body thumbnail, but what I need is the full body thumbnail without the animation.
Example:
Anyway to do this?
A few ways to do this. You can copy your character in Studio while running, then remove the animations manually after pasting.
Or use a script:
local players = game:GetService("Players")
local plr = players.LocalPlayer
local char = plr.Character or plr.CharacterAdded:Wait()
local clone = char:Clone()
clone.Animate:Destroy()
clone.Parent = workspace
You can also use Avatar previews and copy a Avatar, then remove Animate if you want a static NPC.
They will just stand there anyways even with Animate there as they are not being told to do anything.
Many mods can place a NPC down also.
Any player version..
local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")
local function placeAvatarByName(userId)
local desc = Players:GetHumanoidDescriptionFromUserId(userId)
local model = Players:CreateHumanoidModelFromDescription(desc, Enum.HumanoidRigType.R6)
model.Parent = Workspace
model:SetPrimaryPartCFrame(CFrame.new(0,5,0))
end
placeAvatarByName(123456789) -- any player ID
This is using Python by the way.
I named that placeAvatarByName and then used the ID .. /facepalm
What do you mean using Python?
I need the full body avatar without animations, externally. I already have the script to get the full body avatar with the animations externally but not without.
Then just delete the animations.. It’s not like they will move if you don’t tell them to anyways.
Unfortunately roblox thumbnail APIs doesn’t have an endpoint or any query parameter to existing endpoint to retrieve full body thumbnail without any custom pose.
you can get their avatar then put it on a dummy and then in a viewportframe so it Looks like a thumbnail
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.

