You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to be specific, it says to create a ModuleScript in ServerStorage, but it is previously stated that they are commonly placed in ServerScriptService, so this fixes it
Copy file name to clipboardExpand all lines: content/en-us/tutorials/fundamentals/coding-6/intro-to-module-scripts.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Module scripts are actually their own separate object compared to script objects
23
23
24
24
ModuleScripts are commonly placed in **ServerScriptService** when used by server-side scripts and **ReplicatedStorage** when used by client-side local scripts (such as GUI interactions).
25
25
26
-
1. Create a **ModuleScript** in **ServerStorage**.
26
+
1. Create a **ModuleScript** in **ServerScriptService**.
0 commit comments