From 36b735f6be198981e6ae913b913423d201e38db9 Mon Sep 17 00:00:00 2001 From: Entarno54 Date: Thu, 29 May 2025 20:35:28 +0700 Subject: [PATCH] Test --- modules/types.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/types.lua b/modules/types.lua index 6c0fbf5..e9bfc79 100644 --- a/modules/types.lua +++ b/modules/types.lua @@ -17,7 +17,7 @@ local Sprites = {} local Rects = {} function Vector2:Lerp(newVector2, position) - return module.Vector2(myMath.lerp(self.x, newVector2.x, position), myMath.lerp(self.x, newVector2.x, position)) + return module.Vector2(myMath.lerp(self.x, newVector2.x, position), myMath.lerp(self.y, newVector2.y, position)) end function Vector2:Get()