put these 2 lines of code in an object and press play
this.x += 10
this.clone()
I think it has something to do with lag
That is because you are doing bad programming practices. You are cloning the same object over and over recursively until your web browser’s tab can’t support it anymore. Your code is creating a clone, then the clone another clone, then the another clone, and so on…
yeah thats what I mean