Advertisement
Guest User

savetodevice.lua

a guest
Feb 4th, 2024
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. local arg = { ... }
  2.  
  3. if arg[2] ~= nil then
  4.     local file = fs.open("songs/" .. arg[1] .. ".txt", "w")
  5.  
  6.     file.write(arg[2])
  7.  
  8.     print("Sucessfully wrote song to device. Play with 'play \"" .. arg[1] .. "\"'.")
  9.  
  10.     file.close()
  11. else
  12.     print("Invalid syntax!")
  13.     print("Correct syntax: savetodevice <song name> <song url>")
  14. end
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement