Hello. I have been wondering how I could make PF like Walk cycle (Viewmodel animation) using sinusoidal graphs.
For now I have this script but it is not really good and not realistic :
local cf = CFrame.new()
cf = cf:Lerp(
0.12 * math.sin(tick() * 4),
0.08 * math.sin(tick() * 2),
0
)
Model:SetPrimaryPartCFrame(camera.CFrame * cf)