-- Создание элементов меню local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game.CoreGui ScreenGui.Name = "CustomKRNLMenu" local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 220, 0, 120) MainFrame.Position = UDim2.new(0.1, 0, 0.1, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 50) MainFrame.Parent = ScreenGui MainFrame.Active = true MainFrame.Draggable = true local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 16) UICorner.Parent = MainFrame local TpFarm = Instance.new("TextButton") TpFarm.Size = UDim2.new(0, 190, 0, 40) TpFarm.Position = UDim2.new(0, 15, 0, 15) TpFarm.Text = "ТП на фарм" TpFarm.BackgroundColor3 = Color3.fromRGB(60, 120, 255) TpFarm.Parent = MainFrame Instance.new("UICorner", TpFarm) local Sell = Instance.new("TextButton") Sell.Size = UDim2.new(0, 190, 0, 40) Sell.Position = UDim2.new(0, 15, 0, 65) Sell.Text = "x35 Продать" Sell.BackgroundColor3 = Color3.fromRGB(255, 80, 80) Sell.Parent = MainFrame Instance.new("UICorner", Sell) -- Телепорт на фарм TpFarm.MouseButton1Click:Connect(function() local plyr = game.Players.LocalPlayer if plyr and plyr.Character and plyr.Character:FindFirstChild("HumanoidRootPart") then plyr.Character.HumanoidRootPart.CFrame = CFrame.new( 5040.73145, 35.0979996, 1614.43506, 0.866007268, 0, 0.500031412, 0, -1.00000024, 0, 0.500031412, 0, -0.866007447 ) end end) -- Быстрая продажа (Обновленный CFrame) Sell.MouseButton1Click:Connect(function() local plyr = game.Players.LocalPlayer if plyr and plyr.Character and plyr.Character:FindFirstChild("HumanoidRootPart") then local oldCFrame = plyr.Character.HumanoidRootPart.CFrame plyr.Character.HumanoidRootPart.CFrame = CFrame.new( 77.0466309, 91242.5312, 123.681641, 1.2755394e-05, 0.965938866, 0.258770198, -0.99999994, 1.2755394e-05, 1.66893005e-06, -1.66893005e-06, -0.258770198, 0.965938926 ) wait(0.12) plyr.Character.HumanoidRootPart.CFrame = oldCFrame end end)