I am trying to make this Aim Down Sights look more interesting.
The issue is that this looks too linear.
I have tried making this look better by adding more CFrames. However, I have learned that this is not the best way of achieving this goal.
Basically, the Aim Down Sights CFrame looks really linear and slow.
Module Script Code (This all works)
if aiming then
adsCFrame.Value = adsCFrame.Value:Lerp(aimCFrame, .15)
self.weaponModule.Spread = self.weaponModule.AimSpread
swayMult = 0.03
else
adsCFrame.Value = adsCFrame.Value:Lerp(CFrame.new(), .1)
self.weaponModule.Spread = self.weaponModule.RegSpread
swayMult = 1.15
end
end
Thank you.