#how do i copy rigs/target bricks(im making ai follow new player on join)
1 messages · Page 1 of 1 (latest)
there's stuff inside them
so instance.new won't work
how do i make new one?
and copying the previous items inside
Instance:Clone() to copy instances and descendants, and then set parent by Instance.Parent = instance
new line? or just
Instance.clone("target").Parent
** You are now Level 8! **
I mean you can but you'll lose reference to the cloned instance
local instance <- reference = Instance:Clone()
instance.Parent = instance
Not Instance.clone()
target:Clone()
Where is target
under the workspace