Need help with fixing walking and running

I want my walking animations to work but when I do it does not seem to work it keeps my player frozen

https://medal.tv/clips/68596557/d1337TleGPhX?invite=cr-MSxjQXUsMzE5MzY1NTYs

If you could please help me that would be amazing

image

Was your animation priority set to action? If not then make sure it is

Here’s what I want you to try.


  • Insert any character model on Workspace.
  • Insert a script inside that character model and paste this in:
while true do
	local hum = script.Parent:WaitForChild("Humanoid")
		local anim = hum:LoadAnimation(script:FindFirstChildOfClass("Animation"))
	anim:Play()
	wait(5)
	break
end
  • Paste the RunAnim inside the script that’s inside the character model.

Then tell us if the character model moves or not. If it doesn’t, then it’s an animation problem and not a script problem.