local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local customTheme = { TextColor = Color3.fromRGB(200, 255, 200), Background = Color3.fromRGB(10, 20, 10), Topbar = Color3.fromRGB(15, 30, 15), Shadow = Color3.fromRGB(5, 10, 5), NotificationBackground = Color3.fromRGB(10, 20, 10), NotificationActionsBackground = Color3.fromRGB(200, 255, 200), TabBackground = Color3.fromRGB(20, 40, 20), TabStroke = Color3.fromRGB(25, 45, 25), TabBackgroundSelected = Color3.fromRGB(30, 60, 30), TabTextColor = Color3.fromRGB(200, 255, 200), SelectedTabTextColor = Color3.fromRGB(100, 200, 100), ElementBackground = Color3.fromRGB(15, 30, 15), ElementBackgroundHover = Color3.fromRGB(20, 35, 20), SecondaryElementBackground = Color3.fromRGB(10, 20, 10), ElementStroke = Color3.fromRGB(30, 50, 30), SecondaryElementStroke = Color3.fromRGB(20, 35, 20), SliderBackground = Color3.fromRGB(0, 100, 0), SliderProgress = Color3.fromRGB(0, 150, 0), SliderStroke = Color3.fromRGB(0, 120, 0), ToggleBackground = Color3.fromRGB(10, 20, 10), ToggleEnabled = Color3.fromRGB(0, 180, 0), ToggleDisabled = Color3.fromRGB(60, 80, 60), ToggleEnabledStroke = Color3.fromRGB(0, 200, 0), ToggleDisabledStroke = Color3.fromRGB(90, 110, 90), ToggleEnabledOuterStroke = Color3.fromRGB(60, 80, 60), ToggleDisabledOuterStroke = Color3.fromRGB(40, 50, 40), DropdownSelected = Color3.fromRGB(15, 30, 15), DropdownUnselected = Color3.fromRGB(10, 20, 10), InputBackground = Color3.fromRGB(10, 20, 10), InputStroke = Color3.fromRGB(40, 60, 40), PlaceholderColor = Color3.fromRGB(120, 200, 120) } local Window = Rayfield:CreateWindow({ Name = "g00byd0lan gui(C0de)", LoadingTitle = "g00byd0lan gui(C0de) 🔥", LoadingSubtitle = "by ck1", ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "g00byd0lan" }, KeySystem = false, Theme = customTheme }) local TrollTab = Window:CreateTab("Troll", 4483362458) local F3XTab = Window:CreateTab("F3X", 4483362458) local AudioTab = Window:CreateTab("Audio", 4483362458) local VisualsTab = Window:CreateTab("Visuals", 4483362458) local CrashTab = Window:CreateTab("Crash", 4483362458) -- G00BY ASSETS local g00byID = "rbxassetid://16131809733" -- Hacker face/sky/decal local rickID = "rbxassetid://7363412529" -- Rickroll bypassed local scareID = "rbxassetid://9069609200" -- Jumpscare img/sound -- Decal Spam (g00by face EVERYWHERE - spawn to avoid lag) local function DecalSpam() spawn(function() local function exPro(root) for _, v in pairs(root:GetChildren()) do if v:IsA("Decal") and v.Texture ~= g00byID then v:Destroy() end if v:IsA("BasePart") then v.Material = Enum.Material.Plastic for i,face in pairs(Enum.NormalId:GetEnumItems()) do local dec = Instance.new("Decal", v) dec.Texture = g00byID dec.Face = face end end exPro(v) end end exPro(workspace) end) end -- Red Hell Skybox (g00by vibes) local function RedSkybox() local sky = Instance.new("Sky", game.Lighting) for _, prop in {"SkyboxBk","SkyboxDn","SkyboxFt","SkyboxLf","SkyboxRt","SkyboxUp"} do sky[prop] = g00byID end game.Lighting.Brightness = 0 game.Lighting.Ambient = Color3.new(0.5,0,0) end -- 666 Doom (black neon fire red - SPAWNED) local function Doom666() spawn(function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Color = Color3.new(0,0,0) v.Material = Enum.Material.Neon local sel = Instance.new("SelectionBox", v) sel.Color3 = Color3.new(1,0,0) sel.Adornee = v local light = Instance.new("PointLight", v) light.Color = Color3.new(1,0,0) light.Brightness = 5 local fire = Instance.new("Fire", v) fire.Size = 10 local dec = Instance.new("Decal", v) dec.Texture = g00byID dec.Face = Enum.NormalId.Front end end end) end -- Unanchor All (fling city) local function UnanchorAll() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Anchored = false end end end TrollTab:CreateSection("Chaos") TrollTab:CreateButton({ Name = "Decal Spam (g00by Face Everywhere)", Callback = function() DecalSpam() end, }) TrollTab:CreateButton({ Name = "Doom 666 (Black Fire Red Glow)", Callback = function() Doom666() end, }) TrollTab:CreateButton({ Name = "Unanchor Everything (Mega Fling)", Callback = function() UnanchorAll() end, }) TrollTab:CreateButton({ Name = "Fake Shutdown (Chat Spam)", Callback = function() for i=1,50 do game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("🛑 SERVER SHUTTING DOWN - g00byd0lan owns u 🛑", "All") wait(0.1) end end, }) -- F3X F3XTab:CreateSection("Godmode Build") F3XTab:CreateButton({ Name = "Load F3X (Infinite Yield Tools)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/refs/heads/main/f3x.lua"))() end, }) -- Audio local currentSound = nil AudioTab:CreateSection("Lobby Blast") AudioTab:CreateButton({ Name = "Rickroll MAX VOL (Bypassed)", Callback = function() if currentSound then currentSound:Destroy() end currentSound = Instance.new("Sound", workspace) currentSound.SoundId = rickID currentSound.Volume = 10 currentSound.Looped = true currentSound:Play() end, }) AudioTab:CreateButton({ Name = "Stop Music", Callback = function() if currentSound then currentSound:Stop(); currentSound:Destroy() end end, }) -- Visuals VisualsTab:CreateSection("Sky & FX") VisualsTab:CreateButton({ Name = "Red Hell Skybox (g00by Void)", Callback = function() RedSkybox() end, }) local discoEnabled = false local discoConn VisualsTab:CreateToggle({ Name = "Disco Lights (Rainbow Hell)", CurrentValue = false, Callback = function(Value) discoEnabled = Value if Value then discoConn = game:GetService("RunService").Heartbeat:Connect(function() game.Lighting.ColorShiftTop = Color3.fromHSV(tick() % 5 / 5, 1, 1) game.Lighting.ColorShiftBottom = Color3.fromHSV((tick() + 2) % 5 / 5, 1, 1) end) else if discoConn then discoConn:Disconnect() end game.Lighting.ColorShiftTop = Color3.new() game.Lighting.ColorShiftBottom = Color3.new() end end, }) local partEnabled = false local partConn VisualsTab:CreateToggle({ Name = "Particle Spam (On Players)", CurrentValue = false, Callback = function(Value) partEnabled = Value if Value then partConn = game:GetService("RunService").Heartbeat:Connect(function() for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then local part = Instance.new("ParticleEmitter", plr.Character.HumanoidRootPart) part.Texture = g00byID part.VelocityInheritance = 1 part.Lifetime = NumberRange.new(1,2) part.Rate = 100 part.SpreadAngle = Vector2.new(360,360) game:GetService("Debris"):AddItem(part, 5) end end end) else if partConn then partConn:Disconnect() end end end, }) -- Crash CrashTab:CreateSection("Lobby Melt") CrashTab:CreateButton({ Name = "Part Spam Crash (8x8x8 Infinite)", Callback = function() spawn(function() while wait() do for i=1,50 do local part = Instance.new("Part", workspace) part.Size = Vector3.new(8,8,8) part.Position = Vector3.new(math.random(-500,500), 1000, math.random(-500,500)) part.Anchored = false part.BrickColor = BrickColor.Random() end end end) end, }) CrashTab:CreateButton({ Name = "Jumpscare All (FE Screen + Scream)", Callback = function() local gui = Instance.new("ScreenGui", game.CoreGui) local img = Instance.new("ImageLabel", gui) img.Size = UDim2.new(1,0,1,0) img.Position = UDim2.new(0,0,0,0) img.BackgroundTransparency = 1 img.Image = scareID img.ImageTransparency = 0 local snd = Instance.new("Sound", workspace) snd.SoundId = scareID snd.Volume = 10 snd:Play() wait(3) gui:Destroy() snd:Destroy() end, }) print("g00byd0lan gui(C0de) ck1 loaded – green/black chaos ")