Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- === Configuration ===
- -- Remplace par ton ID Pastebin
- local pastebinID = "xxxxxx"
- -- === Logique principale ===
- if fs.exists("startup") then
- fs.delete("startup")
- print("Fichier 'startup' supprime.")
- end
- print("Telechargement depuis Pastebin...")
- local success = shell.run("pastebin get " .. pastebinID .. " startup")
- if success then
- print("Fichier 'startup' installe avec succes.")
- else
- print("Echec du telechargement depuis Pastebin.")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement