If you want to model this using probability theory, you can define a stochastic variable $X$ as follows:
$$ X = \left\{
\begin{array}{l l}
10 & \quad \text{with probability $p=\frac{1}{6}$}\\
-1 & \quad \text{with probability $1-p=\frac{5}{6}$}
\end{array} \right.$$
$X$ models the payoff of a trow of dice.
As Freddy said, this is an expectation problem, so let's compute the expectation of $X$:
$$ \mathbb{E}[X] = 10 \cdot p + (-1) \cdot (1-p) = \frac{10}{6} + \frac{-5}{6} = \frac{5}{6} $$
So, on average, you make on a single throw a profit of $\frac{5}{6}=0.83$ USD.
Now, the term "on the long run" is a bit ambiguous in the question. To stay abstract and general, assume we make $n$ throws and we denote the $i$-th throw as $X_i$. We can model the result of $n$ throws as:
$$S_n= \sum_{i=1}^n X_i$$
To know the expected value of your wealth after $n$ throws, you need to compute the expectation of the variable $S_n$:
$$ \mathbb{E} [S_n] = \mathbb{E} \left[ \sum_{i=1}^n X_i \right] = \sum_{i=1}^n \mathbb{E} \left[ X_i \right] = \sum_{i=1}^n \frac{5}{6} = n \cdot \frac{5}{6}$$
So, over the long run (assumed to be $n$ throws), you can expect to make $ n \cdot \frac{5}{6}$ USD on average.
This means that you could very well throw $n$ dices and get no 6, ending up with a wealth of $-n$.
But this is basic statistics, so I'll ask the question to be moved to Stats.SE.