├── .github └── workflows │ └── main.yml ├── Examples ├── DeveloperProductExample.server.lua └── PlayerProfileExample.server.lua ├── LICENSE ├── ProfileService.lua ├── ProfileTest.server.lua ├── README.md ├── default.project.json ├── docs ├── api.md ├── images │ ├── DataStoreWarning.png │ ├── Toolbox1.png │ ├── Toolbox2.png │ ├── Toolbox3.png │ └── favicon.png ├── index.md ├── troubleshooting.md └── tutorial │ ├── basic_usage.md │ ├── developer_products.md │ └── settingup.md ├── example.project.json └── mkdocs.yml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /Examples/DeveloperProductExample.server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/Examples/DeveloperProductExample.server.lua -------------------------------------------------------------------------------- /Examples/PlayerProfileExample.server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/Examples/PlayerProfileExample.server.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/LICENSE -------------------------------------------------------------------------------- /ProfileService.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/ProfileService.lua -------------------------------------------------------------------------------- /ProfileTest.server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/ProfileTest.server.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/README.md -------------------------------------------------------------------------------- /default.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/default.project.json -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/images/DataStoreWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/images/DataStoreWarning.png -------------------------------------------------------------------------------- /docs/images/Toolbox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/images/Toolbox1.png -------------------------------------------------------------------------------- /docs/images/Toolbox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/images/Toolbox2.png -------------------------------------------------------------------------------- /docs/images/Toolbox3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/images/Toolbox3.png -------------------------------------------------------------------------------- /docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/images/favicon.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/tutorial/basic_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/tutorial/basic_usage.md -------------------------------------------------------------------------------- /docs/tutorial/developer_products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/tutorial/developer_products.md -------------------------------------------------------------------------------- /docs/tutorial/settingup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/docs/tutorial/settingup.md -------------------------------------------------------------------------------- /example.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/example.project.json -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadStudioRoblox/ProfileService/HEAD/mkdocs.yml --------------------------------------------------------------------------------