-- Teleport Blocks local taiga = game.Workspace.Map.Islands.TeleportParts.TeleportPartTaiga local solar = game.Workspace.Map.Islands.TeleportParts.TeleportPartSolar local wilderness1 = game.Workspace.Map.Islands.TeleportParts.TeleportPartWilderness1 local player = game.Players.LocalPlayer local char = player.Character local humrootpart = player.HumanoidRootPart script.Parent.FocusLost:Connect(function(enter) if enter then local Input = script.Parent.Text if string.lower(Input) == "blasting taiga" then humrootpart.CFrame = CFrame.new() end end end)
The code kinda had some problems. I don't understand what 'wilderness1' is for tho.
local taiga = game.Workspace.Map.Islands.TeleportParts.TeleportPartTaiga local solar = game.Workspace.Map.Islands.TeleportParts.TeleportPartSolar local wilderness1 = game.Workspace.Map.Islands.TeleportParts.TeleportPartWilderness1 script.Parent.FocusLost:Connect(function(enter) local player = game.Players.LocalPlayer local char = player.Character local humrootpart = char.HumanoidRootPart if enter then local Input = script.Parent.Text if string.lower(Input) == "blasting taiga" then humrootpart.CFrame = taiga.CFrame end end end)