i have a wolf model and im attempting to make it move like this for the player, it works when i use move to in a server script but when i use the player it just bobs the head. any help?
(its the defaullt anim script and this )
local humanoid = character:WaitForChild("Humanoid")
local animator = humanoid:WaitForChild("Animator")
for _, playingTrack in animator:GetPlayingAnimationTracks() do
playingTrack:Stop(0)
end
local animateScript = character:WaitForChild("Animate")
animateScript.run.RunAnim.AnimationId = "rbxassetid://15415255760"
animateScript.walk.WalkAnim.AnimationId = "rbxassetid://15415255760"
end
local function onPlayerAdded(player)
player.CharacterAppearanceLoaded:Connect(onCharacterAdded)
end