How to anchor HumanoidRootPart fast

a.CharacterAdded:Connect(function(c)
		
		c.HumanoidRootPart.Anchored = true
		
	end)

or

a.CharacterAppearanceLoaded:Connect(function(c)
		
		c.HumanoidRootPart.Anchored = true
		
	end)

Which would make the HumanoidRootPart faster anchor, CharacterAdded or CharacterAppearanceLoaded?

2 Likes

CharacterAdded would load faster as it wouldn’t wait for the character’s appearance (I’m guessing shirts, pants, hats, etc.) to fully load in.

When the Character loads does this means the Humanoid and all Parts inside Character has loaded?

Yes, it means your character has spawned in complete with body colors and all necessary rig parts, but it might lack cosmetics.