local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local function tpTo(pos) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(pos) end end local gui = Instance.new("ScreenGui") gui.Name = "XanosUI" gui.Parent = game.CoreGui local main = Instance.new("Frame") main.Size = UDim2.new(0, 240, 0, 290) main.Position = UDim2.new(0.35, 0, 0.3, 0) main.BackgroundColor3 = Color3.fromRGB(25, 25, 25) main.BorderSizePixel = 0 main.Active = true main.Draggable = true main.Parent = gui local corner = Instance.new("UICorner", main) corner.CornerRadius = UDim.new(0, 12) local stroke = Instance.new("UIStroke", main) stroke.Thickness = 2 stroke.Color = Color3.fromRGB(120, 0, 255) local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundTransparency = 1 title.Text = "Xanos" title.Font = Enum.Font.GothamBold title.TextColor3 = Color3.fromRGB(200, 200, 255) title.TextSize = 20 title.Parent = main local function createButton(name, pos, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.8, 0, 0, 30) btn.Position = UDim2.new(0.1, 0, pos, 0) btn.BackgroundColor3 = Color3.fromRGB(45, 45, 65) btn.Text = name btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.GothamSemibold btn.TextSize = 16 btn.Parent = main local btnCorner = Instance.new("UICorner", btn) btnCorner.CornerRadius = UDim.new(0, 8) btn.MouseButton1Click:Connect(callback) end createButton("4 Wins", 0.16, function() tpTo(Vector3.new(-74.24432373046875, 585.0877075195312, 45.416316986083984)) end) createButton("Near 4 Wins", 0.30, function() tpTo(Vector3.new(-93.36727905273438, 579.5267944335938, 44.27748489379883)) end) createButton("Near 10 Wins", 0.44, function() tpTo(Vector3.new(11.05905818939209, 10.03162956237793, -553.600830078125)) end) createButton("10 Wins", 0.58, function() tpTo(Vector3.new(25.97126579284668, 12.137916564941406, -555.5560913085938)) end) createButton("Near 500 Wins", 0.72, function() tpTo(Vector3.new(-0.282600998878479, 15.092570304870605, -1334.0091552734375)) end) createButton("500 Wins", 0.86, function() tpTo(Vector3.new(-1.00145423412323, 19.1923770904541, -1361.6136474609375)) end)