Example
-- Note: This is just a snippet
Window:Slider("Slider", 5, 25, 15, function(Value, Func)
print("Slider:", Value)
end)
-- Note: This is just a snippet
Window:Slider({
Text = "Slider",
Max = 100,
Callback = function(Value)
print(Value)
end
})
Last updated