Website IconRankGun

Roblox Package

The Roblox Package is a simple API wrapper that allows you to interact with our API. It's built in RobloxTS, however, you can still use it with basic lua.

Installation

You can programatically import it via it's asset id: 15764237093.

You can also download it from roblox.

Usage

Our package is currently extremely simple, I've added some examples for you so you can get the gist, all functions utilised in the example are all functions available:

local Rankgun = require(script.Parent.MainModule)
 
local rankgun = Rankgun.Client.new("Taeyp3Ahl7OZkDmVHdpOiZ7yRN8KMG", "ci5qj0mztCawMzW")
 
rankgun.set_rank(7454767586, 3)
rankgun.promote(7454767586)
rankgun.demote(7454767586)

On this page