PPDB Setup Guide¶
PPDB (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 PPDB¶
You have three options to obtain PPDB:
Roblox Asset Library (Option 1, outdated) GitHub (Option 2) Wally (Option 3)
Step 2: Install PPDB (for Option 1 and Option 2)¶
- Place the
PaoPaoDataStorefolder inServerScriptServiceor your preferred server-side location. - Require the module in your scripts:
local PPDB = require(game.ServerScriptService.PaoPaoDataStore)
-- Or if you placed it elsewhere:
-- local PPDB = 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.)