ObjectValue
1 parent 2a07128 commit b225e1aCopy full SHA for b225e1a
2 files changed
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "robloxmemoryapi"
7
-version = "0.1.9.1"
+version = "0.1.9.2"
8
description = "Python Library that abstracts reading and writing data from the Roblox DataModel"
9
readme = { file = "README.md", content-type = "text/markdown" }
10
requires-python = ">=3.9"
src/robloxmemoryapi/utils/rbx/instance.py
@@ -725,6 +725,9 @@ def Value(self):
725
misc_offsets["Value"]
726
)
727
728
+ if object_address == 0:
729
+ return None
730
+
731
return RBXInstance(object_address, self.memory_module)
732
733
return None
0 commit comments