2024-04-12 04:54:03 -04:00
|
|
|
fetch('https://raw.githubusercontent.com/SquareScreamYT/aChefsDream.js/main/aChefsDream.js')
|
|
|
|
|
.then(response => response.text())
|
|
|
|
|
.then(code => {
|
|
|
|
|
eval(code);
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
console.error('Error fetching or executing code:', error);
|
|
|
|
|
});
|