I have a random sample $X$ of size $500$ from an $Exp(1000)$ distribution. I assume that $\lambda =0.2$ and I convert $X$ into $Y$ by the Box-Cox transfoamrtion $y(\lambda )=\frac{x^{\lambda}-1}{\lambda}$. I want to plot the Q-Q plot of the sample $Y$ versus Weibull distribution $Weib(5,1000)$ in R as follows:
The figure comes from a paper.
What I've tried:
set.seed(123)
x <- rexp(500, 1000)
lambda <- 0.2
y <- (x ^ lambda - 1) / lambda
z <- rweibull(500,5,1000)
There is a problem when I put ${\rm qqplot(z,y)}$. I would be grateful if someone could help about that.

Here is some r code that qqplots