Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make models clone if it's not in specific location?

Asked by 10 years ago
01local regentime = 180
02 
03local model = script.parent
04 
05if 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
16end

1 answer

Log in to vote
0
Answered by 10 years ago

you could easily just clone an object by clicking on the model then pressing ctrl+c then ctrl+v.

0
No, I want to make it so while the game is going, I can drive my vehicle and 3 minutes later I will return and find it has regenerated. I'm not talking about studio. Ninjaxdagger 0 — 10y
Ad

Answer this question