Guest User

Untitled

a guest
Sep 3rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var x, y;
  2. for (x=0; x<room_width; x+=1)
  3. {
  4.     for (y=0; y<room_height; y+=1)
  5.     {
  6.         if random(2) == 1
  7.         {
  8.             instance_create(x, y, Block);
  9.         }
  10.     }
  11. }
Add Comment
Please, Sign In to add comment