local anims = {}
local npc = script.Parent
local animator = npc.AnimationController.Animator
-- Convert Vector2 to string for use as table key
local key = tostring(Vector2.new(0, 0))
anims[key] = animator:LoadAnimation(npc.ControllerManager.Animations.idle)
anims[key]:Play()