Setting Animations in HumanoidDesciption does not work

I am trying to set the animations for my character, however, they do not work.

These animations are made for R15 and the highest priority set. Animations are still Roblox’s default though :confused:
ezgif.com-gif-maker (27)

The animations are definitely being applied to the HD though, so there is no reason they should not work

game.Players.PlayerAdded:Connect(function(player)
	local HumanoidDescription = game.Players:GetHumanoidDescriptionFromUserId(player.UserId)
	
	-- Set to blocky
	HumanoidDescription.Head = 0
	HumanoidDescription.Torso = 0
	HumanoidDescription.LeftArm = 0
	HumanoidDescription.RightArm  = 0
	HumanoidDescription.LeftLeg = 0
	HumanoidDescription.RightLeg = 0
	
	HumanoidDescription.JumpAnimation = 8037790635
	HumanoidDescription.WalkAnimation = 8037792349
	
	if not player or not player.Parent then return end -- Player left
	
	player:LoadCharacterWithHumanoidDescription(HumanoidDescription)
end)

Hi there, I know this has nothing to do with humanoid description, but it may give you insight as to why your script isn’t changing it. Changing Animation Issue

Following that didn’t fix my problem though :confused:

It’s putting them there, but my character still has default animations

I believe some of it needs to be done from a serverscript

It is done from a server script