Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Robodog646

2
Posts
A member registered Oct 16, 2021

Recent community posts

movie.color = "cyan";

var my_text = text("What is your name?");

my_text.color = "green";

my_text.font = "Comic Sans MS";

my_text.size = 30

my_text.y = 30;

var nameinput = textInput(0, 70);

var my_text1 = text("What is your address?");

my_text1.color = "green";

my_text1.font = "Comic Sans MS";

my_text1.size = 30;

my_text1.y = 120;

var addressinput = textInput(0, 160);

var smile = graphic("th-removebg-preview.png");

smile.x = 340;

smile.y = 180;

smile.scale = 0.6

var my_text2 = text("What is your age?");

my_text2.font = "Comic Sans MS";

my_text2.color = "green";

my_text2.size = 30;

my_text2.y = 210;

var ageinput = textInput(0, 250);

movie.whenMouseClicked = function() {

    my_text.message = "That is a nice name, " + nameinput.message;

  

  my_text1.message = "Sending Hitman at " + addressinput.message;

  

  my_text2.message = "So your age is " + ageinput.message;

};

This game is the definition of a masterpiece in game design. The first level is easy then from now on, the levels are ramping up in difficulty and the final level is a relaxing point.