Hey guys,
So for the past few days I’ve been attempting to create a portal system which transports you to a different place and transfers your inventory and other player data with you. I have most the systems finished. However, I’ve hit a snag.
My first thoughts for the transferring of the player’s inventory, was to send it through messaging service (more secure than teleport data), though I hit one main issue: You can only send strings as messages. So I used serialization to transfer the team, but I can’t serialize the tools due to them having scripts.
Another idea I had was to simply use IDs for the different tools and have a copy in server storage at the destination, but this would require the constant transferring of new tools into the new place. This same system could be used for any vehicles the player is driving.
So I come here to ask for input, is there any other way I could transfer the tools and vehicles the player has? Or do I just have to manually add them all to the place.
Thanks in advance,
CanineData