Error or bug related to .find

You can write your topic however you want, but you need to answer these questions:

  1. I would like to remove the bug but I do not understand how


  1. I tried to search about it on the Internet, look for something about require and the like, and that’s all …

I gave screenshots of the error and screenshots of the script from above, I studied how to create a script for a combo system on YouTube and I rewrote everything there and I understood how the script works, but here’s the problem, I didn’t understand how to solve the error, I tried to understand what was the matter and in some groups wrote - asked but no one could help.

You didn’t actually call require, you just have (SSS:WaitForChild("DictionaryHandler"))

instead of (SSS:WaitForChild(“Dictionary Handler”)) put like this - (SSS.require:WaitForChild(“DictionaryHandler”)) or - require(SSS:WaitForChild(“DitionaryHandler”))

The second one—require is a function that takes a ModuleScript as its only argument.

I’m sorry, but of course I understood what it was, but I didn’t understand how to solve my problem, sorry if I’m not an understanding person

Change line 7 of Combat Server from this:

local DictionaryHandler = (SSS:WaitForChild("DictionaryHandler"))

To this:

local DictionaryHandler = require(SSS:WaitForChild("DictionaryHandler"))