so I've created this quick animation using a animation that animates the handle but I'm having difficulties exporting that into my tool example can yu halp :)
i tryed to give as much info as possibru
Easy! All you have to do is link it and load it into the player! A simple script like this one,
local tool = script.Parent -- Variable to locate the tool local player = game.Players.LocalPlayer local character = player.Character local AnimationAnim = Instance.new("Animation") -- Makes a new Animation instance AnimationAnim.AnimationId = tool.Handle.YourAnimation.AnimationId -- locates the animation inside of the handle brick local Animation = character.Humanoid:LoadAnimation(AnimationAnim) -- Puts it into your Humanoid so you can use it!
after you have that done all you need to do is
Animation:Play()
inside where ever you are trying to call the animation.
If you have any questions feel free to ask!