diff --git a/LabApi/Features/Wrappers/Players/Player.cs b/LabApi/Features/Wrappers/Players/Player.cs
index 8a13ff9..3f840e2 100644
--- a/LabApi/Features/Wrappers/Players/Player.cs
+++ b/LabApi/Features/Wrappers/Players/Player.cs
@@ -570,7 +570,8 @@ internal Player(ReferenceHub referenceHub)
///
/// Gets the player's .
///
- public GameObject? GameObject => ReferenceHub ? ReferenceHub.gameObject : null;
+ /// Can be null if the is null.
+ public GameObject GameObject => ReferenceHub.gameObject;
///
/// Gets whether the player is the host or server.