interface SliderProps {
    Active: undefined | boolean | Binding<boolean>;
    AnchorPoint: undefined | Vector2 | Binding<Vector2>;
    Archivable: undefined | boolean | Binding<boolean>;
    AutoLocalize: undefined | boolean | Binding<boolean>;
    AutomaticSize:
        | undefined
        | AutomaticSize
        | "X"
        | "Y"
        | "None"
        | "XY"
        | Binding<AutomaticSize>;
    BackgroundColor: undefined | BrickColor<keyof BrickColorsByNumber> | Binding<BrickColor<keyof BrickColorsByNumber>>;
    BackgroundColor3: undefined | Color3 | Binding<Color3>;
    BackgroundTransparency: undefined | number | Binding<number>;
    BorderColor: undefined | BrickColor<keyof BrickColorsByNumber> | Binding<BrickColor<keyof BrickColorsByNumber>>;
    BorderColor3?: Color3 | Binding<Color3> & Color3;
    BorderMode:
        | undefined
        | BorderMode
        | "Outline"
        | "Middle"
        | "Inset"
        | Binding<BorderMode>;
    BorderRadius?: number;
    BorderSizePixel: undefined | number | Binding<number>;
    BorderThickness?: number;
    Center?: boolean;
    ClipsDescendants: undefined | boolean | Binding<boolean>;
    Component?: keyof IntrinsicElements;
    CornerProps?: InstanceProps<UICorner>;
    DefaultValue?: number;
    Direction?: FillDirection;
    DisableListLayout?: boolean;
    Draggable: undefined | boolean | Binding<boolean>;
    Gap?: number;
    HandleProps?: BoxProps<"textbutton">;
    HorizontalAlignment?: HorizontalAlignment;
    Interactable: undefined | boolean | Binding<boolean>;
    LayoutOrder: undefined | number | Binding<number>;
    ListLayoutProps?: InstanceProps<UIListLayout>;
    Localize: undefined | boolean | Binding<boolean>;
    NextSelectionDown: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>;
    NextSelectionLeft: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>;
    NextSelectionRight: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>;
    NextSelectionUp: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>;
    Padding?: number;
    PaddingProps?: InstanceProps<UIPadding>;
    PaddingX?: number;
    PaddingY?: number;
    Position: undefined | UDim2 | Binding<UDim2>;
    ProgressBarProps?: ProgressBarProps;
    Ref?: Ref<unknown>;
    RootLocalizationTable: LocalizationTable | Ref<LocalizationTable> | Binding<undefined | LocalizationTable>;
    Rotation: undefined | number | Binding<number>;
    Selectable: undefined | boolean | Binding<boolean>;
    SelectionBehaviorDown:
        | undefined
        | SelectionBehavior
        | "Stop"
        | "Escape"
        | Binding<SelectionBehavior>;
    SelectionBehaviorLeft:
        | undefined
        | SelectionBehavior
        | "Stop"
        | "Escape"
        | Binding<SelectionBehavior>;
    SelectionBehaviorRight:
        | undefined
        | SelectionBehavior
        | "Stop"
        | "Escape"
        | Binding<SelectionBehavior>;
    SelectionBehaviorUp:
        | undefined
        | SelectionBehavior
        | "Stop"
        | "Escape"
        | Binding<SelectionBehavior>;
    SelectionGroup: undefined | boolean | Binding<boolean>;
    SelectionImageObject: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>;
    SelectionOrder: undefined | number | Binding<number>;
    Size: undefined | UDim2 | Binding<UDim2>;
    SizeConstraint:
        | undefined
        | SizeConstraint
        | "RelativeXY"
        | "RelativeXX"
        | "RelativeYY"
        | Binding<SizeConstraint>;
    SliderChanged?: ((value: number) => unknown);
    StrokeProps?: InstanceProps<UIStroke>;
    Style:
        | undefined
        | FrameStyle
        | "Custom"
        | "ChatBlue"
        | "RobloxSquare"
        | "RobloxRound"
        | "ChatGreen"
        | "ChatRed"
        | "DropShadow"
        | Binding<FrameStyle>;
    Transparency: undefined | number | Binding<number>;
    Value?: number;
    VerticalAlignment?: VerticalAlignment;
    Visible: undefined | boolean | Binding<boolean>;
    ZIndex: undefined | number | Binding<number>;
}

