Hey devs,
ive made a nice animation with moon animator where I use the characters left hand
as what holds my tool
playing the animation on moon animator works GREAT. when i play the animation in studio. character is holding the tool in the right hand!?! I animated the tool a little bit but that doesn’t show either.
-- my script in case
local BoStaff = script.Parent.Parent
local AnimationsFolder = BoStaff.Animations
local Player = game.Players.LocalPlayer
local Character
local Humanoid
local Animations = {
AnimationsFolder.HOLD,
AnimationsFolder.SHEATHE,
AnimationsFolder.UNSHEATHE
}
BoStaff.Equipped:Connect(function()
Character = BoStaff.Parent
Humanoid = Character.Humanoid
print("equipped")
local currentAnimation = Humanoid.Animator:LoadAnimation(Animations[2])
currentAnimation:Play()
print(Animations[2])
end)
starting to make a game. hate it ngl so many problems and they arent even related to scripting