AutoDebug is a plugin that helps you to fixing, and debugging your scripts easily, by clicking one button, it helps you to fix syntax errors and suggest you how to fix your code.
it run your script “sandbox” mode to only search bugs, and then it suggest you code to reaplce, or what you should do. to make it fix everything its running the fix automaticly again and again until its looks like it without errors.
Errors that it can handle:
Some of the errors it can fix, and some of them it can suggest what is the best to do.
errors
attempt to call a nil value
attempt to index a nil value
attempt to perform arithmetic on a nil value
Malformed string; did you forget to finish it?
Expected identifier when parsing expression, got malformed string
Incomplete statement: expected assignment or a function call
Expected identifier when parsing expression, got ‘)’
Expected ‘)’
Malformed string; did you forget to finish it?
Expected ‘end’
Incomplete statement: expected assignment or a function call
Expected ‘then’ when parsing if statement
expected near
Expected , got ‘end’
when parsing expression, got ‘and’
Expected ‘then’ when parsing if statement, got ‘=’
a plugin that ‘run your script “sandbox” mode to only search bugs’?
how do we know it doesn’t have html calls? how do we know it’s not just a tool to steal code?
I believe plugins work with that even without them enabled. I’m gonna see the source code for myself. Until then, if the script is supposed to destroy something and we try to “debug” it, would it destroy that part?
I’m sorry but 100 robux for pcall(loadstring, selectedScript.Source) seems kinda unfair. fix option looks like ChatGPT or a simple lexer script, which I’m sure you wouldn’t make, knowing your misleading plugins.
local succ, err = pcall(function()
return loadstring([[local function print() end local function warn() end]] .. '\n' .. game:GetService('StudioService').ActiveScript.Source)()
end)
if not succ then
local err = string.gsub(err, '.*:.*:', '')
warn(err)
end
Mind at least explaining your “FIX” part then? You already made a misleading plugin that forces you to pay for OpenAI usage in order to use, it’s pretty hard to believe that this plugin will be different.