Components
Slider

Slider

Allows the user to select a value (from 0 to 1).

Properties

NameTypeDescription
WidthFusion.UsedAs<UDim>?The width of the slider. (Defaults to UDim.new(1, 0)).
ProgressPercentFusion.UsedAs<number>?The progress (value between 0 and 1) of the slider. (Defaults to 0).
StepSizeFusion.UsedAs<number>?The amount that is incremented when the user is dragging the slider. (Defaults to 1).

Example

Scope:Slider {
  Width = UDim.new(1, 0),
  ProgressPercent = .75
}