🐞LUA Self Debug

A short guide on how you can debug code yourself in order to provide more detailed information

Basic LUA Debugging Example

You can debug in LUA in a simple way:

print("HERE 1")
//some code
print("Here 2")

adding prints client side and server side you can easy find where your script have some issue.

For Client side you can press F8 and open ingame console to check the prints.

For Server site you should check your Tx admin console logs.

Ensure that all dependencies are satisfied.

Last updated