πŸ“¦ Scripts
🎁 Akilla Donator
Configuration
Theme & UI

🎨 Theme & UI

Customize the look and feel of your donator store.

Theme Configuration

Config.Theme = {
    preset = 'purple',
    currencyIcon = 'fa-coins',
    currencyName = 'Coins',
    storeTitle = 'Premium Store',
    storeSubtitle = 'Exclusive items for our supporters',
}

Color Presets

PresetColorHex Code
'purple'🟣 Purple#8b5cf6
'blue'πŸ”΅ Blue#3b82f6
'green'🟒 Green#22c55e
'red'πŸ”΄ Red#ef4444
'orange'🟠 Orange#f97316
'pink'🩷 Pink#ec4899
'cyan'🩡 Cyan#06b6d4

Currency Settings

Currency Icon

Available icons (FontAwesome):

  • 'fa-coins' - πŸͺ™ Coins (default)
  • 'fa-gem' - πŸ’Ž Gem
  • 'fa-star' - ⭐ Star
  • 'fa-dollar-sign' - πŸ’΅ Dollar

You can also use emoji: 'πŸ’Ž' or 'πŸͺ™'

Currency Name

Examples: 'Coins', 'Gems', 'Credits', 'Points', 'Tokens'

Store Branding

storeTitle = 'Premium Store',
storeSubtitle = 'Exclusive items for our supporters',

Example Configurations

Blue Gaming Theme

Config.Theme = {
    preset = 'blue',
    currencyIcon = 'fa-gem',
    currencyName = 'Gems',
    storeTitle = 'VIP Store',
    storeSubtitle = 'Exclusive items for VIP members',
}

Red Premium Theme

Config.Theme = {
    preset = 'red',
    currencyIcon = 'fa-star',
    currencyName = 'Stars',
    storeTitle = 'Premium Shop',
    storeSubtitle = 'Only the best for our supporters',
}