Omega's Terminal documentation
Skip to main content
About this guide

Time to complete: 2min
Difficulty: Easy

First setup

Khol's Admin integration

It is heavily recommended to use Khol's Admin v0.9.1+ for additionnal features such as logging and permission syncing when using this terminal

Insert the model

Get the model and put it in ServerScriptService

Set basic configuration

Configure the terminal

Open the config modulescript

Edit the teams

Change the teams variables to the teams in your place by selecting the object values then changing the value field in the properties panel.

Edit the terminal part

Change the terminal part variable to a part reprensenting the volume of your terminal

Terminal part

Configure the terminal Make sure the terminal part represents a volume in wich players will be able to interact with the terminal.

Set up permissions

You're Done

By default anyone with the admin role in Khol's Admin will be able to use the terminal.

Changing the required role to access the terminal

To change the required role to access the terminal, open the Config module script and edit the MINIMUM_KHOLS_RANK variable in the isAdmin function.

local MINIMUM_KHOLS_RANK = 3 
if(shared._K_INTERFACE ~= nil)then
local rankNumber, rank = shared._K_INTERFACE.Auth.getRank(player.UserId)
if(rankNumber >= MINIMUM_KHOLS_RANK)then
return true
end
end

Possible values

0	everyone
1 vip
2 mod
3 admin
4 superadmin
inf creator