inkiramind
(inkiramind)
November 16, 2021, 10:01am
#1
I tried this link, but this not work: “roblox-player://1+launchmode:play+gameinfo:0+placelauncherurl:https://assetgame.roblox.com/game/PlaceLauncher.ashx?request=RequestGame&placeId=PLACE_ID ” .
I know there is exist post method https://gamejoin.roblox.com/v1/join-game , but I think there is exist faster and easier solution
1 Like
xander5610
(Master_xander5610)
November 16, 2021, 10:04am
#2
inkiramind:
placeId=PLACE_ID
Did you give the link a place id?
inkiramind
(inkiramind)
November 16, 2021, 10:04am
#3
sure I did it, Is it work for you?
xander5610
(Master_xander5610)
November 16, 2021, 10:05am
#4
Nope, it gives me this:
Now I’ll add a custom place id.
inkiramind
(inkiramind)
November 16, 2021, 10:06am
#5
put in game id like this “920587237”
xander5610
(Master_xander5610)
November 16, 2021, 10:07am
#6
Oh, I already did with Bedwars, here’s what I got:
inkiramind
(inkiramind)
November 16, 2021, 10:09am
#7
oh, so I think you need add cookies in header
xander5610
(Master_xander5610)
November 16, 2021, 10:10am
#9
I don’t know what that means or how to do it.
inkiramind
(inkiramind)
November 16, 2021, 10:11am
#10
I will try it and after I will update info about it
1 Like
Here’s some information that might help you:
What do you want to achieve?
I want to be able to join a server thru my own website.
What is the issue?
Can’t figure out how to make this possible if it even is possible.
What solutions have you tried so far?
I searched for many solutions on the DevForum but could find any (working) solutions.
What i did find was the code pasted below which sortoff works. It launches but doesn’t load it just keeps hanging on the loading screen.
roblox-player://1+launchmode:play+gameinfo:0+placelau…
Alright, i’ve been working on something like fabrick, but this will just show you the live statistics, i’ve searched throug a plugin called ROBLOX+ by @WebGL3D he uses a method to let a person join a roblox game with the plugin,
my goal is to get something like Javascript or jquary to launch the roblox cleint to join the showen game.
i’ve tried searching throug the whole plugin but nothing defines Roblox Aswell i have been searching on the wiki and i found this:
[image]
could this maybe so…
inkiramind
(inkiramind)
November 16, 2021, 11:04am
#12
uh, unreal. they just block request, if request was sent outside roblox site
inkiramind
(inkiramind)
November 16, 2021, 12:55pm
#14
I think this isn’t bug. Is it?
FieryEvent
(FieryEvent)
November 16, 2021, 1:44pm
#15
Automatically joining places by visiting an URL is not user friendly, not being able to do so is probably intended.
However you can create a private server link and share with your friends so they can join automatically.
regexman
(reg)
November 16, 2021, 3:19pm
#16
Yeah maybe not but it still dosent belong to #help-and-feedback:scripting-support
xDeltaXen
(xDeltaXen)
January 8, 2023, 8:52pm
#18
You can use Roblox’s game.Players.PlayerAdded
event to get their Player
object and Player
has a UserId
property.
From the UserId
you can get their name and avatar like this:
local ok, result = pcall(function()
return game:GetService(“HttpService”):GetAsync(“https://avatar.roblox.com/v1/users/"..player.UserId.."/avatar ”, true)
end)
if ok then
local info = game:GetService(“HttpService”):JSONDecode(result)
print(info.Username)
print(info.AvatarUrl)
end