:SliderInt

type SliderInt = {
	Value: number?,
	Format: string?,
	Label: string?,
	Minimum: number?,
	Maximum: number?,
	Disabled: boolean?,
	NoGrab: boolean?,
	NoClick: boolean?, //-- Drag only if true
	NoAnimation: boolean?,
	Callback: (number) -> any?,
	ReadOnly: boolean?,
	SetDisabled: (SliderInt, Disabled: boolean) -> Slider,
	SetValue: (Slider, Value: number, IsSlider: boolean?) -> Slider?
}

Example usage:

:SliderInt({
    Label = "Slider",
    Value = 5,
    Minimum = 1,
    Maximum = 32,
})

Theme colors:

Tag
Affects

FrameBg

Background color

FrameBgTransparency

Background transparency

Text

Text color

TextFont

Text font

TextSize

Text font size

Last updated