mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
12 lines
300 B
Lua
12 lines
300 B
Lua
local pluginPath, testezPath = ...
|
|
|
|
local plugin = remodel.readModelFile(pluginPath)[1]
|
|
local testez = remodel.readModelFile(testezPath)[1]
|
|
|
|
local marker = Instance.new("Folder")
|
|
marker.Name = "ROJO_DEV_BUILD"
|
|
marker.Parent = plugin
|
|
|
|
testez.Parent = plugin
|
|
|
|
remodel.writeModelFile(plugin, pluginPath) |