> For the complete documentation index, see [llms.txt](https://uis.gitbook.io/turtle-library/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://uis.gitbook.io/turtle-library/api-reference/slider/example.md).

# Example

```lua
-- Note: This is just a snippet
Window:Slider("Slider", 5, 25, 15, function(Value, Func)
    print("Slider:", Value)
end)
```

```lua
-- Note: This is just a snippet
Window:Slider({
    Text = "Slider",
    Max = 100,
    Callback = function(Value)
        print(Value)
    end
})
```
