term.clear()
textutils.slowPrint("-----------",10)
term.clear()
print("Dear user, welcome to the installation process of makerOS!")
sleep(5)
print("You will now bw guided trough the installation process of your brand new makerOS release!")
sleep(5)
term.clear()
os.loadAPI("/disk/APIS/menus")
menus.inMenu()
menus.selection()
local input = read()
if input == "1" then
fs.copy("/disk/OS/mOSsup","startup")
fs.copy("/disk/OS/mOS","/mOS/OS")
fs.copy("/APIS/mOSapi","/APIS/mOSapi")
print("please remove disk and reboot computer!")
elseif input == "2" then
print("Installation cancelled by user,rebooting")
sleep(4)
os.reboot()
else
print("Invalid selection, please try again")
sleep(4)
os.reboot()
end
somehow on line 16 this says that copy failed, whats wrong(the filepaths are not wrong i checked)