Is it possible to make your feet do damage i'm using R15. Also I only want the foot to do damage during the animation. Is this possible with a local script or do I have to create a tool and do some welding shenanigans?
function footTouched(part) if part.Parent:FindFirstChild("Humanoid") and animationTrack.IsPlaying then part.Parent.Humanoid:TakeDamage(10) end end char["Left Leg"].Touched:connect(footTouched) char["Right Leg"].Touched:connect(footTouched)