I double checked the ID and its definitely that one! Try putting it in a URL for yourself
You cannot make games unlisted this way. The closest to âhidingâ the place is to teleport users to place instances within your own universe.
Addressing the second issue which was brought about by that suggestion, this is a previously reported occurrence. According to the post, the alternative :TeleportToPlaceInstance(int placeid)
may work if you are teleporting users between places within your universe only.
Im kinda confused on how to put :TeleportToPlaceInstance(int placeid) into
script.Parent.MouseButton1Click:Connect(function()
game:GetService(âTeleportServiceâ):Teleport(3535540288, Player)
end)
That thread shows an error saying the place is restricted, this one is flat out saying the place doesnât exist. I donât think it would hurt to post there, though.
@isarvety
Not sure how this works if you donât have a server id passed, but here:
script.Parent.MouseButton1Click:Connect(function()
game:GetService("TeleportService"):TeleportToPlaceInstance(3535540288)
end)
Edit: I didnât check the documentation for it before posting that, but I really donât know how it would work. It seems like the server id is required.
Ok so? there is no fix? this is weird
Sadly, it seems there is no fix. Just to make sure again, when you visit the configuration page for your game and go to Places, it shows your other place?
It does. It shows that gameâŚ
Seems this a bug, then. You can try moving to a new game, but past that Iâm not sure. Youâll have to look at the bug report procedure and follow that.
ok, ill do that. if it doesnt work ill try something myself
Just a side note; everyone please try indenting your code, readability increases and your code looks more neat. The code provided by @ChasingSpace would become:
script.Parent.MouseButton1Click:Connect(function()
game:GetService("TeleportService"):TeleportToPlaceInstance(3535540288)
end)
I recommend reading this thread on proper code formatting etiquette.
Type them down, not copy and paste them.
This thread is awfully bloated. What is the problem? A good number of suggestions here are wildly different from what OP is asking and even OP deviated from the topic by talking about a teleport error.
There is no way to unlist a game from activity. Places of a game arenât listed in Recently Played however, as only the Start Place of a game is shown there. If youâre looking to create attached places, you should be doing this via the Game window in Roblox Studio under the Places tab.
There are various articles on the Developer Hub that you can see if youâre confused. This is better than taking responses at face value, posting them and then coming back if they donât work; do your own tweaking first. The article on Games and Places can help you determine how to sort your places.
Please remain on-topic and constructive to the issue that the thread is posing, not a different one altogether. This issue isnât too hard to resolve, but hasty responses and lack of experimentation on your behalf are leading to a lot of misconceptions and confusion.
This is not true, but at the same time it is true, he could of been more detailed by telling us whatâs the script and even if he did by using replies⌠he could of edited instead.
Itâd help to explain what you think isnât true, because none of this is false information.
That doesnât make any sense, thatâs contradictory. This thread is about unlisting places from the activity feed, which there is no way to do that. Responses here are either relevant or not; a majority of them are not.
Place teleportation issues are off-topic.
I hope I am not being dense but in the pictures of the code the Player word was underscored as if it was not registered. All the examples that had player were worded as player (lowercase) .
Is Player not equal to player?
The blue underline indicates an unknown global. Since Player isnât defined, itâs being treated as a reference to a global variable. The global variable Player doesnât exist either, which is why it is unknown. When this bit of code is executed, itâll throw an error for attempting to call a method with an invalid argument.
Player and player are intended to represent the same thing across code posted to this thread but in practice, variables are case sensitive. Player and player are two different variables but can equal the same value. Same with fooBar and Foobar.