Lua Debuggen What is that exactly

Hey,

what is exactly lua debugging, I am sorry I am not a genius for understanding everything.

and can I use some tools here of debugging in Roblox Studio?

I cant follow the explanation on google chrome etc just tell me for what it is used for but I cant understand.

Roblox has very few actual debug methods: debug | Documentation - Roblox Creator Hub

But there is a lua debugger that lets you step through code line-by-line.

Debugging is normally figuring out where your code has errors. A simple way of doing so is by using print().

For example, if there is a function somewhere and it somehow doesn’t work, you can put print() in some places, especially where you are using if statements.

1 Like