minecraftwarlock

Computercraft On-screen Keyboard Uninstaller

Apr 4th, 2015
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. print("Are you sure you want to uninstall Keyboard for monitors (Y/N)")
  2. if read():lower() == "y" then
  3.     fs.delete("Key")
  4.     print("Successfully uninstalled")
  5. else
  6.     print("Uninstall canceled")
  7. end
Advertisement
Add Comment
Please, Sign In to add comment