Fix mistake in roblox example

This commit is contained in:
kyojin 2023-09-18 14:07:50 -03:00
parent d910b08c06
commit f1d3a1e431

View file

@ -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)
```
---