Is there a method to get a serialized instance id? For example, if you inserted a part, it would have a unique id that would be consistent in test mode and any running server. Engines like Unity have something like this and I’ve noticed that instances do seem to have a couple different ids (such as a DebugId and some other id you can find in array, examples of both: 0_5820606
, 1E71948A728`), however, they don’t remain consistent and change to something random during run time. Is there a way to get some id for an instance that doesn’t ever change?
2 Likes
There’s nothing like that accessible natively. Best thing you can do is have a global counter somewhere, then add an attribute to the instance with the next ID.
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.