We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75098e commit 26eb132Copy full SHA for 26eb132
content/en-us/projects/transferring-animations.md
@@ -24,9 +24,11 @@ If your animations are stored as Animation instances under pre-prepared Characte
24
1. In Roblox Studio, run the following script. Studio outputs the result as a single long string.
25
26
```lua
27
+local Workspace = game:GetService("Workspace")
28
+
29
local ANIMSTRING = ""
30
-for _, character in workspace:GetChildren() do
31
+for _, character in Workspace:GetChildren() do
32
if not character:IsA("Model") then
33
continue
34
end
0 commit comments