Hi, Im kinda new to teleport server stuff, and i was using roblox's tutorial to make a matchmaking system but i repeatedly get the error 18:45:53.900 - Game:CreatePlace received and error: HTTP 0 (HTTP 403).
18:45:53.901 - Stack Begin
18:45:53.901 - Script 'ServerScriptService.MatchMaking', Line 113 - upvalue startGame
18:45:53.901 - Script 'ServerScriptService.MatchMaking', Line 159
18:45:53.901 - Stack End
Here is the following code: please note that it is a module script
local arenaPlaceId = game:GetService("AssetService"):CreatePlaceAsync( "Arena place for " .. playerA.Name .. " and " .. playerB.Name, 181238621)
Encountered this before, make a place for that certain game of yours,
https://gyazo.com/4f6e8e8a8d3a912dcb1e2819e9aa0f80
After that go to your game's Configure Game
setting in the Developer Site then click Places
and then click the created game and finally, copy the place I.D http://prnt.sc/nkju2v and paste it to your line #4 on the last argument!
I had problem with this by using another game's id so the same error occur to me and this is how I fixed it! Take note that :CreatePlaceAsync()
will duplicate the place so to see how many places are duplicated using this, go to your Configure Game
again and click Created Places
Hopefully this'll help you!