Sorry, I don’t know how to word the title. When I released my demo, there was 4 places the player teleported to, and they all showed up in their recently played section
How do I make it so that the place is public, but when the player is teleported there, it does not show up. I know this is possible, I just don’t know how to do it. Thanks!
K. I think I may have found the problem, but I don’t know yet
local telePart = script.Parent
local TeleportService = game:GetService(‘TeleportService’)
local placeID = 8233170935
–replace this part
local canTeleport = true
local function otherGame(otherPart)
local player = game.Players:FindFirstChild(otherPart.Parent.Name)
if player and canTeleport then
canTeleport = false
TeleportService:Teleport(placeID, player)
wait(15) --cooldown time
canTeleport = true
end