-- Load the Rayfield library local success, Rayfield = pcall(function() return loadstring(game:HttpGet("https://sirius.menu/rayfield", true))() end) if not success or not Rayfield then warn("Rayfield library could not be loaded!") return end print("Rayfield loaded!") -- Create the UI window local Window = Rayfield:CreateWindow({ Name = "Universal Game Hub", LoadingTitle = "Loading...", LoadingSubtitle = "Please wait...", ConfigurationSaving = { Enabled = false, FolderName = "MyRayfieldConfigs", FileName = "MyUniversalUI" }, Discord = { Enabled = false, Invite = "discord_invite_link", RememberJoins = true } }) if not Window then warn("UI window could not be created!") return end print("UI successfully created!") -------------------------------------------------------------- -- Alphabetically Sorted Tabs (Except Main & Credits at the End) -- Ball And Axe Tab local BallAndAxeTab = Window:CreateTab("Ball And Axe") BallAndAxeTab:CreateButton({ Name = "Ball And Axe V1 (No Key No Axe Limit)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/ball-and-axe-Remove-Limits-6225"))() end }) BallAndAxeTab:CreateButton({ Name = "Ball And Axe V2 (No Key Auto Win)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/ball-and-axe-Auto-Win-OP-6209"))() end }) -- Build A Boat Tab local BuildABoatTab = Window:CreateTab("Build a Boat") BuildABoatTab:CreateButton({ Name = "Build A Boat V1 (Key)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Build-A-Boat-For-Treasure-NovBot-Revmp-17896", true))() end }) -- Breaking Point Tab local BreakingPointTab = Window:CreateTab("Breaking Point") BreakingPointTab:CreateButton({ Name = "Breaking Point V1 (No Key)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/H4R7NHacks/Obfuscated/master/Breaking%20Point%20H4R7N%20Hack.lua", true))() end }) BreakingPointTab:CreateButton({ Name = "Breaking Point V2 (No Key)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/shimesuto/SymestsBPthingy/refs/heads/main/mainscript.lua", true))() end }) -- Demonology Tab local DemonologyTab = Window:CreateTab("Demonology") DemonologyTab:CreateButton({ Name = "Demonology V1 (No Key)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Demonology-Demonologyscript-27838", true))() end }) DemonologyTab:CreateButton({ Name = "Demonology V2 (No Key)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Demonology-LEDEMONSCRIPT-28378", true))() end }) DemonologyTab:CreateButton({ Name = "Demonology V3 (Key)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Demonology-Pulse-Hub-29045", true))() end }) -- Evade Tab local EvadeTab = Window:CreateTab("Evade") EvadeTab:CreateButton({ Name = "Evade V1 (No Key. Auto Rose Farm U Cant Stop This)", Callback = function() getgenv().farm = true loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/refs/heads/main/evade-farm.lua", true))('Made by: t.me/arceusxscripts') end }) -- Math Murder Tab local MathMurderTab = Window:CreateTab("Math Murder") MathMurderTab:CreateButton({ Name = "Math Murder V1 (No Key Show Answer)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Math-Murder-Reveal-Answer-29160", true))() end }) -- Prison Life Tab local PrisonLifeTab = Window:CreateTab("Prison Life") PrisonLifeTab:CreateButton({ Name = "Prison Life Admin V1 (No Key)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Prison-Life-PRIZZ-28891", true))() end }) PrisonLifeTab:CreateButton({ Name = "Prison Life V2 (No Key Unlimited Stamina)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Prison-Life-(Cars-fixed!)-Inf-Stamina-NO-BUGS-4782"))() end }) -- Shrimp Game Tab local ShrimpGameTab = Window:CreateTab("Shrimp Game") ShrimpGameTab:CreateButton({ Name = "Red Light Green Light Auto Finish (Click This Button And Move The Red Line And Use This In Only Red L Green L)", Callback = function() local player = game.Players.LocalPlayer if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.CFrame = CFrame.new(153, 4, 713) else warn("Character or HumanoidRootPart not found!") end end }) -- TPS Street Soccer Tab local TPSStreetSoccerTab = Window:CreateTab("TPS Street Soccer") TPSStreetSoccerTab:CreateButton({ Name = "TPS Street Soccer V1 (No Key)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/DamThien332/Atlas.dev/refs/heads/main/Loader.lua", true))() end }) -- TPS Ultimate Soccer Tab local TPSUltimateSoccerTab = Window:CreateTab("TPS Ultimate Soccer") TPSUltimateSoccerTab:CreateButton({ Name = "TPS Ultimate Soccer V1 Reach (No Key)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/TPS-Ultimate-Soccer-Reach-27435", true))() end }) -- United Trip Game Tab local UnitedTripGameTab = Window:CreateTab("United Trip Game") UnitedTripGameTab:CreateButton({ Name = "Untitled Trip Game V1 (No Key Admin OP)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-QuirkyCMD-FE-admin-8667"))() end }) -------------------------------------------------------------- -- Main Tab (Moved to the End) local MainTab = Window:CreateTab("Main") MainTab:CreateLabel("Made By Dark_Light363") -- Credits Tab (Moved to the End) local CreditsTab = Window:CreateTab("Credits") CreditsTab:CreateLabel("cnoxYT") CreditsTab:CreateLabel("Lil_TimmyFrom2018") CreditsTab:CreateLabel("Nenehoplatan_56") CreditsTab:CreateLabel("mango666") CreditsTab:CreateLabel("-Dark_Sleeper-") print("All tabs and buttons were added successfully!")