mirror of
https://github.com/lune-org/lune.git
synced 2024-12-13 13:30:38 +00:00
15 lines
388 B
Lua
15 lines
388 B
Lua
local roblox = require("@lune/roblox") :: any
|
|
local Instance = roblox.Instance
|
|
|
|
local game = Instance.new("DataModel")
|
|
|
|
local workspace = game:GetService("Workspace")
|
|
|
|
local model = Instance.new("Model")
|
|
local part = Instance.new("Part")
|
|
|
|
part.Parent = model
|
|
model.Parent = workspace
|
|
|
|
roblox.writePlaceFile("bin/temp-place.rbxl", game)
|
|
roblox.writePlaceFile("bin/temp-place.rbxlx", game)
|