Home - Rann-Studio/PowerKuy_Lib GitHub Wiki

PowerKuy_Lib is a library project designed to simplify the process of running a Lua executor in the Powerkuy application.
It is important to note that PowerKuy_Lib is specifically designed to work with Growtopia Creative Private Servers (CPS).

How To Install

  • Download and extract the latest release
  • Launch PowerKuy Lua Executor and add new file
  • Add this in the top of your file:
local AIO = io.input("directory of the files you have extracted"):read("*a")
load(AIO)()

-- now you can write your code here ↓

Example:

local AIO = io.input("/storage/emulated/0/Download/PowerKuy_Lib-1.0.0/All In One.lua"):read("*a")
load(AIO)()

while true do
  find_item{item_id = 123}
  Sleep(1000)

  add_magplant{position = "top", offset = 1}
  Sleep(1000)
end

Lets move on the next page to learn all function!