0% found this document useful (0 votes)
31 views2 pages

Domidios Scrip

This document is a script for creating a widget interface for a gaming tool called 'PANEL AIMBOT V2' on iOS. It includes various buttons for functionalities like 'ANTIBAN', 'ANTIBLACKLIZ', 'HEADTRICK', and 'AIMBOT 50%', as well as a button to open the game Free Fire and a link to a WhatsApp group. The widget features a customized background and text styling to enhance user interaction.

Uploaded by

PatotasPerez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views2 pages

Domidios Scrip

This document is a script for creating a widget interface for a gaming tool called 'PANEL AIMBOT V2' on iOS. It includes various buttons for functionalities like 'ANTIBAN', 'ANTIBLACKLIZ', 'HEADTRICK', and 'AIMBOT 50%', as well as a button to open the game Free Fire and a link to a WhatsApp group. The widget features a customized background and text styling to enhance user interaction.

Uploaded by

PatotasPerez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

// Variables used by Scriptable.

// These must be at the very top of the file. Do not edit.


// icon-color: blue; icon-glyph: rss;
async function argsPrompt(message, isSecure) {
let prompt = new Alert();
prompt.message = message;
prompt.addTextField(isSecure ? '' : 'PANEL AIMBOT V2 | ios domidios', '');
prompt.addAction('OK');
await prompt.presentAlert();
return prompt.textFieldValue(0);
}

let widget = new ListWidget();


let backgroundImage = await
loadImage('https://www.creativefabrica.com/wp-content/uploads/2021/09/15/Abstract-
silver-line-on-black-background-Graphics-17322331-1.jpg');
widget.backgroundImage = backgroundImage;
widget.setPadding(0, 0, 0, 0);

let title = widget.addText('PANEL AIMBOT V2 /ios Domidios');


title.font = Font.boldSystemFont(17);
title.textColor = Color.red();
title.centerAlignText();

widget.addSpacer();

let stack1 = widget.addStack();


stack1.layoutHorizontally();
stack1.addSpacer();

let mofscrButton = stack1.addText('ANTIBAN');


mofscrButton.textColor = Color.red();
mofscrButton.url = URLScheme.forRunningScript();

stack1.addSpacer(60); // Espaciador entre botones

let frigameButton = stack1.addText('ANTIBLACKLIZ');


frigameButton.textColor = Color.red();
frigameButton.url = URLScheme.forRunningScript();

stack1.addSpacer();

widget.addSpacer();

let stack2 = widget.addStack();


stack2.layoutHorizontally();
stack2.addSpacer();

let powerxButton = stack2.addText('HEADTRICK');


powerxButton.textColor = Color.red();
powerxButton.url = URLScheme.forRunningScript();

stack2.addSpacer(60); // Espaciador entre botones

let fixlagButton = stack2.addText('AIMBOT 50%');


fixlagButton.textColor = Color.red();
fixlagButton.url = URLScheme.forRunningScript();

stack2.addSpacer();
widget.addSpacer();

// Botón para abrir Free Fire


let freeFireButton = widget.addText(' ABRIR FREE FIRE ');
freeFireButton.textColor = Color.red();
freeFireButton.centerAlignText();
freeFireButton.url = 'freefire://'; // Reemplaza con el esquema de URL correcto
para Free Fire

widget.addSpacer();

let exitButton = widget.addText('🔹ENTRA AL GRUPO DE WHATSAPP CLICK AQUI🔹');


exitButton.textColor = Color.red();
exitButton.url = 'https://chat.whatsapp.com/Jmvze9TszHS298JYRNFo2H';
exitButton.centerAlignText();

widget.presentMedium();

Script.complete();

async function loadImage(url) {


const request = new Request(url);
return await request.loadImage();
}

You might also like