How to animate flying weapons

1.Hello, I Want to animate two flying swords and make core and attack animations but i don’t know how to animate them (There are Aligning Position with me)

  1. I’ve tried to use Tween Service but it’s not working:

i’ve also tried to animate it with moon animator but i don’t know how to play these animations. I’ve tried this script and it’s also not working


local animController = script.AnimationController

local anim = Instance.new("Animation")

anim.AnimationId = "rbxassetid://17080759200"



local animTrack = animController:LoadAnimation(anim)



animTrack:Play()

3 Likes

The animation controller should be under the model of the sword to work.

Consider also creating the animation object beforehand if you can, I think it is easier than creating it in the script.

2 Likes