Hi, so I have a recoilTween for my gun and arm. It works perfectly but when the player is very rapidly firing, the recoil will be so much that the arm is like almost spinning one round around itsself (same with the gun). To fix this, I tried to script a recoil limit, so that on a certain position of the arm, it cant go any further back because of the recoil. Welp but it does absolutely not work and I do not know why.
Heres a pic of how it looks when fired rapidly:
ServerScript inside ServerScriptService:
(att variable is the attachment between arm and gun and controlling the rotation of the gun
weld variable is the Weld with the arm and torso and does control the rotation of the arm)
local recTweenArm
local recTweenGun
if weld.C1.Z < -29 then
--Rotation when limit is hit
local endAmountArm = -30 + weld.C1.Z --Getting the amounts of how much the arm can rotate until limit is hit
local endAmountGun = 50 - att.C0.X --Same here as above
recTweenGun = tweenS:Create(att, info, {C0 = att.C0 * CFrame.fromOrientation(math.rad(endAmountGun, math.rad(0), math.rad(0)))})
recTweenArm = tweenS:Create(weld, info, {C1 = weld.C1 * CFrame.fromOrientation(math.rad(0), math.rad(0), math.rad(endAmountArm))})
else
--Normal animation when recoil limit not hit
recTweenGun = tweenS:Create(att, info, {C0 = att.C0 * CFrame.fromOrientation(math.rad(20), math.rad(0), math.rad(0))})
recTweenArm = tweenS:Create(weld, info, {C1 = weld.C1 * CFrame.fromOrientation(math.rad(0), math.rad(0), math.rad(-15))})
end
recTweenGun:Play()
recTweenArm:Play()