Guest User

Untitled

a guest
Apr 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. amarillo = new.color(255,255,0)
  2. sound.loop("pausa.mp3")
  3. fondo = ("fondo.png")
  4. a = ""
  5. while true do
  6.     controls.read()
  7.         screen.print(40,40,"Hola",amarillo)
  8.         if controls.press("cross") then a=a.."Adios" end
  9.         if controls.circle() and controls.r() then dofile("script.lua") end
  10.         screen.print(150,200,"By: jajasuperman",amarillo)
  11.     fondo:blit(0,0)
  12.     screen.flip()
  13. end
Add Comment
Please, Sign In to add comment