FPS independent lerp?

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))

this is whats happening:

You could try using workspace:GetRealPhysicsFPS to get the current frame rate instead of using a default of 60.

3 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.