Insource Systems
  • Intro
  • Change Log
  • API Reference
  • Insource Bot
    • Getting Started
    • Commands
      • Settings
      • Moderation
      • Info
      • Account
      • InStore
  • InStore
    • Getting Started
      • Linking Your Account
      • Create Your Store
      • Create a Product
    • Framework
      • RemoteEvent
        • Alert
        • LaunchProduct
      • RemoteFunction
        • GetCurrentUser
        • GetProductById
        • GetProducts
        • RequestPromptPurchase
      • Resources
        • Configuration
        • Product
        • Theme
        • User
      • Utils
        • TeleportToAccount
        • TimeStringToEpoch
    • API Resources
      • License
      • Product
      • Store
  • API Resources
    • User
Powered by GitBook
On this page

Was this helpful?

  1. InStore
  2. Framework
  3. Resources

Configuration

The configuration for the InStore framework.

Configuration Object

Configuration Structure

Field
Type
Description

AuthToken

string

the store's authorization token provided in the setup file

Theme

string | ThemeModule

a string reference to an official InStore theme, or a require reference to a non-published theme

Example Configuration

game.ServerStorage.InStoreConfig

return {
  AuthToken = 'your-auth-token',
  Theme = 'default'
}
return {
  AuthToken = 'your-auth-token',
  Theme = require(12345678)
}
PreviousResourcesNextProduct

Last updated 1 year ago

Was this helpful?