Is My Lerp Wrong?

Hello! So I’m trying to code a fps ( My 1st game away from courses ) and I’m trying to make zooming in. If I understand lerp correctly you put the original value in and then the new value and then it gradually changes from the original value to the value to the new value?( Hope that made since ) Here’s my code. I have 2 game objects with my zoomed and non zoomed in position and I’m grabbing there position threw the variables.

In your current setup, the Lerp node will only process for 1 frame and is sending a values, that should be used in a “set position” node.

This is an example lerping position of the object with this script, from GameObjects PosA to PosB in 0.5 sec. The Cooldown, will also force the script to finish before letting another action happen.

Lol can’t believe I forgot the set position. Thanks I’ll try it out.