Hello,
right now I am trying to figure out how you can obtain the jobId as a number or something.
Is there a specific way how to do this?
Hello,
right now I am trying to figure out how you can obtain the jobId as a number or something.
Is there a specific way how to do this?
game.JobId
doesn’t return a number: it’s a alphanumeric code that is a UUID
JobId
is a property of the DataModel. You can access it like this:
print(game.JobId)
Here’s an example of what a JobId might look like:
It returns a Universally unique identifier (UUID).
You can read up on this on DevHub:
Thank you! I will try this out straight away!
@PMGDesigns @Raretendoblox Sorry I am not familiar with this topic. Thank you as well!