Hi,
I’m making a game where players start as normal sized characters but they are getting bigger as the game goes on. I encountered a problem with physics because when players get bigger their movement control and rotation in the air is limited, here’s what I mean by that:
As you can see on the video, when I am a normal size character I can easily do a 180 jump. It is possible because Roblox physics gives me a limited movement control when I’m in the air. The red button is multiplying my size, WalkSpeed, JumpHeight, and Gravity by x10. You can see how I can’t make this 180 jump anymore because everything has been increased by x10 but not that movement control limitation. So this is my question: How can I increase this movement limit so that bigger players can do obbies like normal sized players?
I’ve tried adding a ControllerManager and AirController inside of it but it didn’t change anything. I don’t know if I’m doing something wrong but this is how I tried to solve my problem with it:
I created a StarterHumanoid instance in StarterPlayer service, the humanoid would automatically be assigned to all new players’ characters. I changed properties of AirController and it didn’t do anything, no difference. Am I doing something wrong or it’s not the right solution?