I am trying to make a gfx and am following some tutorials on youtube. I’ve got my avatar in its pose using the roblox animation editor, and the tutorials say to select the character in the explorer window then anchor it so the animation saves in place once you exit the animation editor. The problem is, when I try and click on the character in the explorer, it just closes out of the animation editor completely and I lose the animation until I reopen the editor. Does anyone know how I can do this, or how I can do it easily another way?
Use the command bar and a script for it!
This anchors all the parts in your rig so that they stay still.
local Descendants = workspace:FindFirstChild("urrignameig"):GetDescendants()
for _ = 1, # Descendants do
local BasePart = Descendants[_]
if BasePart:IsA("BasePart") then
BasePart.Anchored = true
end
end