0% found this document useful (0 votes)
237 views3 pages

Vortex Hub Main Hub Source

The document outlines a script for creating a user interface using the Rayfield library in a game environment. It includes features for different categories such as 'Killers' and 'Survivors', with buttons that load specific functionalities from external URLs. Additionally, it provides options for configuration saving, a Discord integration, and a key system for access.

Uploaded by

nexuslol
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
237 views3 pages

Vortex Hub Main Hub Source

The document outlines a script for creating a user interface using the Rayfield library in a game environment. It includes features for different categories such as 'Killers' and 'Survivors', with buttons that load specific functionalities from external URLs. Additionally, it provides options for configuration saving, a Discord integration, and a key system for access.

Uploaded by

nexuslol
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

local Rayfield = loadstring(game:HttpGet('https://sirius.

menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "VortexHub.GG Category!",
Icon = 83537470545471,
LoadingTitle = "Rayfield Interface Suite",
LoadingSubtitle = "Loading UI...",
ShowText = "VortexHub!",
Theme = "Serenity",
ToggleUIKeybind = "K",
DisableRayfieldPrompts = false,
DisableBuildWarnings = false,
ConfigurationSaving = {
Enabled = true,
FolderName = nil,
FileName = "Big Hub"
},
Discord = {
Enabled = true,
Invite = "7fXDf2h3cE",
RememberJoins = true
},
KeySystem = true,
KeySettings = {
Title = "VortexHub",
Subtitle = "Key System",
Note = "Tip: discord.gg/7fXDf2h3cE, Join our Discord Server to get the
Key!",
FileName = "Key",
SaveKey = true,
GrabKeyFromSite = false,
Key = {"V3!"}
}
})

local Tab = Window:CreateTab("Categories", "badge-alert")

-- Killers Section
local KillersSection = Tab:CreateSection("Killers")

Tab:CreateButton({
Name = "Slasher Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/cprotogy-cell/
vortezhub/refs/heads/main/Salshe"))()
end
})

Tab:CreateButton({
Name = "John Doe Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/John%20doe"))()
end
})

-- Survivors Section
local SurvivorsSection = Tab:CreateSection("Survivors")

Tab:CreateButton({
Name = "Elliot Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/Final%20elliot"))()
end
})

Tab:CreateButton({
Name = "Noob Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/Noob"))()
end
})

Tab:CreateButton({
Name = "007n7 Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/007n7"))()
end
})

Tab:CreateButton({
Name = "Shedletskey Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/Final%20Shedletskey"))()
end
})

Tab:CreateButton({
Name = "Dusekkar Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/Dusekkar"))()
end
})

Tab:CreateButton({
Name = "Chance Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/Final%20chance"))()
end
})

Tab:CreateButton({
Name = "Guest1337 Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/Guest%201337"))()
end
})

Tab:CreateButton({
Name = "TwoTime Features",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortexhub/refs/heads/main/Two%20time"))()
end
})

-- Others Section
local OthersSection = Tab:CreateSection("Others")

Tab:CreateButton({
Name = "Main script (NO COMBAT)",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/articbeatles0-
ship-it/vortex/refs/heads/main/Main%20Script"))()
end
})

Tab:CreateButton({
Name = "Destroy UI",
Callback = function()
Rayfield:Destroy()
end
})

You might also like