How would I make a spawn menu?

how would I make a simple spawn menu or at least a way to spawn multiple objects at different times? preferably with a mouse click. (I’m a really bad coder)

Hi @Main_Dane ! You can use buttons that when clicked, clone an entity.

The way I clone entities is like this

var newentity = someEntity.clone() this.app.root.addChild(newentity)
After that you can set new entity’s position, scale, rotation, all that stuff.

2 Likes

thanks i’ll try it out!