Skip to main content

Booting The Library

There are many methods to boot the library. We will be doing the most simple method of fetching via HttpGet.

Via HttpGet

This method will download the loader module from our site, ensuring you have the latest release and most recent icons.

local NebulaIcons = loadstring(game:HttpGet("https://raw.nebulasoftworks.xyz/nebula-icon-library-loader"))()

Manual

Warning

This Method is very unstable on bundlers and Rojo projects (despite only working on them)
But if it works, it will be faster than dynamic loading since it is already included in the source and not fetched via web.

  1. Head to a release on the Github Repository.
  2. Download the Loader.luau in the master branch.
  3. Place the downloaded module into your project (eg. under packages\)

You may also choose to download the Icon Modules as well, however you will need to modify the loader to fetch from your local files.