Hi so i made a script that gives the player’s character with different custom bodyparts (similar to royale high) However, since the custom leg bodyparts are taller than the roblox default legs, it clips to the ground: https://gyazo.com/22dd373bc894c49a5398ddc73c26d306
the only way i found to solve this is to modify the HipHeight:
script: character.Humanoid.HipHeight = (1.5 * character.HumanoidRootPart.Size.Y) + character.Humanoid.HipHeight (from devforum article)
https://gyazo.com/6d719bd7e71e209cdc5a961f906e5fb9
However, i dont want the player’s animation to be walking. I tried increasing the speed, it worked, the player"s animaton were back to run, but i dont want the player to walk faster than other, how do i do that?