01 | local regentime = 180 |
02 |
03 | local model = script.parent |
04 |
05 | if model.Bart.position ~ = ( 55.5 , 312.894 , 255.4 ) then |
06 | -- Bart is a brick inside of the model |
07 | local poop = model:clone() |
08 |
09 | while true do |
10 | wait(regentime) |
11 |
12 | model = poop:clone() |
13 | model.parent = game.Workspace |
14 | model:makeJoints() |
15 | end |
16 | end |
you could easily just clone an object by clicking on the model then pressing ctrl+c then ctrl+v.