Fix mistake in roblox example (#7)

This commit is contained in:
CaptainAlbator 2023-10-21 07:28:51 -03:00 committed by GitHub
parent 95f49ccefa
commit 3366021ac9
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

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