How to Get a Player's UUID on Your Hytale Server
A UUID (Universally Unique Identifier) is a permanent identifier for each Hytale player. Unlike usernames, UUIDs do not change when a player renames their account. Use UUIDs when managing admins, setting up whitelisting, or issuing bans.
Method 1: Get a UUID for an Online Player
The player must be online and logged into your server.
- Log in to the Game Control Panel and stop your server.
- Navigate to the Web Console.
- Enter the command
/uuid USERNAME, replacingUSERNAMEwith the player's username. The console returns a message with the player's details, including their UUID.
Method 2: Get a UUID for an Offline Player
This method searches through stored player files and may take time if many players have joined your server.
- Log in to the Game Control Panel.
- Navigate to the File Manager.
- Go to
universe\players\. All player files are stored in this folder. - Open each
.jsonfile by right-clicking and selecting Edit. - Look for the
Textvalue under theNameplatesection that matches the player's username. - Once you find the matching file, the UUID is the filename itself, before the
.jsonextension:[Player_UUID].json.
Troubleshooting
- No result from /uuid: Confirm the player is currently online and logged in to the server.
- Many player files: Sort the
universe\players\directory by date modified to narrow down recently active players first.