Client Exports#
This section provides all available client exports for the script. These functions allow you to interact directly with the system from the client side, enabling custom features, UI interactions, and integrations with other resources. Each export includes a short description and usage example for easy implementation.
ToggleHud
The ToggleHud export from qs-interface allows you to toggle the visibility of the HUD (Heads-Up Display) for a player. This can be useful for hiding or showing interface elements depending on the situation or context in the game.
local hudVisible = true -- Set to true to show, false to hide
exports['qs-interface']:ToggleHud(hudVisible)In this example, setting to true will display the HUD, while setting it to false will hide it. You can change the value dynamically depending on the context or player actions. This export allows you to control when the HUD is visible or not, giving you flexibility in managing the player's interface experience in your scripts.



