diff --git a/docs/_docs/the-basics/networkedvar.md b/docs/_docs/the-basics/networkedvar.md
index f56ec75365..3fec141fe9 100644
--- a/docs/_docs/the-basics/networkedvar.md
+++ b/docs/_docs/the-basics/networkedvar.md
@@ -19,6 +19,15 @@ Since the NetworkedVar container is a wrapper container around the value, the va
+
+
+
Note
+
+
+ You must remember to add the NetworkedObject component to the game object to which your script belongs
+
+
+
To create your own NetworkedVar container, simply create a class with the INetworkedVar interface and declare it as a field of a NetworkedBehaviour. To learn how to write your own containers for more complex structures, see the NetworkedVar implementation. To learn how to do custom delta encoding on complex structures. See the SyncedDictionary and SyncedLIst implementations.
### Permissions