Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to create a gamemode selection screen? [closed]

Asked by 6 years ago

Hi Im working on a new game and i need to make a gamemode selection panel like in murder Mystery 2 https://www.roblox.com/games/142823291/Murder-Mystery-2 once you click on one of these buttons it would check for any open servers and send you to one, if their are not any it will create one and send you to it, how would i go about doing this Thanks

Closed as Not Constructive by creeperhunter76, cabbler, gitrog, and RubenKan

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
3
Answered by 6 years ago
Edited 6 years ago

You did NO research by the looks of this because this is not hard to find. Also, ask more specific questions, you can't ask us to tell you how to make a whole teleportation menu.

Some useful wiki links about teleportservice to get you started http://wiki.roblox.com/index.php?title=API:Class/TeleportService http://wiki.roblox.com/index.php?title=API:Class/TeleportService/Teleport

These are for teleporting the player to another place inside your game, notice: It will automaticly create one if it can't find one, that's nothing you should do. Same with checking for servers, that's also nothing you have to do!

To test for a button click in case you don't know, note: Needs to be a local script inside the button

button = script.Parent

button.MouseButton1Click:connect(function()
    -- code
end)

These are also very good links

http://wiki.roblox.com/index.php?title=Creating_a_Custom_Loading_Screen http://wiki.roblox.com/index.php?title=Teleporting_Between_Places

So 1) Create your menu

2) Read the links I have included here

3) Make another place if you haven't made one yet

4) Find the ID and get the teleporting service to work

5) Bug fixing (boring but neccesary! :P)

6) optional: Improve your gui, you should do this last because the scripting is more important for this

If you still have any questions, please comment them, and please mark this as best answer.

Ad