From f1d3a1e431ff457572153349b1e2434a0f263e14 Mon Sep 17 00:00:00 2001 From: kyojin Date: Mon, 18 Sep 2023 14:07:50 -0300 Subject: [PATCH] Fix mistake in roblox example --- pages/roblox/2-examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/roblox/2-examples.md b/pages/roblox/2-examples.md index eb83365..91de23b 100644 --- a/pages/roblox/2-examples.md +++ b/pages/roblox/2-examples.md @@ -26,8 +26,8 @@ for _, descendant in workspace:GetDescendants() do end -- Save the DataModel (game) back to the file that we read it from -file = roblox.serializePlace("myPlaceFile.rbxl") -fs.writeFile(file) +file = roblox.serializePlace(game) +fs.writeFile("myPlaceFile.rbxl", file) ``` ---