Taking advantage of the script editor autoguesser

Recently I have been making my own framework for my own convenience and I wanted to take advantage of the script editor auto guesser. ( Not exactly sure whats it really called :confounded: )

Whenever you use :WaitForChild() or :FindFirstChild(), the auto guesser stops predicting what code you will continue writing so therefore, it allows for issues such as misspelling certain phrases and making coding more of a challenge than it should be.


I was wondering if I could take advantage in my framework and use Modular Programming as a way to solve this issue.

I’m not entirely sure about my solutions but I’ve thought of 3 possible methods I could use.

1.) Waiting until containers load along with their descendants and then referring to them through the main script controller.

2.) Waiting for all services, objects and other things my scripts would use. The difference here between my first method would be that i’m waiting for each and every descendant, not just the ones that contain scripting objects.

3.) Using custom signals that return when objects load (seems a bit over the top)


I appreciate all help in advanced! :grinning_face_with_smiling_eyes:

1 Like