Vector3Operator ( Vector3 + Vector3 )On this pageOperator ( Vector3 + Vector3 ) Adds two vectors. LHS TypeSymbolRHS TypeResult TypeVector3+Vector3Vector3 Usage ---@type Vector3local lhs;---@type Vector3local rhs;local result = lhs + rhs; -- result is Vector3 Extra Detail Adds corresponding components together.