Currently, Deferred SignalBehavior prevents .Stepped from running inbetween stepAnimation and stepIK.
You need to intercede between stepAnimation in order to easily update your IK Solver props with results from just your avatar’s animation, ex:
--In Immediate: .Stepped runs after stepAnimation but before stepIK
--This allows devs to modify the IK targets before IK is solved
--Using the .Transform of your animations -> adjust IK -> it solves
RunService.Stepped:Connect(function(dt)
--Footplanting example, we rely on the fact that only animation .Transform is present
local direction = endEffector.TransformedWorldCFrame.Position - chainRoot.TransformedWorldCFrame.Position
local raycastResult = workspace:Raycast(chainRoot.TransformedWorldCFrame.Position, direction*1.01, rayParams)
if raycastResult then
target.WorldCFrame = CFrame.new(raycastResult.Position)
IKControl.Enabled = true
else
IKControl.Enabled = false
end
end)
RunService.PreSimulation:Connect(function(dt)
--Not directly related but
--Also in immediate, this for some reason runs after stepIK.
--Since PreSimulation is supposed to be a Replacement for Stepped this is odd
--I.e if a dev remakes roblox's demo/tries to do animation blended footplanting with Stepped it will work
--But not if they use PreSimulation
end)
The layout can be seen in the microprofiler for immediate here:
In comparison, deferred removes any resumption point inbetween stepAnimation and stepIK:
This problem can be reproduced with many examples, but a good one is via the attached devforum resource where a user provides others with a simple guide on how to recreate roblox’s own IKControl demo:
This is a problem because deferred events and IKControls are both released features and Roblox even sets your signalbehavior to Deferred when you make new places. However, for developers trying to create footplanting akin to Roblox’s demo, they are effectively forced to change SignalBehavior.
This is also a decently subtle interaction, especially from a developer perspective since it’s unexpected that defaulted features would have an interaction like this, especially considering Roblox features their own demo video with adapative footplanting.

