How to obtain the jobId

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?

1 Like

game.JobId doesn’t return a number: it’s a alphanumeric code that is a UUID

1 Like

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:
image

8 Likes

It returns a Universally unique identifier (UUID).
You can read up on this on DevHub:

1 Like

Thank you! I will try this out straight away!

@PMGDesigns @Raretendoblox Sorry I am not familiar with this topic. Thank you as well!

1 Like