NeoHotbar
Functions
Start
NeoHotbar:
Start
(
) →
(
)
Initializes NeoHotbar and deploys its UI with default settings.
SetEnabled
NeoHotbar:
SetEnabled
(
Enabled:
boolean
--
Whether or not to enable NeoHotbar.
) →
(
)
Sets whether NeoHotbar or not is enabled. Disabling hides the hotbar and turns off keybinds.
SetToolTipsEnabled
NeoHotbar:
SetToolTipsEnabled
(
Enabled:
boolean
--
Whether or not to enable.
) →
(
)
Sets whether or not ToolTips are enabled.
SetManagementEnabled
NeoHotbar:
SetManagementEnabled
(
Enabled:
boolean
--
Whether or not to enable.
) →
(
)
Sets whether or not players can rearrange the tools in their hotbar.
SetContextMenuEnabled
NeoHotbar:
SetContextMenuEnabled
(
Enabled:
boolean
--
Whether or not to enable.
) →
(
)
Sets whether or not players can open the context menu. (the one that appears when you right click on a tool)
OverrideGui
NeoHotbar:
OverrideGui
(
DefaultEffectsEnabled:
boolean?
--
Whether or not to enable NeoHotbar's built-in UI effects. Not compatible with ultra-customized themes.
) →
(
)
Overrides NeoHotbar's UI with a new set of Gui objects.
ResetGui
NeoHotbar:
ResetGui
(
) →
(
)
Reset NeoHotbar's UI back to the default.
AddCustomButton
NeoHotbar:
AddCustomButton
(
ButtonName:
string
,
--
The name/identifier of the button to be added.
IconImage:
string
,
--
The image URI to be used on the button icon. E.g. "rbxassetid://".
Callback:
any
,
--
The function called upon button activation (click/touch/etc).
) →
(
)
Adds a custom button to the hotbar, prepended to the left-most side.
RemoveCustomButton
NeoHotbar:
RemoveCustomButton
(
ButtonName:
string
--
The name of the button to be removed.
) →
(
)
Removes the specified custom button from the hotbar.
FindCustomButton
NeoHotbar:
FindCustomButton
(
ButtonName:
string
--
The name of the button to be searched for.
) →
(
)
Returns the specified custom button if found.