how can i make a lerp function thats independent of the player’s fps? ive seen solutions from other posts already however none of them work correctly on low fps
this is the current code im using:
local function Lerp(a, b, t)
return a + (b - a) * t
end
BobbleX = Lerp(BobbleX, math.sin(tick() * 10), 0.2 * (60 * DeltaTime))