To get started
You have chosen to use Dict Plus. Now what? You must require. Requiring basically enables the module for use. Allowing you to use its methods.
First off you must install the module from this page. After you have aquired your .rbxm
file you can now use it!
Place the .rbxm file in a sutibale service in your game. Recommended services include:
* ReplicatedStorage
* ServerStorage
Essentially you want to place it in a place that is accessible by both client and server for ease of use.
When you have the module in your game. You can do this to require / enable it.
local DictPlus = require(game.ServerScriptService.MainModule)
-- Great! You now have access to the module and its methods!
Danger
You might get an error if you try require the module from a place that is not accessible from where you are calling it. For example, calling the module from client when its in a server Service.
You can now refer to the API. Which will help you get started with Dict Plus!