So im experimenting with roblox typescript and im trying to multiply a vector 3 by 100. But when i do, I get The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.
as an error. Does anyone know how to fix this?
This is my code:
print(new Vector3(100,10,10) * 100)
thanks in advance!