How can i fix this? It doesn’t run the createplace but stops at print(“1”)
LimbConfig.MasterStartup = function(player)
print("1")
local arenaPlaceId = game:GetService("AssetService"):CreatePlaceAsync("Mentor Training", 15043757185,"(The Training Grounds)")
print("2")
game:GetService("TeleportService"):Teleport(arenaPlaceId, player)
print("3")
end
Is it ran in Studio or in-game? Does it output Game:CreatePlace received and error: HTTP 403 (HTTP/1.1 403 Forbidden).?
Notice
You’re creating a new place without saving. I assume this is a tutorial / training place or some sort? It’s not recommended, but I’ll still help. If this is to make a temporary place, let me know.
1 Like
it is ran in game it just dont work in game i dont get no errors
but yes it is a temp place for people to go an train with mentors
whats the way you know that can help me?
Ah, I’m not sure what you mean by mentors like players or NPC. For single player teleporting to temporary place, you should remove arena place id and do
game:GetService("TeleportService"):Teleport(15043757185, player)
I don’t think you should use create place which just creates a permanent place every training (and you can see the issue here).
If you’re looking for mentors as player, you should consider reserved servers and TeleportAsync.