Currently I am able to get and object to spawn off the screen at a random x and y and then have it move toward a y position that will make it become on the screen. what I'm trying to achieve in addition to that is spawning multiple objects at the same time in random x and y values but have it spawn between lets say y 100 and y 300 but randomly in-between those values.
Well you are almost there because you are using random for the x, it's create object at y = random(100,300)
Develop games in your browser. Powerful, performant & highly capable.
That's just what I was looking for thankyou I knew I was close I just couldn't figure out the right orientation for the code.