-- Team ERROR_ERROR777 GUI v8 - Enhanced for Delta Executor repeat task.wait() until game:IsLoaded() local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local LocalPlayer = Players.LocalPlayer repeat task.wait() until LocalPlayer and LocalPlayer:FindFirstChild("PlayerGui") -- Check for Delta Executor if identifyexecutor and identifyexecutor() ~= "Delta" then warn("This GUI is optimized for Delta Executor.") end -- Safe loader for scripts local function safeLoad(url) if loadstring and game.HttpGet then local success, result = pcall(function() return loadstring(game:HttpGet(url))() end) if not success then warn("Failed to load:", url) end else warn("loadstring or HttpGet not supported on this executor.") end end -- GUI Setup local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "ERROR777_GUI_v8" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = (gethui and gethui()) or LocalPlayer:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 360, 0, 550) Frame.Position = UDim2.new(0.5, -180, 0.5, -275) Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui -- Title local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundColor3 = Color3.fromRGB(0, 80, 0) Title.Text = "Team ERROR_ERROR777 - GUI v8" Title.TextColor3 = Color3.new(1, 1, 1) Title.Font = Enum.Font.GothamBold Title.TextSize = 20 Title.Parent = Frame -- Credit local Credit = Instance.new("TextLabel") Credit.Size = UDim2.new(1, 0, 0, 20) Credit.Position = UDim2.new(0, 0, 1, -20) Credit.Text = "Made for Delta Executor - ERROR777 Style" Credit.TextColor3 = Color3.fromRGB(180, 180, 180) Credit.Font = Enum.Font.SourceSansItalic Credit.TextSize = 14 Credit.BackgroundTransparency = 1 Credit.Parent = Frame -- Page data setup local PageInfo = { Main = { "Fly GUI V3", "Noclip Toggle", "Adjust FOV (Zoom Out)", "Reset Character", "Destroy GUI", "Decal Spam", "Mini C00lkidd GUI", "Theme", "Nuke", "Rc7" -- New button added here }, OtherActions = { "Fire All", "Play Tubers93 Lost Fringgt Confused Sound", "IY", "Xpress045 GUI", "Message Every Player", "john doe", "4x2x9x4x0", "Tornado" -- New button added here } } -- Create Pages local Pages = {} local function createPage(pageName) local pageFrame = Instance.new("Frame") pageFrame.Size = UDim2.new(1, 0, 1, -100) pageFrame.Position = UDim2.new(0, 0, 0, 40) pageFrame.BackgroundTransparency = 1 pageFrame.Visible = false pageFrame.Name = pageName pageFrame.Parent = Frame Pages[pageName] = pageFrame end for pageName, _ in pairs(PageInfo) do createPage(pageName) end -- Page buttons local function createPageButton(text, targetPage, posX) local button = Instance.new("TextButton") button.Size = UDim2.new(0.5, -15, 0, 40) button.Position = UDim2.new(posX, 5, 1, -60) button.BackgroundColor3 = Color3.fromRGB(0, 150, 0) button.Text = text button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.GothamBold button.TextSize = 16 button.Parent = Frame button.MouseButton1Click:Connect(function() for _, page in pairs(Pages) do page.Visible = false end Pages[targetPage].Visible = true end) end local index = 0 for pageName, _ in pairs(PageInfo) do createPageButton(pageName, pageName, index * 0.5) index += 1 end -- Button Info Table local ButtonInfo = { {"Fly GUI V3", function() safeLoad("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt") end}, {"Noclip Toggle", function() local noclip = false game:GetService("RunService").Stepped:Connect(function() if noclip then for _, part in pairs(LocalPlayer.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) noclip = not noclip end}, {"Adjust FOV (Zoom Out)", function() local cam = workspace.CurrentCamera cam.FieldOfView = (cam.FieldOfView == 70) and 120 or 70 end}, {"Reset Character", function() LocalPlayer:LoadCharacter() end}, {"Destroy GUI", function() ScreenGui:Destroy() end}, {"Decal Spam", function() local decalID = 16704086489 function exPro(root) for _, v in pairs(root:GetChildren()) do if v:IsA("Decal") and v.Texture ~= "http://www.roblox.com/asset/?id="..decalID then v.Parent = nil elseif v:IsA("BasePart") then v.Material = "Plastic" v.Transparency = 0 for _, face in ipairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal", v) decal.Texture = "http://www.roblox.com/asset/?id="..decalID decal.Face = face end end exPro(v) end end exPro(game.Workspace) local sky = Instance.new("Sky", game.Lighting) sky.SkyboxBk = "http://www.roblox.com/asset/?id="..decalID sky.SkyboxDn = sky.SkyboxBk sky.SkyboxFt = sky.SkyboxBk sky.SkyboxLf = sky.SkyboxBk sky.SkyboxRt = sky.SkyboxBk sky.SkyboxUp = sky.SkyboxBk game.Lighting.TimeOfDay = "12:00:00" end}, {"Mini C00lkidd GUI", function() safeLoad('https://pastebin.com/raw/ETHVPcp1') end}, {"Theme", function() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://140009716850576" sound.Volume = 30 sound.Parent = workspace sound:Play() sound.Ended:Connect(function() sound:Destroy() end) end}, {"Nuke", function() local rustTextureId = "rbxassetid://9427053150" local function applyRustTexture(part) if part:IsA("BasePart") then for _, decal in ipairs(part:GetDescendants()) do if decal:IsA("Decal") or decal:IsA("Texture") then decal:Destroy() end end for _, face in ipairs(Enum.NormalId:GetEnumItems()) do local rust = Instance.new("Decal") rust.Texture = rustTextureId rust.Face = face rust.Parent = part end part.Material = Enum.Material.CorrodedMetal end end for _, part in pairs(workspace:GetDescendants()) do applyRustTexture(part) end local nuke = Instance.new("Part") nuke.Size = Vector3.new(10, 10, 10) nuke.Position = workspace.FallenPartsDestroyHeight + Vector3.new(0, 100, 0) nuke.Anchored = true nuke.BrickColor = BrickColor.new("Bright red") nuke.Name = "NUKE" nuke.Parent = workspace local nukeFallTween = game:GetService("TweenService"):Create(nuke, TweenInfo.new(5, Enum.EasingStyle.Linear, Enum.EasingDirection.Out), {Position = workspace:FindFirstChildWhichIsA("BasePart").Position + Vector3.new(0, 50, 0)}) nukeFallTween:Play() local explosion = Instance.new("Explosion") explosion.Position = nuke.Position explosion.BlastRadius = 100 explosion.BlastPressure = 1000000 explosion.Parent = workspace nukeFallTween.Completed:Wait() local explosionEffect = Instance.new("Explosion") explosionEffect.Position = nuke.Position explosionEffect.BlastRadius = 100 explosionEffect.BlastPressure = 1000000 explosionEffect.Parent = workspace wait(1) nuke:Destroy() end}, {"Fire All", function() for _, p in pairs(Players:GetPlayers()) do if p.Character then for _, part in pairs(p.Character:GetDescendants()) do if part:IsA("BasePart") then local fire = Instance.new("Fire", part) fire.Size = 5 fire.Heat = 10 end end end end end}, {"Play Tubers93 Lost Fringgt Confused Sound", function() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://103215672097028" sound.Volume = 30 sound.Parent = workspace sound:Play() sound.Ended:Connect(function() sound:Destroy() end) end}, {"IY", function() safeLoad('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source') end}, {"Xpress045 GUI", function() safeLoad("https://pastebin.com/raw/nW5pdTb0") end}, {"Message Every Player", function() for _, player in pairs(Players:GetPlayers()) do if player:FindFirstChild("PlayerGui") then local msgGui = Instance.new("ScreenGui") msgGui.Name = "ERROR777_Message" msgGui.ResetOnSpawn = false msgGui.Parent = player:FindFirstChild("PlayerGui") local msgLabel = Instance.new("TextLabel", msgGui) msgLabel.Size = UDim2.new(1, 0, 0.1, 0) msgLabel.Position = UDim2.new(0, 0, 0, 0) msgLabel.BackgroundColor3 = Color3.fromRGB(120, 0, 0) msgLabel.Text = "This game got fucked up - by Team ERROR_ERROR777" msgLabel.TextColor3 = Color3.new(1, 1, 1) msgLabel.Font = Enum.Font.GothamBlack msgLabel.TextScaled = true delay(5, function() msgGui:Destroy() end) end end end}, {"john doe", function() safeLoad("https://rawscripts.net/raw/Client-Replication-John-doe-up-by-gojohdkaisenkt-34198") end}, {"4x2x9x4x0", function() safeLoad("https://rawscripts.net/raw/Universal-Script-4x2x9x4x0-v1-gui-33207") end}, {"Tornado", function() safeLoad("https://rawscripts.net/raw/Universal-Script-Super-ring-parts-V6-Open-source-No-chat-26899") end}, {"Rc7", function() -- New button's function loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Red-rc7-executor-26711"))() end} } -- Generate Buttons local function generateButtonsForPage(pageName, buttonNames) local buttonsOnPage = {} for _, name in ipairs(buttonNames) do for _, data in ipairs(ButtonInfo) do if data[1] == name then table.insert(buttonsOnPage, data) break end end end for i, data in ipairs(buttonsOnPage) do local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -20, 0, 35) btn.Position = UDim2.new(0, 10, 0, 10 + ((i - 1) * 40)) btn.BackgroundColor3 = Color3.fromRGB(0, 180, 0) btn.Text = data[1] btn.TextColor3 = Color3.new(1, 1, 1) btn.Font = Enum.Font.Code btn.TextSize = 16 btn.Parent = Pages[pageName] btn.MouseButton1Click:Connect(data[2]) end end -- Fill pages for pageName, buttonNames in pairs(PageInfo) do generateButtonsForPage(pageName, buttonNames) end -- Show default Pages["Main"].Visible = true