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

How do i make a game-intro-title screen? [closed]

Asked by 6 years ago

i wanna make a title screen with music playing and when someone presses "load game"/"new game" the music will fade out and the screen will go black and then the person will get teleported to another place.

Closed as Not Constructive by PyccknnXakep, abnotaddable, and hiimgoodpack

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
0
Answered by 6 years ago
Edited 6 years ago

For the screen, use a GUI frame with size {1, 0}, {1, 40} and position {0, 0}, {0, -40} to cover the whole screen.

Then use GUI buttons (text or image buttons it's up to you) which has a script inside with something like this:

local button = script.Parent

button:MouseButton1Down:connect(function() -- if the player presses the button
    -- fade screen
    -- teleport player
end)
Ad