scriptpastebin.com
by RFour · Aug 6, 2026 ·javascript
Basically it uhh bypass the steps stuff from scriptpastebins.com, scriptpastebins is the uhh the checkpoint stuff and uhh the scriptpastebin is the main site and uhh, this sounds very useless, but it's pretty usefull for me :p
Ad-LinkBypassBypasserRobloxScript
scriptpastebin.jsjavascript
1const axios = require('axios');
2const client = axios.create({
3 baseURL: 'https://scriptpastebins.com',
4 headers: { 'User-Agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Mobile Safari/537.36' }
5});
6
7client.interceptors.response.use(res => {
8 const cookies = res.headers['set-cookie'];
9 if (cookies && cookies.length) {
10 client.defaults.headers.common['Cookie'] = cookies.map(c => c.split(';')[0]).join('; ');
11 }
12 return res;
13});
14
15function getScript(url) {
16 client.get(url, { headers: { 'Referer': url } })
17 .then(() => {
18 const withParam = url.includes('?') ? url + '&r=1' : url + '?r=1';
19 return client.get(withParam, { headers: { 'Referer': url } });
20 })
21 .then(res => {
22 let html = res.data;
23 html = html.replace(/"/g, '"').replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/'/g, "'");
24 const containers = [
25 { open: '<pre', close: '</pre>' },
26 { open: '<code', close: '</code>' },
27 { open: '<textarea', close: '</textarea>' }
28 ];
29 for (const c of containers) {
30 const start = html.indexOf(c.open);
31 if (start !== -1) {
32 const end = html.indexOf(c.close, start);
33 if (end !== -1) {
34 const result = html.substring(html.indexOf('>', start) + 1, end).trim();
35 if (result && result.length > 10) {
36 console.log(result);
37 return;
38 }
39 }
40 }
41 }
42 console.log('No script found');
43 })
44 .catch(err => console.error('Error:', err.message));
45}
46
47getScript('https://scriptpastebins.com/black-v-kaitun-hub-blox-fruits-script/');