Would calling script.Parent in a ModuleScript refer to the Script as the Module?

For instance, let’s say I have a LocalScript in StarterPlayerScripts and a ModuleScript in ReplicatedStorage

If a function in the ModuleScript would run print(script.Parent.Name), will the output be "ReplicatedStorage" or "StarterPlayerScripts"?

1 Like

The output would be whatever the parent of the ModuleScript is.

2 Likes