Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

plugin related - animation not playing for some reason?

Asked by
Lunaify 66
5 years ago

so im trying to make this plugin for my friend that loops through animations within a folder and then loads them into a rig's humanoid and then plays them, but this doesn't seem to work and i literally have no idea why

01--//animation plugin for alimr
02 
03local toolbar = plugin:CreateToolbar("AirLive1")
04 
05local createAnimationFolder = toolbar:CreateButton("create animation folder","creates an animation folder","")
06local previewAnimation = toolbar:CreateButton("preview animation","previews the animation","")
07 
08 
09local function createAnimFolder()
10 
11    local animFolder = Instance.new("Folder",workspace)
12    animFolder.Name = "Animation Folder"
13 
14    for i = 1,3,1 do
15        local animString = Instance.new("Animation",animFolder)
View all 46 lines...

1 answer

Log in to vote
1
Answered by
Norbunny 555 Moderation Voter
5 years ago

Unfortunately, animations only work during runtime (when you run/play the game).

In order to see the animation play, you will need to run the game and use the plugin.

0
alright, thanks Lunaify 66 — 5y
Ad

Answer this question