Help on making a quick survival game?

Hello!

I’m currently making a short and quick bomb survival game and the bombs spawn throughout this map!

I would want a quick round based system too, but also after intermission the game woulds start and would spawn in bombs that would explode when falling to the ground:

I also want to know how i could set up a random map picker after the game has ended!

I would like somebody to give me a tutorial on how i could set this up or atleast explain what i could do.

Cheers! :wink:

1 Like

You would want to make it spawn in random areas using Vector3.new(math.random(yourminpos,yournaxpos),youryvaluehere,math.random(yourminpos,yournaxpos)

If you need more stuff, just reply

3 Likes

Hello! And thank you for your reply, i have one question though, do you know how it could explode when it hits the ground and how you could make it spawn repeatedly?

1 Like

That is tricky, you can just time it, unless you wanna use raycasts which is kind of complicated

That? Just use for i = 1,howmanytimesyouregonnaspawnthebomvs do

1 Like

For the bombs falling I would use a Tween | Roblox Creator Documentation.

1 Like

Or just unanchor it, it’s as smooth as tweens

1 Like

You will just have to use a looping tween on your bombs and for their spawn location you could make bombs cover the entire map and time each one to fall. And for the explosion itself I’m not sure how to make that work, you could make an explosion tween with different stages but this would be complicated.

True I didn’t see this earlier.

2 Likes