-- Genesis hub | by miui 🥵 -- FDless Options Controller (Rayfield) local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "Genesis hub", LoadingTitle = "Genesis hub", LoadingSubtitle = "by miui 🥵", ConfigurationSaving = { Enabled = true, FolderName = "GenesisHub", FileName = "FDlessOptions" }, KeySystem = false }) local Tab = Window:CreateTab("FDless Options", 4483362458) --====================-- -- Opções PADRÃO FE -- --====================-- getgenv().permadeath = true getgenv().fling = true getgenv().allowshiftlock = true getgenv().ctrltp = false getgenv().placeholders = true getgenv().clickfling = false getgenv().highlightflingtargets = true getgenv().discharscripts = true getgenv().flingchangestate = true getgenv().hidedeatheffect = true getgenv().respawntp = 3 getgenv().breakjointsmethod = 1 getgenv().simrad = true --====================-- -- EXCLUSIVO Sin Dragon --====================-- getgenv().effects = true getgenv().transparent = true --====================-- -- Toggles padrão -- --====================-- Tab:CreateToggle({ Name="Permadeath", CurrentValue=permadeath, Callback=function(v) permadeath=v end }) Tab:CreateToggle({ Name="Fling", CurrentValue=fling, Callback=function(v) fling=v end }) Tab:CreateToggle({ Name="Allow Shiftlock", CurrentValue=allowshiftlock, Callback=function(v) allowshiftlock=v end }) Tab:CreateToggle({ Name="CTRL Click TP", CurrentValue=ctrltp, Callback=function(v) ctrltp=v end }) Tab:CreateToggle({ Name="Hat Placeholders", CurrentValue=placeholders, Callback=function(v) placeholders=v end }) Tab:CreateToggle({ Name="Click Fling", CurrentValue=clickfling, Callback=function(v) clickfling=v end }) Tab:CreateToggle({ Name="Highlight Fling Targets", CurrentValue=highlightflingtargets, Callback=function(v) highlightflingtargets=v end }) Tab:CreateToggle({ Name="Disable Character Scripts", CurrentValue=discharscripts, Callback=function(v) discharscripts=v end }) Tab:CreateToggle({ Name="Fling Whole Body", CurrentValue=flingchangestate, Callback=function(v) flingchangestate=v end }) Tab:CreateToggle({ Name="Hide Death Effect", CurrentValue=hidedeatheffect, Callback=function(v) hidedeatheffect=v end }) Tab:CreateToggle({ Name="Simulation Radius", CurrentValue=simrad, Callback=function(v) simrad=v end }) --====================-- -- Dropdowns -- --====================-- Tab:CreateDropdown({ Name = "Respawn TP Mode", Options = {"0 - Spawn","1 - Random Close","2 - Behind Fake Char","3 - Hide Body"}, CurrentOption = "3 - Hide Body", Callback = function(opt) respawntp = tonumber(opt:sub(1,1)) end }) Tab:CreateDropdown({ Name = "BreakJoints Method", Options = { "1 - Health + BreakJoints", "2 - Health OR BreakJoints", "3 - BreakJoints Only" }, CurrentOption = "1 - Health + BreakJoints", Callback = function(opt) breakjointsmethod = tonumber(opt:sub(1,1)) end }) --====================-- -- Sin Dragon ONLY -- --====================-- Tab:CreateSection("Sin Dragon (exclusivo)") Tab:CreateToggle({ Name = "Client Effects (Sin Dragon)", CurrentValue = effects, Callback = function(v) effects = v end }) Tab:CreateToggle({ Name = "Transparent Parts (Sin Dragon)", CurrentValue = transparent, Callback = function(v) transparent = v end }) --====================-- -- Execução FE -- --====================-- Tab:CreateButton({ Name = "FE Ak-47 🔫", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/AK-47"))() end }) Tab:CreateButton({ Name = "FE Ban hammer 🔨", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/Ban%20Hammer"))() end }) Tab:CreateButton({ Name = "FE Goner 🔪", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/Goner"))() end }) Tab:CreateButton({ Name = "FE Gale Fighter 🤛⚔️", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/Gale%20Fighter"))() end }) Tab:CreateButton({ Name = "Fe Dearsister 🔥", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/Dearsister"))() end }) Tab:CreateButton({ Name = "FE Neptunian V 🌌", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/Neptunian%20V"))() end }) Tab:CreateButton({ Name = "FE Sin Dragon 🐉🀄", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/Sin%20Dragon"))() end }) Tab:CreateButton({ Name = "FE Motorcycle 🏍️🔥", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/Motorcycle"))() end }) Tab:CreateButton({ Name = "Fe Sniper 🏹", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GenesisFE/Genesis/main/Obfuscations/Sniper"))() end }) --====================-- -- Aba Utilidades -- --====================-- local TeleportService = game:GetService("TeleportService") local Players = game:GetService("Players") local HttpService = game:GetService("HttpService") local LocalPlayer = Players.LocalPlayer local UtilsTab = Window:CreateTab("Utilidades", 4483362458) --====================-- -- Hats from Genesis -- --====================-- UtilsTab:CreateButton({ Name = "Hats from Genesis 🎩", Callback = function() local link = "https://www.roblox.com/games/14133411956/Genesis-Foundation" if setclipboard then setclipboard(link) end TeleportService:Teleport(14133411956, LocalPlayer) end }) --====================-- -- All Loadstrings -- --====================-- UtilsTab:CreateButton({ Name = "All Loadstring of Genesis", Callback = function() if setclipboard then setclipboard("https://github.com/GenesisFE/Genesis/blob/main/Loadstrings/") end end }) --====================-- -- Discord -- --====================-- UtilsTab:CreateButton({ Name = "Discord of Genesis 💿", Callback = function() if setclipboard then setclipboard("https://discord.gg/uhkYz79YhW") end end }) --====================-- -- Rejoin -- --====================-- UtilsTab:CreateButton({ Name = "Rejoin", Callback = function() TeleportService:Teleport(game.PlaceId, LocalPlayer) end }) --====================-- -- Server Hop -- --====================-- UtilsTab:CreateButton({ Name = "ServerHop", Callback = function() local placeId = game.PlaceId local servers = {} local cursor = "" repeat local url = "https://games.roblox.com/v1/games/" .. placeId .. "/servers/Public?sortOrder=Asc&limit=100" if cursor ~= "" then url = url .. "&cursor=" .. cursor end local response = HttpService:JSONDecode(game:HttpGet(url)) for _, server in pairs(response.data) do if server.playing < server.maxPlayers then table.insert(servers, server.id) end end cursor = response.nextPageCursor until not cursor or #servers > 0 if #servers > 0 then TeleportService:TeleportToPlaceInstance(placeId, servers[math.random(1, #servers)], LocalPlayer) end end })