Files
Yuri-VN/game/script.rpy

22 lines
440 B
Plaintext

# The script of the game goes in this file.
# Declare characters used by this game. The color argument colorizes the
# name of the character.
define s = Character("Skylar")
# The game starts here.
label start:
scene bg room
show Skylar bunny:
zoom 0.35 xalign 0.5 yalign 1.0
s "You've created a new Ren'Py game."
s "Once you add a story, pictures, and music, you can release it to the world!"
return