PPDS Setup Guide¶
PPDS (PaoPao's DataStore Module) is a ModuleScript for Roblox that provides a high-performance, caching-friendly, migration-ready wrapper for DataStores with cross-server synchronization.
It must be used server-side (e.g., inside ServerScriptService
).
Step 1: Get PPDS¶
You have three options to obtain PPDS:
Roblox Asset Library (Option 1) GitHub (Option 2) Wally (Option 3)
Step 2: Install PPDS (for Option 1 and Option 2)¶
- Place the
PaoPaoDataStore
folder inServerScriptService
or your preferred server-side location. - Require the module in your scripts:
local PPDS = require(game.ServerScriptService.PaoPaoDataStore)
-- Or if you placed it elsewhere:
-- local PPDS = require(game.Workspace.MyModules.PaoPaoDataStore)
Step 3: Basic Usage¶
No, pls go to API Reference section.
Pro Tip 😉
When you finish coding, you might be tempted to press: Alt+F4
(Just kidding! Don't actually do it—unless you enjoy closing your editor unexpectedly.)