So i have this tween in my vr game to make the camera tween to your legs position + some studs on the y axis and i noticed my hands were always delayed (using alignposition/orientation) and then after a few minutes they would suddenly start being real responsive and then the tweens would seem to lag, i have a tween for the legs where they tween orientation to 0,0,0 and after like 3 minutes it just breaks and then i get this choppy tween stuff this is my code for the camera tweens but its the same for the legs but instead of tweening the camera cframe i tween leg orientation and yes i have tried changing the delays, doesnt do anything. Help is appreciated, thanks!
local CamCFrameToBe = Legs.CFrame * CFrame.new(0, 6, 0) * (HeadOrientation)
local ts = game:GetService("TweenService")
local ti = TweenInfo.new(0.05, Enum.EasingStyle.Cubic, Enum.EasingDirection.Out)
local propertyToTween = {CFrame = (CamCFrameToBe)}
local Tween = ts:Create(Cam, ti, propertyToTween)
Tween:Play()