If you provide correlations in covariance matrix you cau useĀ
MultinormalDistribution, e.g. (from documentation):
RandomVariate[
MultinormalDistribution[{1, 2, 4}, {{2, -1/4, 1/3}, {-1/4, 2/3, 1/5}, {1/3, 1/5, 1/2}}], 10^3];
This will provide a sample of size 1000 from a correlated multinormal distribution.