PostSimulation does not fire when manually stepping physics

When manually stepping the Physics, the PostSimulation event does not get fired

Clip:

System specs:
CPU: AMD Ryzen 5 3600X
GPU: NVIDIA GeForce RTX 2060 Super
RAM: 2x8GB DDR4-3200

Script used in video:

local RunService = game:GetService("RunService")

RunService.PreAnimation:Connect(function(deltaTimeSim: number)
	print("PreAnimation")
end)

RunService.PreSimulation:Connect(function(deltaTimeSim: number)
	print("PreSimulation")
end)

RunService.PostSimulation:Connect(function(deltaTimeSim: number)
	print("PostSimulation")
	print()
end)

RunService.Stepped:Connect(function(deltaTimeSim: number)
	print("Stepped")
end)

Expected behavior

I expect PostSimulation to fire after PreSimulation when manually stepping physics

This is just an acknowledgment announcement!

We’ve filed a ticket into our internal database for this issue, and we will update you when we have further information!

Thanks for the report!

Hi abidbmt, thanks for the bug report! This issue should now be fixed, and PostSimulation should now be stepping. Let us know if you encounter any other problems.