As @sclv says, there's no way to directly convert from the free monad of a functor back to the functor alone in the general case. Why not?
If you recall the "free structures" page you linked to, it first talks about free monoids, before extending the same concept to talk about monads. The free monoid for a type is a list; an equivalent "convert back" function in that case would be turning a free monoid, with type [a], to a single element, with type a. This is obviously unworkable in two different ways: If the list is empty, it can't return anything; and if the list has multiple elements, it has to discard all but one.
The construction of a free monad is similar, and presents a similar problem. A free monad is defined by functor composition, which is just like regular function composition except on the type constructor. We can't write functor composition directly in Haskell, but just like f . g means \x -> f (g x), we can nest application of the type constructor. For example, composing Maybe with itself gives a type like Maybe (Maybe a).
So, in other words, where a plain functor describes a parameterized structure of some sort, the free monad of that functor describes that structure nested within itself to arbitrary depth.
So if we look at Free [] Int, it could be a single Int, a list of Ints, a list of lists of Ints, and so on.
So, just like we can only turn a free monoid (list) directly into a single item if the list is exactly one item long, we can only convert a free monad directly to the underlying functor if the nesting is exactly one layer deep.
If you're interested in general ways to take things back out of a free monad, you'll need to go a bit further--some sort of recursive fold-like operation to collapse the structure.
In the specific case of the free monad for lists, there's one obvious approach--recursively flatten the structure by stripping out the Roll and Return constructors and concatenating lists as you go. It may also be enlightening to think about why this approach works in this case, and how it relates to the structure of lists.