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 |
03 | local toolbar = plugin:CreateToolbar( "AirLive1" ) |
04 |
05 | local createAnimationFolder = toolbar:CreateButton( "create animation folder" , "creates an animation folder" , "" ) |
06 | local previewAnimation = toolbar:CreateButton( "preview animation" , "previews the animation" , "" ) |
07 |
08 |
09 | local 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) |