How to re-create this!

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I want to remake this to make a modded version of a different game that is similar: https://www.roblox.com/games/5193039238/Test?refPageId=7ed21381-2651-47fc-9b62-04af11621302

  2. What is the issue? Include screenshots / videos if possible!
    I have no Idea where to start. Anywhere I look I cant find anything to help me. 1 big problem I have is teleporting players to the track. Who do I teleport only 1 player to each “Teleport Brick”?

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I have looked on the dev hub and found nothing. I have asked but nobody will help me.

  4. What mainly?
    I really would like someone to help with the whole thing step by step, but If someone could just help me with the script that teleports them to the track I would be very grateful.

(SORRY IF SOMETHING IS WRoNG IM NEw HERE)

1 Like

Unfortunately, you are going to need to hire someone to have them help you step by step. I can give some basic recommendations, though.

  1. Model all of the basics like cars, stands, etc. or use free models (which I do not recommend)
  2. The particular game that you linked appears to render the maps based on which ever was voted on so you would need to put the maps into ReplicatedStorage and clone them into the Workspace.
  3. Teleporting Players to various areas can be done rather easily using the TeleportService built into Roblox. I attached a model below to show how to do so:
    https://www.roblox.com/library/6072446297/TeleportService

Is there anything else that you would like more specific help with?

Hmm I already model the cars, and can build, I know about the maps, only thing that stumps me is teleporting a single player to each of the 12 blocks Im going to have. for say

teleport player 1 to block a
teleport player 2 to block b
teleport player 3 to block c

TWO PLAYERS MUSNT TELEPORT TO THE SAME BLOCK. only 1 player teleports to 1 block. this should be a random block but 1 block per a player… How would I do this?

You can have a bool value that is set to true whenever someone teleports to the block. then if the bool value is true noone can teleport there anymore.