Help with this error: attempt to perform arithmetic (add) on number and Vector3

I’m currently making a plane but while testing this error happen

Players.baum1000000.PlayerGui.PlaneController:150: attempt to perform arithmetic (add) on number and Vector3

Heres the code:

local mouseLookVector = getMouseLookVector() -- return Unit of the mouse position
local BaseLookVector = Base.CFrame.LookVector
			
local Move = Vector3.new((BaseLookVector.X + mouseLookVector.X) * Speed, 0, (BaseLookVector.Z + mouseLookVector) * Speed)
			
Velocity.Velocity = Move

Thanks!

You forgot .Z here

30?!

Thank you! got it working

charss