It could be the Syntax you’re using.
Usually the recommended way to connect signals is:
signal_name.connect(function_name)
so for your case it would be
body_entered.connect(thing)
to emit the signal:
body_entered.emit()
The issue you may be experiencing is that because your thing() function has an argument and you’re not passing an argument when you emit the signal it doesnt work, so try:
thank you this worked! but i have another w=question: how would i transfer the body variable of the body_entered signal to the lol variable? So i can print the body that it’s touching?