RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"I want a function to save all objects in the Player.PlrStats folder"
local function saveObjects(player) local folder = player.PlrStats local objects = folder:GetChildren() for _, object in pairs(objects) do -- Save the object here end end