local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "—͟͞͞Project Mhx™", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default). LoadingTitle = "Making finding keyless scripts easier", LoadingSubtitle = "Mhx", ShowText = "Mhx", -- for mobile users to unhide rayfield, change if you'd like Theme = "Green", -- Check https://docs.sirius.menu/rayfield/configuration/themes ToggleUIKeybind = "K", -- The keybind to toggle the UI visibility (string like "K" or Enum.KeyCode) DisableRayfieldPrompts = false, DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface ConfigurationSaving = { Enabled = true, FolderName = nil, -- Create a custom folder for your hub/game FileName = "Big Hub" }, Discord = { Enabled = false, -- Prompt the user to join your Discord server if their executor supports it Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD RememberJoins = true -- Set this to false to make them join the discord every time they load it up }, KeySystem = false, -- Set this to true to use our key system KeySettings = { Title = "Untitled", Subtitle = "Key System", Note = "No method of obtaining the key is provided", -- Use this to tell the user how to get a key FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22") } }) local Tab = Window:CreateTab("Main", 4483362458) -- Title, Image local Divider = Tab:CreateDivider() local Button = Tab:CreateButton({ Name = "Flappy bird", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Roblox-Flappy-Bird-Resize-Pipes-and-No-Floor-Death-33829"))() end, }) local Button = Tab:CreateButton({ Name = "Prison Life", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/zenss555a/script/refs/heads/main/Prison-Life.lua", true))() end, }) local Button = Tab:CreateButton({ Name = "Spelling bee", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/PreppyHub/PreppyHub/refs/heads/main/PreppyHub"))() end, }) local Button = Tab:CreateButton({ Name = "Blox fruits", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/flazhy/QuantumOnyx/refs/heads/main/QuantumOnyx.lua"))() end, }) local Button = Tab:CreateButton({ Name = "Blade ball", Callback = function() loadstring(game:HttpGet('https://pastebin.com/raw/idKUExya'))() end, }) local Button = Tab:CreateButton({ Name = "Inf yield", Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/edgeIY/infiniteyield/master/source'))() end, }) local Button = Tab:CreateButton({ Name = "Word Bomb", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/SmoxHub/SmoxHub/main/Word%20Bomb"))() end, }) local Button = Tab:CreateButton({ Name = "Rivals", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/ArtChivegroup/Roblox/refs/heads/main/script/rivals-aimbot-esp.lua"))() end, }) local Button = Tab:CreateButton({ Name = "Steal a brainrot", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/VOXHOB/steal-a-brainrot/refs/heads/main/lunarhub.lua"))() end, }) local Tab = Window:CreateTab("Discord", 4483362458) -- Title, Image local Button = Tab:CreateButton({ Name = "https://discord.gg/aF4fuWqvbm", Callback = function() end, })