I don't know how to do this
here's the script:
1 | local cloned = item:Clone() |
2 | local cloned 2 = item:Clone() |
3 | ---Here's were it should be |
4 |
5 |
6 | end |
7 | end ) |
To change the parent you need to set it by saying cloned.Parent =
and some place. To change the position Vector3.new
should work.
Script:
01 | local cloned = item:Clone() |
02 | local cloned 2 = item:Clone() |
03 |
04 | cloned.Parent = game. --where u want it |
05 | cloned 2. Parent = game. --where u want it |
06 |
07 | cloned.Position = Vector 3. new(x, y, z) --position |
08 | cloned 2. Position = Vector 3. new(x, y, z) --position |
09 |
10 |
11 | end |
12 | end ) |
1 | cloned 2. Parent = *parent here* |
2 | cloned 2. Position = Vector 3. new(pos x, pos y, pos z) |