Hierarchy (view full)

Properties

Active: undefined | boolean | Binding<boolean>
AnchorPoint: undefined | Vector2 | Binding<Vector2>
Archivable: undefined | boolean | Binding<boolean>
AutoLocalize: undefined | boolean | Binding<boolean>
AutomaticSize:
    | undefined
    | AutomaticSize
    | "X"
    | "Y"
    | "None"
    | "XY"
    | Binding<AutomaticSize>
BackgroundColor: undefined | BrickColor<keyof BrickColorsByNumber> | Binding<BrickColor<keyof BrickColorsByNumber>>
BackgroundColor3: undefined | Color3 | Binding<Color3>
BackgroundTransparency: undefined | number | Binding<number>
BorderColor: undefined | BrickColor<keyof BrickColorsByNumber> | Binding<BrickColor<keyof BrickColorsByNumber>>
BorderColor3?: Color3 | Binding<Color3> & Color3
BorderMode:
    | undefined
    | BorderMode
    | "Outline"
    | "Middle"
    | "Inset"
    | Binding<BorderMode>
BorderRadius?: number
BorderSizePixel: undefined | number | Binding<number>
BorderThickness?: number
Center?: boolean
ClipsDescendants: undefined | boolean | Binding<boolean>
Component?: keyof IntrinsicElements
CornerProps?: InstanceProps<UICorner>
DefaultValue?: number
Direction?: FillDirection
DisableListLayout?: boolean
Draggable: undefined | boolean | Binding<boolean>
Gap?: number
HandleProps?: BoxProps<"textbutton">
HorizontalAlignment?: HorizontalAlignment
Interactable: undefined | boolean | Binding<boolean>
LayoutOrder: undefined | number | Binding<number>
ListLayoutProps?: InstanceProps<UIListLayout>
Localize: undefined | boolean | Binding<boolean>
NextSelectionDown: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>
NextSelectionLeft: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>
NextSelectionRight: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>
NextSelectionUp: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>
Padding?: number
PaddingProps?: InstanceProps<UIPadding>
PaddingX?: number
PaddingY?: number
Position: undefined | UDim2 | Binding<UDim2>
ProgressBarProps?: ProgressBarProps
Ref?: Ref<unknown>
RootLocalizationTable: LocalizationTable | Ref<LocalizationTable> | Binding<undefined | LocalizationTable>
Rotation: undefined | number | Binding<number>
Selectable: undefined | boolean | Binding<boolean>
SelectionBehaviorDown:
    | undefined
    | SelectionBehavior
    | "Stop"
    | "Escape"
    | Binding<SelectionBehavior>
SelectionBehaviorLeft:
    | undefined
    | SelectionBehavior
    | "Stop"
    | "Escape"
    | Binding<SelectionBehavior>
SelectionBehaviorRight:
    | undefined
    | SelectionBehavior
    | "Stop"
    | "Escape"
    | Binding<SelectionBehavior>
SelectionBehaviorUp:
    | undefined
    | SelectionBehavior
    | "Stop"
    | "Escape"
    | Binding<SelectionBehavior>
SelectionGroup: undefined | boolean | Binding<boolean>
SelectionImageObject: GuiObject | Ref<GuiObject> | Binding<undefined | GuiObject>
SelectionOrder: undefined | number | Binding<number>
Size: undefined | UDim2 | Binding<UDim2>
SizeConstraint:
    | undefined
    | SizeConstraint
    | "RelativeXY"
    | "RelativeXX"
    | "RelativeYY"
    | Binding<SizeConstraint>
SliderChanged?: ((value: number) => unknown)
StrokeProps?: InstanceProps<UIStroke>
Style:
    | undefined
    | FrameStyle
    | "Custom"
    | "ChatBlue"
    | "RobloxSquare"
    | "RobloxRound"
    | "ChatGreen"
    | "ChatRed"
    | "DropShadow"
    | Binding<FrameStyle>
Transparency: undefined | number | Binding<number>
Value?: number
VerticalAlignment?: VerticalAlignment
Visible: undefined | boolean | Binding<boolean>
ZIndex: undefined | number | Binding<number>