-- 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,
})
-- Made by c00lkids103 | Join my Discord
local discord = "https://discord.gg/AeuSH2EQK"
if setclipboard then
setclipboard(discord)
print("Discord link copied to clipboard: " .. discord)
else
print("Clipboard not supported by this executor. Join manually: " .. discord)
end
-- In-game notification (shows on mobile/PC)
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "c00lkids103 Script",
Text = "Discord copied! Join: " .. discord .. "\nMade by c00lkids103",
Duration = 10,
Icon = ""
Comments
No comments yet
Be the first to share your thoughts!