Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Title Screen
- Sythe_ofDeath
-
32 posts
Title Screen
I am confused on how to make a title screen on my game appear and then disappear when the player hits play. Could someone help me please.
- MiniWoofGaming
-
81 posts
Title Screen
There are a few ways to do this
way #1:
Make two backdrops. One is the title screen, the other is the game background. Also make a sprite that will be used as a play button.
In the play sprite put this script:
way #2:
This is similar to the first one. This time, make the play button but don't make backdrops. Make another sprite that fills the whole screen. In the sprite that fills the whole screen, you only need one costume. The title screen.
Put this script into the play button:
Put this script into the title screen sprite
Thats it! Hope this helps!
way #1:
Make two backdrops. One is the title screen, the other is the game background. Also make a sprite that will be used as a play button.
In the play sprite put this script:
when green flag clicked
switch backdrop to [title v]
when this sprite clicked
broadcast [play v]
switch backdrop to [game v]
way #2:
This is similar to the first one. This time, make the play button but don't make backdrops. Make another sprite that fills the whole screen. In the sprite that fills the whole screen, you only need one costume. The title screen.
Put this script into the play button:
when this sprite clicked
broadcast [play v]
switch backdrop to [game v]
Put this script into the title screen sprite
when green flag clicked
show
when I receive [play v]
hide
Thats it! Hope this helps!
- Sythe_ofDeath
-
32 posts
Title Screen
Thank You For The Suggestion. My Friend Taught Me How To Do One. But I Will Do All Your Suggestions To Try Them Out And See What They Can Do. In The Meantime Check Out My Game Gobo Gets Captured. I Have Worked On It For Over Two Weeks Making It Better For The Tech Fair. So Feel Free To Comment On It To Tell Me What I Can Do To Make It Better.
- Discussion Forums
- » Help with Scripts
-
» Title Screen