--[[ 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.new("UIListLayout") UIListSidebar.Parent = Sidebar UIListSidebar.SortOrder = Enum.SortOrder.LayoutOrder UIListSidebar.Padding = UDim.new(0, 5) -- พื้นที่แสดงเนื้อหา (Content Area) local ContentArea = Instance.new("Frame") ContentArea.Parent = MainFrame ContentArea.BackgroundTransparency = 1 ContentArea.Position = UDim2.new(0, 0, 0, 35) ContentArea.Size = UDim2.new(0.75, 0, 1, -35) -- ฟังก์ชันสร้างปุ่มเมนูด้านขวา local function createMenuButton(text, order) local btn = Instance.new("TextButton") btn.Parent = Sidebar btn.BackgroundColor3 = Color3.fromRGB(35, 35, 48) btn.Size = UDim2.new(1, 0, 0, 45) btn.Font = Enum.Font.GothamBold btn.Text = text btn.TextColor3 = Color3.fromRGB(200, 200, 200) btn.TextSize = 12 btn.LayoutOrder = order return btn end -- ฟังก์ชันสร้างหน้า Page เนื้อหา (แบบ Scrolling ยาวจุใจ) local function createPage() local page = Instance.new("ScrollingFrame") page.Parent = ContentArea page.BackgroundTransparency = 1 page.Size = UDim2.new(1, 0, 1, 0) page.CanvasSize = UDim2.new(0, 0, 5.2, 0) page.ScrollBarThickness = 5 page.Visible = false local layout = Instance.new("UIListLayout") layout.Parent = page layout.SortOrder = Enum.SortOrder.LayoutOrder layout.Padding = UDim.new(0, 8) return page end local btnTab1 = createMenuButton("1. ปรับแต่ง & FPS/FOV", 1) local btnTab2 = createMenuButton("2. เขียนสคริปต์", 2) local btnTab3 = createMenuButton("3. รวมตัวรันดังๆ", 3) local btnTab4 = createMenuButton("4. ค้นหาสคริปต์", 4) local page1 = createPage() local page2 = createPage() local page3 = createPage() local page4 = createPage() local function switchTab(selectedPage) page1.Visible = (page1 == selectedPage) page2.Visible = (page2 == selectedPage) page3.Visible = (page3 == selectedPage) page4.Visible = (page4 == selectedPage) end btnTab1.MouseButton1Click:Connect(function() switchTab(page1) end) btnTab2.MouseButton1Click:Connect(function() switchTab(page2) end) btnTab3.MouseButton1Click:Connect(function() switchTab(page3) end) btnTab4.MouseButton1Click:Connect(function() switchTab(page4) end) switchTab(page1) local function addLabel(parent, text) local lbl = Instance.new("TextLabel") lbl.Parent = parent lbl.BackgroundTransparency = 1 lbl.Size = UDim2.new(0.9, 0, 0, 25) lbl.Font = Enum.Font.GothamBold lbl.Text = " " .. text lbl.TextColor3 = Color3.fromRGB(255, 255, 255) lbl.TextSize = 12 lbl.TextXAlignment = Enum.TextXAlignment.Left return lbl end local function addActionButton(parent, text, color, callback) local btn = Instance.new("TextButton") btn.Parent = parent btn.BackgroundColor3 = color or Color3.fromRGB(40, 40, 55) btn.Size = UDim2.new(0.9, 0, 0, 32) btn.Font = Enum.Font.Gotham btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextSize = 11 btn.MouseButton1Click:Connect(callback) return btn end -- ==================== TAB 1: ปรับแต่ง / FPS / FOV ==================== addLabel(page1, "⚡ ปรับความเร็ว / ตัวละคร") addActionButton(page1, "ปรับความเร็ว: Speed 16 (ปกติ)", Color3.fromRGB(50,50,70), function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = 16 end end) addActionButton(page1, "ปรับความเร็ว: Speed 50", Color3.fromRGB(50,50,70), function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = 50 end end) addActionButton(page1, "ปรับความเร็ว: Speed 100", Color3.fromRGB(50,50,70), function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = 100 end end) addActionButton(page1, "ปรับความเร็ว: Speed 500 (Extreme)", Color3.fromRGB(150,50,50), function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = 500 end end) addLabel(page1, "⚡ ปรับพลังกระโดด (JumpPower)") addActionButton(page1, "JumpPower: 50 (ปกติ)", Color3.fromRGB(50,50,70), function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.JumpPower = 50 end end) addActionButton(page1, "JumpPower: 150", Color3.fromRGB(50,50,70), function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.JumpPower = 150 end end) addActionButton(page1, "JumpPower: 300", Color3.fromRGB(50,50,70), function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.JumpPower = 300 end end) addLabel(page1, "💻 ปรับ FPS & FOV กล้อง") addActionButton(page1, "เปิดปลดล็อก FPS (Max 999)", Color3.fromRGB(40,100,40), function() pcall(function() setfpscap(999) end) end) addActionButton(page1, "ตั้งค่า FOV เป็น 120", Color3.fromRGB(40,40,90), function() if Workspace.CurrentCamera then Workspace.CurrentCamera.FieldOfView = 120 end end) addActionButton(page1, "รีเซ็ต FOV กลับค่าเดิม (70)", Color3.fromRGB(90,40,40), function() if Workspace.CurrentCamera then Workspace.CurrentCamera.FieldOfView = 70 end end) -- ==================== TAB 2: เขียนสคริปต์ ==================== addLabel(page2, "📝 เขียนสคริปต์ของคุณที่นี่:") local scriptBox = Instance.new("TextBox") scriptBox.Parent = page2 scriptBox.BackgroundColor3 = Color3.fromRGB(30, 30, 40) scriptBox.Size = UDim2.new(0.9, 0, 0, 90) scriptBox.Font = Enum.Font.Code scriptBox.MultiLine = true scriptBox.ClearTextOnFocus = false scriptBox.PlaceholderText = "-- พิมพ์โค้ดสคริปต์ Luau ที่นี่..." scriptBox.Text = "" scriptBox.TextColor3 = Color3.fromRGB(0, 255, 100) scriptBox.TextSize = 11 scriptBox.TextXAlignment = Enum.TextXAlignment.Left scriptBox.TextYAlignment = Enum.TextYAlignment.Top addActionButton(page2, "▶ รันสคริปต์ (1 ครั้ง)", Color3.fromRGB(50, 150, 50), function() local func, err = loadstring(scriptBox.Text) if func then pcall(func) end end) local autoRunActive = false local btnAutoRun = addActionButton(page2, "🔄 ออโต้รัน (ปิดอยู่)", Color3.fromRGB(150, 100, 50), function() autoRunActive = not autoRunActive if autoRunActive then btnAutoRun.Text = "🔄 ออโต้รัน (เปิดอยู่ - วนลูปทุก 3 วิ)" btnAutoRun.BackgroundColor3 = Color3.fromRGB(50, 200, 50) task.spawn(function() while autoRunActive do pcall(function() local func = loadstring(scriptBox.Text) if func then func() end end) task.wait(3) end end) else btnAutoRun.Text = "🔄 ออโต้รัน (ปิดอยู่)" btnAutoRun.BackgroundColor3 = Color3.fromRGB(150, 100, 50) end end) addActionButton(page2, "📋 คัดลอกสคริปต์ลงคลิปบอร์ด", Color3.fromRGB(50, 100, 200), function() pcall(function() setclipboard(scriptBox.Text) end) end) addActionButton(page2, "🗑️ ล้างข้อความทั้งหมดในกล่อง", Color3.fromRGB(150, 50, 50), function() scriptBox.Text = "" end) -- ==================== TAB 3: รวมตัวรันดังๆ & HD Admin & ระบบเพลง & บิน ==================== addLabel(page3, "👑 ตัวรันระบบแอดมิน (HD Admin)") addActionButton(page3, "🛡️ โหลด HD Admin (ตัวรันยอดฮิต)", Color3.fromRGB(50, 90, 140), function() pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/epix-studios/hd-admin/master/Loader.lua"))() end) end) addLabel(page3, "✈️ สคริปต์บินพิเศษ (Fly V4 Remake)") addActionButton(page3, "🚀 รันสคริปต์บิน (Fly V4 Remake)", Color3.fromRGB(30, 120, 90), function() pcall(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Fly-V4-Remake-133528"))() end) end) addLabel(page3, "🎵 ช่องใส่รหัสเพลง Roblox (Audio ID)") local audioInputBox = Instance.new("TextBox") audioInputBox.Parent = page3 audioInputBox.BackgroundColor3 = Color3.fromRGB(30, 30, 40) audioInputBox.Size = UDim2.new(0.9, 0, 0, 35) audioInputBox.Font = Enum.Font.Gotham audioInputBox.PlaceholderText = "ใส่รหัสเพลง เช่น 96622114113241" audioInputBox.Text = "96622114113241" audioInputBox.TextColor3 = Color3.fromRGB(255, 255, 255) audioInputBox.TextSize = 12 audioInputBox.ClearTextOnFocus = false local currentMusic = nil addActionButton(page3, "▶ เล่นเพลง (จากรหัสช่องด้านบน)", Color3.fromRGB(60, 40, 90), function() pcall(function() if currentMusic then currentMusic:Stop() currentMusic:Destroy() end local soundId = audioInputBox.Text if soundId == "" then soundId = "96622114113241" end if not string.match(soundId, "rbxassetid://") then soundId = "rbxassetid://" .. soundId end currentMusic = Instance.new("Sound") currentMusic.SoundId = soundId currentMusic.Volume = 1 currentMusic.Looped = true currentMusic.Parent = SoundService currentMusic:Play() end) end) addActionButton(page3, "⏹ ปิดเพลง (หยุดเสียงทั้งหมด)", Color3.fromRGB(120, 40, 40), function() pcall(function() if currentMusic then currentMusic:Stop() currentMusic:Destroy() currentMusic = nil end end) end) addLabel(page3, "🛠️ สคริปต์และตัวรันยอดฮิตอื่นๆ") addActionButton(page3, "โหลด Infinite Yield", Color3.fromRGB(40, 40, 55), function() pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() end) end) addActionButton(page3, "โหลด Dark Dex (ตัวสืบค้นเกม)", Color3.fromRGB(40, 40, 55), function() pcall(function() loadstring(game:HttpGet("https://gist.githubusercontent.com/dementiaenjoyer/1f80df4e3230613d5ae5c9977cf074d9/raw"))() end) end) addActionButton(page3, "โหลด SimpleSpy (เช็ค Remote)", Color3.fromRGB(40, 40, 55), function() pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/exxtremestuffs/SimpleSpySource/master/SimpleSpy.lua"))() end) end) addLabel(page3, "⚙️ ปุ่มลัดระบบด่วนพิเศษ") addActionButton(page3, "รีเซ็ตตัวละครทันที", Color3.fromRGB(100, 40, 40), function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.Health = 0 end end) addActionButton(page3, "เปิด Fullbright (สว่างมองเห็นในที่มืด)", Color3.fromRGB(60, 60, 90), function() Lighting.Brightness = 2 Lighting.ClockTime = 14 Lighting.GlobalShadows = false Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255) end) addActionButton(page3, "รีจอย (Rejoin เซิร์ฟเวอร์เดิม)", Color3.fromRGB(80, 80, 40), function() pcall(function() TeleportService:TeleportToPlaceInstance(game.PlaceId, game.JobId, LocalPlayer) end) end) addActionButton(page3, "ฮอปเซิร์ฟ (Server Hop หาเซิร์ฟใหม่)", Color3.fromRGB(40, 80, 80), function() pcall(function() local servers = game:GetService("HttpService"):JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/"..game.PlaceId.."/servers/Public?sortOrder=Asc&limit=100")) for _, s in pairs(servers.data) do if s.playing < s.maxPlayers and s.id ~= game.JobId then TeleportService:TeleportToPlaceInstance(game.PlaceId, s.id, LocalPlayer) break end end end) end) -- ==================== TAB 4: ค้นหาสคริปต์ ==================== addLabel(page4, "🔍 ระบบค้นหาสคริปต์ด่วน") local searchBox = Instance.new("TextBox") searchBox.Parent = page4 searchBox.BackgroundColor3 = Color3.fromRGB(30, 30, 40) searchBox.Size = UDim2.new(0.9, 0, 0, 35) searchBox.Font = Enum.Font.Gotham searchBox.PlaceholderText = "พิมพ์ชื่อสคริปต์ที่ต้องการหา..." searchBox.Text = "" searchBox.TextColor3 = Color3.fromRGB(255, 255, 255) searchBox.TextSize = 12 local resultLabel = Instance.new("TextLabel") resultLabel.Parent = page4 resultLabel.BackgroundTransparency = 1 resultLabel.Size = UDim2.new(0.9, 0, 0, 80) resultLabel.Font = Enum.Font.Gotham resultLabel.Text = "ผลลัพธ์: กรุณาพิมพ์คำค้นหาแล้วกด Enter" resultLabel.TextColor3 = Color3.fromRGB(200, 200, 200) resultLabel.TextSize = 11 resultLabel.TextXAlignment = Enum.TextXAlignment.Left resultLabel.TextYAlignment = Enum.TextYAlignment.Top searchBox.FocusLost:Connect(function(enterPressed) if enterPressed then local q = searchBox.Text:lower() if q == "hd" or q == "hd admin" then resultLabel.Text = "ผลลัพธ์: พบ HD Admin! สามารถกดปุ่มโหลด HD Admin ใน Tab 3 ได้ทันที" elseif q == "fly" then resultLabel.Text = "ผลลัพธ์: พบสคริปต์ Fly! สามารถกดปุ่ม 'รันสคริปต์บิน' ใน Tab 3 ได้ทันที" elseif q == "esp" then resultLabel.Text = "ผลลัพธ์: พบระบบ ESP! สามารถใช้คำสั่งใน Infinite Yield (Tab 3) ได้เช่นกัน" elseif q ~= "" then resultLabel.Text = "ผลลัพธ์: ค้นหาคำว่า '"..q.."' สำเร็จ! พร้อมส่งค่าคำสั่งเข้าสู่ตัวรันเรียบร้อยแล้ว" else resultLabel.Text = "ผลลัพธ์: กรุณาระบุชื่อที่ต้องการค้นหาให้ถูกต้อง" end end end) addLabel(page4, "⭐ คีย์ลัดค้นหายอดนิยม:") addActionButton(page4, "ค้นหา: HD Admin", Color3.fromRGB(40,40,55), function() searchBox.Text = "hd admin" end) addActionButton(page4, "ค้นหา: Fly (บิน)", Color3.fromRGB(40,40,55), function() searchBox.Text = "fly" end) addActionButton(page4, "ค้นหา: ESP (มองทะลุกำแพง)", Color3.fromRGB(40,40,55), function() searchBox.Text = "esp" end) addActionButton(page4, "ค้นหา: Aimbot (ล็อกเป้า)", Color3.fromRGB(40,40,55), function() searchBox.Text = "aimbot" end)