🔌Installation

Before you start the fun, here are some things you need to do


1 - Installation and Requirements 📥

Below are some important types and installation contents.


2 - SQL File setup 💾

You need to read the SQL Files. If you cannot access the files, the queries are below.

CREATE TABLE IF NOT EXISTS `wais_studio` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `studio` varchar(50) DEFAULT NULL,
  `files` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

3 - Payment ID Integration ♨️

Payment id must be integrated to use the script. Here are some things to pay attention to:

  • The products in the payment id you enter must definitely have the studio script you purchased.

  • Do not share the payment id with anyone and do not give it to anyone.

  • If you can't find your Payment ID, check your purchase email address or payment receipt.

Follow the path below to enter the Payment ID:

  • First we need to find and open the Config_sv.lua file for this process. You can find the file here: wais-studio/

  • Find the following variable in the file you opened and replace the “tbx-payment-id” content with the payment id address of the Studio script you purchased.

    ConfigSv.TebexPaymentId = "tbx-payment-id"
    
    -- ⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓
    -- ENTER THE PAYMENTID YOU COPIED
    -- ⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓
    
    ConfigSv.TebexPaymentId = "tbx-12345678901234-567890"

Last updated