Hello!
I’ve recently started developing a combat game and making a fall damage system was the hardest part so far. I’ve went for a pretty weird approach where each limb takes damage using .Touched() depending on rootpart velocity. It works pretty much fine and has relatively low data usage. The problem is sliding on walls will still damage the limbs. I was wondering if there was any way to combat this?
Video showcasing the issue:
Server-side functions that handle fall damage:
-- ragdolls the player around 1 second after they start falling ( really messy due to .Landed not always firing on the server )
utility.ConnectFallRagdoll = function(char: Model?)
local humanoid: Humanoid = char:FindFirstChildOfClass("Humanoid")
local rootPart: BasePart = char:FindFirstChild("HumanoidRootPart")
local head: BasePart = char:FindFirstChild("Head")
local fallThread: thread
humanoid.StateChanged:Connect(function(old, new)
if new == Enum.HumanoidStateType.Freefall then
if fallThread ~= nil then return end
fallThread = task.delay(1, function()
repeat task.wait(0.05) until rootPart.AssemblyLinearVelocity.Y < -50
humanoid:SetAttribute("IsRagdolled", true)
PlaySound(GetRandomChild(RS.Assets.Sounds.Pain.Critical), head:FindFirstChild("Voice"))
repeat task.wait() until rootPart.AssemblyLinearVelocity.Magnitude <= 5
task.wait(1)
if humanoid.Health <= 0 then return end
humanoid:SetAttribute("IsRagdolled", false)
end)
end
if new == Enum.HumanoidStateType.Landed or new == Enum.HumanoidStateType.Running then
if fallThread then task.cancel(fallThread); fallThread = nil end
task.wait(1)
if humanoid.Health <= 0 then return end
humanoid:SetAttribute("IsRagdolled", false)
end
end)
end
-- this handles limb damage on touched
utility.ConnectLimbRagdollDamage = function(char: Model?)
local humanoid: Humanoid = char:FindFirstChildOfClass("Humanoid")
local rootPart: BasePart = char:FindFirstChild("HumanoidRootPart")
local limbHealth: Configuration = char:FindFirstChild("LimbHealth")
for _, limbHealthValue: DoubleConstrainedValue in limbHealth:GetChildren() do
local limbPart: BasePart = char:FindFirstChild(limbHealthValue.Name)
if not limbPart then continue end
local cooldown = false
limbPart.Touched:Connect(function(otherPart)
if otherPart:IsDescendantOf(char) then return end
if humanoid:GetAttribute("IsRagdolled") == true then
local velocity = rootPart.AssemblyLinearVelocity.Magnitude
if velocity <= 20 then return end
cooldown = true
limbHealthValue.Value -= velocity
task.wait(0.5)
cooldown = false
end
end)
end
end