For some reason the legs for the character ain’t loading, I tried to solve that problem by my own but it seems that this problem is very small but deep, so I need help with why this character legs ain’t loading ?
That’s the script I made to load the character walking animation:
local character = script.Parent
local humanoid = character:WaitForChild("Humanoid")
local walkAnim = script:WaitForChild("Walk")
local walkAnimTrack = humanoid.Animator:LoadAnimation(walkAnim)
humanoid.Running:Connect(function(speed)
	if speed > 0  then
		if not walkAnimTrack.IsPlaying  then
			walkAnimTrack:Play()
		end
	else
		if walkAnimTrack.IsPlaying then
			walkAnimTrack:Stop()
		end
	end
end)
