Hi, @ushj!
Thanks for posting your question!
Slider WD itself does not have a scrollable layer. However, since Text layer accepts HTML code, you can style it to have a scrollbar.
For instance, placing the following code adds a vertical scrollbar:
<div align="center" style="height: 60px;overflow-y:scroll;"> Slider plugin is a responsive, intuitive multi-layer slider. It allows adding elegant and sleek sliders to your posts, pages, as well as for the theme header or another custom location using PHP function. The plugin has a large number of transition effects, supports both videos (YouTube, Vimeo) and images of various file formats.</div>
This part of this code creates the scrolling:
style="height: 60px;overflow-y:scroll;"
Cheers!