Hello ! I am trying to make global matchmaking system . I am planning to use MemoryStoreService and I am making a 1v1 style game . Where do I start on making my matchmaking system???
A matchmaking system typically starts with getting a reserved server for the match to take place.
To do this in Roblox, you need a reserved server Id, and an access code to the server.
AccessCode, PrivateServerId = TeleportService:ReserveServer(placeId)
More info on Teleport Service here:
Also, I came across this post a few days ago - and it looks pretty well-structured. Worth a look to see how they did things.
Yea I do know how to use teleport service but I am wondering how to make a global 1v1 matchmaking system? Any ideas? Thank you for your post
Edit: I look through the module and I am trying to understand how they make it crossserver matchmaking system . btw, I am trying to make everything from scratch
Yea! Check out that module.
Basically, just tie together using MemoryStoreService and TeleportService.
Is there a dev forum page for the module itself??? It is quite hard to understand how it works/how to use it