Skip to content

Commit f0268e2

Browse files
authored
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.
1 parent 28ddb9b commit f0268e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en-us/tutorials/fundamentals/coding-6/intro-to-module-scripts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Module scripts are actually their own separate object compared to script objects
2323

2424
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).
2525

26-
1. Create a **ModuleScript** in **ServerStorage**.
26+
1. Create a **ModuleScript** in **ServerScriptService**.
2727

2828
<img src="../../../assets/education/coding-6/intro-to-module-scripts/create-module-script.png" width="50%" />
2929

0 commit comments

Comments
 (0)