Anybody know why my animations looks weird? Specifically on the AK
script.Parent.Equipped:Connect(function()
local animation = Instance.new("Animation")
animation.AnimationId = WeaponConfig.Settings.EquipAnimation
local animation1 = Instance.new("Animation")
animation1.AnimationId = WeaponConfig.Settings.IdleAnimation
local Motor6d = Instance.new("Motor6D")
Motor6d.Part0 = player.Character.RightHand
Motor6d.Part1 = script.Parent.Handle
Motor6d.Parent = player.Character.RightHand
local animationThing = player.Character.Humanoid.Animator:LoadAnimation(animation)
local animationIdle = player.Character.Humanoid.Animator:LoadAnimation(animation1)
animationThing:Play()
animationIdle:Play()
end
Thanks for the help