
Description
--[[ Script Name: Hyper-v-run1 (HD Admin Edition) Features: No Key, Right Sidebar Menu, HD Admin, Fly V4, Custom Audio ID, Script Hub, Editor ]] local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Workspace = game:GetService("Workspace") local Lighting = game:GetService("Lighting") local TeleportService = game:GetService("TeleportService") local SoundService = game:GetService("SoundService") -- ป้องกันการสร้างซ้ำ if CoreGui:FindFirstChild("HyperVRun1") then CoreGui.HyperVRun1:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "HyperVRun1" ScreenGui.Parent = CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- ==================== ปุ่มลอย (Floating Button) ==================== local ToggleBtn = Instance.new("TextButton") ToggleBtn.Name = "ToggleBtn" ToggleBtn.Parent = ScreenGui ToggleBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 40) ToggleBtn.Position = UDim2.new(0.02, 0, 0.1, 0) ToggleBtn.Size = UDim2.new(0, 50, 0, 50) ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.Text = "📱" ToggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleBtn.TextSize = 24 ToggleBtn.Draggable = true local UICornerBtn = Instance.new("UICorner") UICornerBtn.CornerRadius = UDim.new(1, 0) UICornerBtn.Parent = ToggleBtn -- ==================== หน้าต่างหลัก (Main Frame) ==================== local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 28) MainFrame.Position = UDim2.new(0.5, -275, 0.5, -175) MainFrame.Size = UDim2.new(0, 550, 0, 350) MainFrame.Visible = false MainFrame.Draggable = true local UICornerMain = Instance.new("UICorner") UICornerMain.CornerRadius = UDim.new(0, 8) UICornerMain.Parent = MainFrame -- แถบหัวข้อ (Top Bar) local TopBar = Instance.new("Frame") TopBar.Parent = MainFrame TopBar.BackgroundColor3 = Color3.fromRGB(28, 28, 38) TopBar.Size = UDim2.new(1, 0, 0, 35) local UICornerTop = Instance.new("UICorner") UICornerTop.CornerRadius = UDim.new(0, 8) UICornerTop.Parent = TopBar local Title = Instance.new("TextLabel") Title.Parent = TopBar Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0.02, 0, 0, 0) Title.Size = UDim2.new(0.6, 0, 1, 0) Title.Font = Enum.Font.GothamBold Title.Text = "Hyper-v-run1 (HD Edition)" Title.TextColor3 = Color3.fromRGB(0, 255, 204) Title.TextSize = 14 Title.TextXAlignment = Enum.TextXAlignment.Left -- ปุ่มปิดหน้าต่าง local CloseBtn = Instance.new("TextButton") CloseBtn.Parent = TopBar CloseBtn.BackgroundColor3 = Color3.fromRGB(255, 60, 60) CloseBtn.Position = UDim2.new(0.92, 0, 0.15, 0) CloseBtn.Size = UDim2.new(0, 25, 0, 25) CloseBtn.Font = Enum.Font.GothamBold CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CloseBtn.TextSize = 12 local UICornerClose = Instance.new("UICorner") UICornerClose.CornerRadius = UDim.new(0, 5) UICornerClose.Parent = CloseBtn CloseBtn.MouseButton1Click:Connect(function() MainFrame.Visible = false end) ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) -- ==================== แถบเมนูด้านขวา (Right Sidebar Menu) ==================== local Sidebar = Instance.new("Frame") Sidebar.Parent = MainFrame Sidebar.BackgroundColor3 = Color3.fromRGB(25, 25, 35) Sidebar.Position = UDim2.new(0.75, 0, 0, 35) Sidebar.Size = UDim2.new(0.25, 0, 1, -35) local UIListSidebar = Instance.ne




Clean All The Leaves: Zero Point