Hey there, I tested this For a friend the other day and it seemed to work. in the output it said it wont work in studio which was good. I went into the game and it didnt work. The script is just a script and is in ServerScriptService. Please if you could help reply to it!
local Players = game:GetService("Players") local TeleportService = game:GetService("TeleportService") local chatcommand = "The priest will be scarificed" --change to whatever you want local destinationID = 4908897649 --Change to destination place ID Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) if message:sub(1, chatcommand:len()):lower() == chatcommand then TeleportService:Teleport(destinationID, player) end end) end)