mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
8 lines
230 B
Lua
8 lines
230 B
Lua
local pluginPath, placePath = ...
|
|
|
|
local plugin = remodel.readModelFile(pluginPath)[1]
|
|
local place = remodel.readPlaceFile(placePath)
|
|
|
|
plugin.Parent = place:GetService("ReplicatedStorage")
|
|
|
|
remodel.writePlaceFile(place, placePath) |