having trouble like assigning animations to a specific mutation. my code below (doesnt display animations)
["Recruit"] = {
Rarity = "Common",
Price = 100,
MoneyPerSecond = 1,
Icon = "rbxassetid://137595576045934",
IdleAnimation = "rbxassetid://6926033633",
WalkAnimation = "rbxassetid://507777826",
CarryAnimation = "rbxassetid://94421863925055",
Mutations = {
Default = {
IdleAnimation = "rbxassetid://6926033633",
WalkAnimation = "rbxassetid://507777826",
CarryAnimation = "rbxassetid://94421863925055",
},
Evolved = {
IdleAnimation = "rbxassetid://106889390112862",
WalkAnimation = "rbxassetid://93605365222407",
CarryAnimation = "rbxassetid://94421863925055",
}
},
BuySound = "rbxassetid://138857089980331",
StealSound = "rbxassetid://138857089980331"
},
below works
["Skeleton"] = {
Rarity = "Common",
Price = 99999999,
MoneyPerSecond = 1,
Icon = "rbxassetid://116462124628929",
IdleAnimation = "rbxassetid://102815981480960",
WalkAnimation = "rbxassetid://122558826459516",
CarryAnimation = "rbxassetid://94421863925055",
BuySound = "rbxassetid://92250065289522",
StealSound = "rbxassetid://92250065289522"
},