local JobIdTextBoxValue = "07431dbd-8ae7-417e-a242-e5a01a33c740" -- Store the textbox value i guess CHANGE THIS that is just an example local placeId = game.PlaceId -- Get the current place ID of the game local jobId = JobIdTextBoxValue if jobId ~= "" then local success, errorMessage = pcall(function() game:GetService("TeleportService"):TeleportToPlaceInstance(placeId, jobId, game.Players.LocalPlayer) -- teleports i hope nothing goes wrong end) end