- What do you want to achieve?
Stop the player’s feet from stuttering.
- What is the issue? Include screenshots / videos if possible!
The player’s feet keep stuttering when the player moves a little.
- 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)