how would I teleport a player to a specific location using a proximity prompt. I've tried a couple of things but none of them have worked.
Any help is much appreciated.
Put this script in your proximity prompt. Change 0,0,0 to your position.
SCRIPT:
script.Parent.Triggered:Connect(function(player) player.Character:MoveTo(Vector3.new(0,0,0)) end)