loadstring([[ local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local correctKeys = { "Gay", "gay" } local screenGui = Instance.new("ScreenGui") screenGui.Name = "DeltaExecutor" screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local keyFrame = Instance.new("Frame") keyFrame.Parent = screenGui keyFrame.Size = UDim2.new(0.3, 0, 0.2, 0) keyFrame.Position = UDim2.new(0.35, 0, 0.4, 0) keyFrame.BackgroundColor3 = Color3.fromRGB(34, 34, 34) local keyLabel = Instance.new("TextLabel") keyLabel.Parent = keyFrame keyLabel.Size = UDim2.new(1, 0, 0.3, 0) keyLabel.BackgroundTransparency = 1 keyLabel.Text = "Enter Key" keyLabel.Font = Enum.Font.SourceSansBold keyLabel.TextSize = 20 keyLabel.TextColor3 = Color3.new(1, 1, 1) local keyBox = Instance.new("TextBox") keyBox.Parent = keyFrame keyBox.Size = UDim2.new(0.8, 0, 0.3, 0) keyBox.Position = UDim2.new(0.1, 0, 0.35, 0) keyBox.BackgroundColor3 = Color3.new(1, 1, 1) keyBox.Text = "" local checkKeyButton = Instance.new("TextButton") checkKeyButton.Parent = keyFrame checkKeyButton.Size = UDim2.new(0.8, 0, 0.3, 0) checkKeyButton.Position = UDim2.new(0.1, 0, 0.7, 0) checkKeyButton.Text = "Check Key" checkKeyButton.Font = Enum.Font.SourceSansBold checkKeyButton.TextSize = 18 checkKeyButton.TextColor3 = Color3.new(1, 1, 1) local executorFrame = Instance.new("Frame") executorFrame.Parent = screenGui executorFrame.Size = UDim2.new(0.35, 0, 0.45, 0) executorFrame.Position = UDim2.new(0.32, 0, 0.3, 0) executorFrame.BackgroundColor3 = Color3.fromRGB(34, 34, 34) executorFrame.Visible = false executorFrame.Active = true executorFrame.Draggable = true local titleLabel = Instance.new("TextLabel") titleLabel.Parent = executorFrame titleLabel.Size = UDim2.new(1, 0, 0.1, 0) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "Rainbow Executor" titleLabel.Font = Enum.Font.SourceSansBold titleLabel.TextSize = 22 titleLabel.TextColor3 = Color3.new(1, 1, 1) local textBox = Instance.new("TextBox") textBox.Parent = executorFrame textBox.Size = UDim2.new(0.9, 0, 0.55, 0) textBox.Position = UDim2.new(0.05, 0, 0.15, 0) textBox.BackgroundColor3 = Color3.new(1, 1, 1) textBox.Text = "Enter script here" textBox.Font = Enum.Font.SourceSans textBox.TextSize = 18 textBox.ClearTextOnFocus = true textBox.TextWrapped = true textBox.MultiLine = true local executeButton = Instance.new("TextButton") executeButton.Parent = executorFrame executeButton.Size = UDim2.new(0.4, 0, 0.15, 0) executeButton.Position = UDim2.new(0.05, 0, 0.75, 0) executeButton.Text = "Execute" executeButton.Font = Enum.Font.SourceSansBold executeButton.TextSize = 18 executeButton.TextColor3 = Color3.new(1, 1, 1) local clearButton = Instance.new("TextButton") clearButton.Parent = executorFrame clearButton.Size = UDim2.new(0.4, 0, 0.15, 0) clearButton.Position = UDim2.new(0.55, 0, 0.75, 0) clearButton.Text = "Clear" clearButton.Font = Enum.Font.SourceSansBold clearButton.TextSize = 18 clearButton.TextColor3 = Color3.new(1, 1, 1) local closeButton = Instance.new("TextButton") closeButton.Parent = executorFrame closeButton.Size = UDim2.new(0.15, 0, 0.1, 0) closeButton.Position = UDim2.new(0.83, 0, 0) closeButton.Text = "X" closeButton.Font = Enum.Font.SourceSansBold closeButton.TextSize = 18 closeButton.TextColor3 = Color3.new(1, 1, 1) local toggleButton = Instance.new("TextButton") toggleButton.Parent = screenGui toggleButton.Size = UDim2.new(0.08, 0, 0.05, 0) toggleButton.Position = UDim2.new(0.02, 0, 0.5, 0) toggleButton.Text = "Toggle UI" toggleButton.Font = Enum.Font.SourceSansBold toggleButton.TextSize = 18 toggleButton.TextColor3 = Color3.new(1, 1, 1) toggleButton.Visible = false toggleButton.Active = true toggleButton.Draggable = true checkKeyButton.MouseButton1Click:Connect(function() for _, key in ipairs(correctKeys) do if keyBox.Text == key then executorFrame.Visible = true toggleButton.Visible = true keyFrame:Destroy() return end end screenGui:Destroy() end) executeButton.MouseButton1Click:Connect(function() local scriptCode = textBox.Text if scriptCode:match("^require%(") then local moduleId = scriptCode:match("require%((%d+)%)") if moduleId then local success, module = pcall(require, tonumber(moduleId)) if success then print("Module loaded successfully.") else warn("Failed to load module:", module) end else warn("Invalid require() format.") end else local func, err = loadstring(scriptCode) if func then func() else warn("Error in script: " .. err) end end end) clearButton.MouseButton1Click:Connect(function() textBox.Text = "" end) toggleButton.MouseButton1Click:Connect(function() executorFrame.Visible = not executorFrame.Visible end) closeButton.MouseButton1Click:Connect(function() executorFrame.Visible = false end) local function applyRainbowEffect(obj) local hue = 0 while obj.Parent do hue = (hue + 1) % 360 obj.BackgroundColor3 = Color3.fromHSV(hue / 360, 1, 1) wait(0.1) end end spawn(function() applyRainbowEffect(executorFrame) end) spawn(function() applyRainbowEffect(checkKeyButton) end) spawn(function() applyRainbowEffect(executeButton) end) spawn(function() applyRainbowEffect(clearButton) end) spawn(function() applyRainbowEffect(closeButton) end) spawn(function() applyRainbowEffect(toggleButton) end) ]])()