Description
Whenever you try to require Module A, that is stored as a reference in Module B you required in the same script, intellisense/autocomplete window will not pop up for the contents inside of that Module A.
Media
A server script, which requires “ChildModule” (Described as Module A) thru another required “Module” (Described as Module B).
Contets of ChildModule (Described as Module A)
Module (Described as Module B) that sets the reference to ChildModule (Described as Module A).
Expected Behaviour
- An intellisense/autocomplete window should pop up containing “SomeValue”, when indexing required ChildModule.
- A thing to note, is that intellisense has the reference to the ChildModule in it’s memory already. But when requiring it, intellisense doesn’t work at all.
Reproduction Steps
- Open the repro file: Intellisense.rbxl (53.4 KB)
- Open the script at: Game → ReplicatedStorage → Script
- On the 3rd line, require ChildModule as shown in the the GIF, and try to index SomeValue. While indexing, the intellisense/autocomplete window will not pop up.