local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "Andrys script", Icon = 0, LoadingTitle = "Rayfield Interface Suite", LoadingSubtitle = "by andrys", ShowText = "Rayfield", Theme = "Ocean", ToggleUIKeybind = "K", DisableRayfieldPrompts = false, DisableBuildWarnings = false, ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "Big Hub" } }) local MainTab = Window:CreateTab("TP", 4483362458) -- Teleport function local function teleportTo(position) local player = game.Players.LocalPlayer if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.CFrame = CFrame.new(position) end end -- TP to Boxes MainTab:CreateButton({ Name = "TP to Boxes", Callback = function() print("Teleporting to Boxes: X = 413.63, Y = -32.70, Z = 536.38") teleportTo(Vector3.new(413.63, -32.70, 536.38)) end }) -- TP to Phi MainTab:CreateButton({ Name = "TP to Phi", Callback = function() print("Teleporting to Phi: X = -387.81, Y = -6.00, Z = 222.72") teleportTo(Vector3.new(-387.81, -6.00, 222.72)) end }) -- TP to MCZ MainTab:CreateButton({ Name = "TP to MCZ", Callback = function() print("Teleporting to MCZ: X = -242.04, Y = -31.74, Z = 1499.22") teleportTo(Vector3.new(-242.04, -31.74, 1499.22)) end }) -- TP to SCP-914 MainTab:CreateButton({ Name = "TP to 914", Callback = function() print("Teleporting to SCP-914: X = 268.51, Y = -33.98, Z = 1669.83") teleportTo(Vector3.new(268.51, -33.98, 1669.83)) end }) -- TP to GL MainTab:CreateButton({ Name = "TP to GL", Callback = function() print("Teleporting to GL: X = 1305.09, Y = -34.83, Z = 691.50") teleportTo(Vector3.new(1305.09, -34.83, 691.50)) end })