-- Phenix Hub | [⚡] Hyper Speed Runner - Auto Win / Cash Land -- Custom version with Rayfield + Key: youyou local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Phenix Hub", LoadingTitle = "Phenix Hub - Loading...", LoadingSubtitle = "Hyper Speed Runner OP", ConfigurationSaving = { Enabled = false, }, KeySystem = false, -- We handle key manually below }) -- Key system (custom, not built-in Rayfield key) local correctKey = "youyou" local keyInput = "" local KeyTab = Window:CreateTab("Key System") local KeySection = KeyTab:CreateSection("Phenix Hub Access") KeyTab:CreateInput({ Name = "Enter Key", PlaceholderText = "Type 'youyou' here...", RemoveTextAfterFocusLost = false, Callback = function(Text) keyInput = Text end, }) KeyTab:CreateButton({ Name = "Unlock Phenix Hub", Callback = function() if keyInput == correctKey then Rayfield:Notify({ Title = "Phenix Hub Unlocked", Content = "Welcome! Loading auto-win features for cash & wins...", Duration = 5, Image = 4483362458, -- optional cool icon }) -- Load the reliable SandMan-style auto-win script (auto lands/completes for cash) loadstring(game:HttpGet("https://raw.githubusercontent.com/iwasonceagod/SandManScripts/refs/heads/main/HyperSpeedRunner"))() -- Main tab with controls local MainTab = Window:CreateTab("Main") local MainSection = MainTab:CreateSection("Phenix Features") MainTab:CreateButton({ Name = "Auto Win (Land on Cash FINISH)", Callback = function() -- Re-trigger the loaded script's win logic if it has a function, or just reload loadstring(game:HttpGet("https://raw.githubusercontent.com/iwasonceagod/SandManScripts/refs/heads/main/HyperSpeedRunner"))() Rayfield:Notify({ Title = "Auto Win Activated", Content = "Phenix Hub forcing win → should land on cash part & award 100000 Cash.", Duration = 6, }) end, }) MainTab:CreateToggle({ Name = "Infinite Steps / Speed", CurrentValue = false, Callback = function(Value) if Value then -- Simple speed boost if loaded script doesn't handle it local hum = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") if hum then hum.WalkSpeed = 500 end Rayfield:Notify({Title = "Infinite Speed ON", Content = "Run faster - Phenix style!", Duration = 4}) else local hum = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") if hum then hum.WalkSpeed = 16 end end end, }) MainTab:CreateParagraph({ Title = "Phenix Hub Info", Content = "This is your custom Phenix Hub version!\nLoaded the working auto-win script.\nPress 'Auto Win' to force finish → cash on the blue FINISH part.\nUse on alt account - game may detect heavy use.\nEnjoy farming! 🔥" }) else Rayfield:Notify({ Title = "Access Denied", Content = "Wrong key! Try 'youyou' again.", Duration = 4, }) end end, }) -- Initial welcome notify Rayfield:Notify({ Title = "Phenix Hub", Content = "Enter key: **youyou** to unlock your custom hub for Hyper Speed Runner.", Duration = 8, })