I want to see if it’s possible to join a public server (not a VIP server) through a link.
I have yet to find a solution as all the results I’ve searched up are how to join a VIP Server, not a public one.
So this goes back to my previous question, is it possible to join a public server through a link, and if so, how can you do so?
I don’t think it’s possible because public servers are public, while private servers are private
I recall seeing a mod call script that sends a link to the player’s server who sent the modcall, though I’m not sure if this is still available on the Roblox platform.
Wait, really? I haven’t heard of creating links for public servers
Yes, it is possible. I do not know the queries to provide into the link, but if you press F12, go to network and start a roblox game you will see that there is one.
You can copy and paste the link it gives you to start the roblox game, but I found that with repetitive use, the link expires.
There is no official way to launch a game from a URL. You would have to create your own desktop handler for it (whether that’s a browser extension or standalone desktop app/service). Launching a game on desktop requires access to the user’s cookies, and a script to authenticate the session.
Roblox requests an authentication ticket each time you press play. Roblox Player is then opened using its protocol (roblox-player://
) with the authentication ticket appended as one of its parameters.
However, you can launch a game on mobile without a ticket, as authentication is handled by the app. You can use a deep link to the game to launch it, e.g. roblox://1818
opens Crossroads.
You might find this useful: