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
Fix intro-to-module-scripts.md having a mixup (#1067)
## Changes
<!-- Please summarize your changes. -->
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
<!-- Please link to any applicable information (forum posts, bug
reports, etc.). -->
No links are needed, as the file and image right below the line I
changed both state that it should be in ServerScriptService
## Checks
By submitting your pull request for review, you agree to the following:
- [x] This contribution was created in whole or in part by me, and I
have the right to submit it under the terms of this repository's open
source licenses.
- [X] I understand and agree that this contribution and a record of it
are public, maintained indefinitely, and may be redistributed under the
terms of this repository's open source licenses.
- [X] To the best of my knowledge, all proposed changes are accurate.
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