Hi! So I have a game similar to bubble gum sim where you jump clouds to get to new islands. However, when you fall sometimes you get flinged on a corner? Sometimes, it is severe and sometimes it is more subtle but still annoying. I have already tried disabling ragdoll but it doesn’t work?How can I fix this?
local char = script.Parent
local humanoid = char:WaitForChild("Humanoid")
local humanoidRootPart = char:WaitForChild("HumanoidRootPart")
local ragdoll = Enum.HumanoidStateType.Ragdoll
humanoid:SetStateEnabled(ragdoll, false)