diff --git a/src/init.luau b/src/init.luau index f7d9467..1ef8c7e 100644 --- a/src/init.luau +++ b/src/init.luau @@ -437,7 +437,7 @@ if Axes then read = function(b: buffer, offset: number): (Axes, number) local x, y, z = readBool(b, offset) local back, bottom, front, left, right, top = readBool(b, offset + 1) - return Axes.new( + return (Axes.new :: any)( x and Enum.Axis.X :: any, y and Enum.Axis.Y :: any, z and Enum.Axis.Z :: any,