Advertisement
LuaGamer

123

Aug 16th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local component = require("component")
  2. local gpu = component.gpu
  3. local function qwerty()
  4. forms.stop()
  5. gpu.fill(1, 1, w, h, " ")
  6. forms.run(Form1)
  7. end
  8. forms=require("forms")
  9. Form1=forms.addForm()
  10. Form1.border =2
  11. Button1=Form1:addButton(10,5,"Not",qwerty)
  12. forms.run(Form1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement