CyberTweaks2077
CyberTweaks2077
A collection of LUA scripts to modify your game experience
# CyberTweaks2077
A collection of LUA scripts to modify your game experience
## Installation
Drop `lua` folder into `bin\x64\`
## Requirements
[CyberEngineTweaks by Yamashi]## Usage
There are two ways of using the scripts
### Autoexec
Inside of `bin\x64\plugins\cyber_engine_tweaks\scripts\autoexec.lua` add the following at the end of the script:
“`
Example = require(“examples.example”)
Example.Hello()
“`
### Manual
Open the console and run:
“`
Example = require(“examples.example”)
Example.Hello()
“`
Your console should look similar to the snippet below:
“`
> Example = require(“examples.example”)
> Example.Hello()
Hello World
“`