isClone function

how can i code an object to know if it’s a clone or not?

You could attach a boolean in script “var isClone = false” and then every time you clone it just flip that boolean for that clone. Then you can check it. That would probably work. Unless clones are actually instances that share the same script. I’m not sure how it works.

2 Likes

I think that would work. thanks for the suggestion!