Install Script

1-) Download the script

You must download the script you purchased via Keymaster;

  • ak4y-core

  • ak4y-aquaparkprop

  • ak4y_aquapark_restaurant

You will download 3 different files. You must download these files individually from Keymaster.


2-) Installing the script

Open server.cfg and paste the following code block after the core files (qb, esx, qbox core).

ensure AuraStudio-Aquapark
ensure ak4y-core
ensure ak4y-aquaparkprop
ensure ak4y-aquapark_restaurant

Now, based on the inventory you are currently using, load the items you need to load into your inventory.

INSERT INTO items (name, label, weight, rare, can_remove) VALUES
('aquapark_ticket', 'Aquapark Ticket', 10, 0, 1);

Then paste the following item image into the section of your inventory where the item images are located.


Open the database application you use for SQL installation.

Create the following SQL table in your database.


CREATE TABLE IF NOT EXISTS `ak4y_aquapark` (
  `identifier` varchar(255) DEFAULT NULL,
  `experience` int(11) DEFAULT NULL,
  `totalEarnings` int(11) DEFAULT NULL,
  `completedJobs` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

Last updated

Was this helpful?