Animation Stutters

  1. What do you want to achieve?

Stop the player’s feet from stuttering.

  1. What is the issue? Include screenshots / videos if possible!

The player’s feet keep stuttering when the player moves a little.

  1. What solutions have you tried so far?

Tried asking for help in a discord server.

I added this code to make the player blocky when they join. Idk if this is what’s causing the problem.

local Players = game.Players

function PlayerJoined(Player)
 local function RemoveMeshes(Character)
  local Humanoid = Character:WaitForChild("Humanoid")
  wait()
  local CurrentDescription = Humanoid:GetAppliedDescription()
  
  CurrentDescription.Head = 0
  CurrentDescription.Torso = 0
  CurrentDescription.LeftArm = 0
  CurrentDescription.RightArm = 0
  CurrentDescription.LeftLeg = 0
  CurrentDescription.RightLeg = 0
  Humanoid:ApplyDescription(CurrentDescription)
 end
 Player.CharacterAdded:Connect(RemoveMeshes)
end

Players.PlayerAdded:Connect(PlayerJoined)

Arbitrarily having this issue now. I have made one edit to the Roblox animation script that only does anything if the player is running at a high enough speed. The stuttering happens anyway. It does not happen on the default Animation script. I am monumentally confused.

(Sorry for bumping this up, hoping someone will have found a solution)