Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local pastebinCode = "TMTmFvyw"
- local filename = "main.lua" -- change if your script has a different name
- if fs.exists(filename) then fs.delete(filename) end
- local ok, err = pcall(function()
- shell.run("pastebin", "get", pastebinCode, filename)
- end)
- if not ok or not fs.exists(filename) then
- print("Failed to download script:", err)
- return
- end
- shell.run(filename)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement