I need help with my code cuz it’s saying that The parameter “body” is never used in the function “_on_body_entered()”. If this is intended, prefix it with an underscore: “_body”.
This is a warning from the script editor that you have declared a function parameter but have not yet used it within that function. This is not unusual with signal functions as you are obliged to follow the parameter template but you might not need all the parameters so GDScript acknowledges prefixing the parameter with an underscore as a way of ignoring this script/syntax check.
There are a whole bunch of these sort of checks you can configure in Project Settings/Debug/GDScript, you can choose between Ignore, Warn and Error.
You will get mixed opinions on whether they are useful warning messages or whether the editor is nagging you too much, personally I am happy to get any help I can from the editor.