-- Create ScreenGui local screenGui = Instance.new("ScreenGui", game.Players.LocalPlayer:WaitForChild("PlayerGui")) screenGui.Name = "c00lzianeseGUI" screenGui.ResetOnSpawn = false -- Rainbow effect function local function rainbowText(obj) coroutine.wrap(function() local hue = 0 while true do obj.TextColor3 = Color3.fromHSV(hue, 1, 1) hue = (hue + 0.01) % 1 wait() end end)() end -- Login Frame local loginFrame = Instance.new("Frame", screenGui) loginFrame.Size = UDim2.new(0, 300, 0, 200) loginFrame.Position = UDim2.new(0.5, -150, 0.5, -100) loginFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) loginFrame.Draggable = true loginFrame.Active = true local loginTitle = Instance.new("TextLabel", loginFrame) loginTitle.Size = UDim2.new(1, 0, 0.2, 0) loginTitle.Text = "c00lzianese executor" loginTitle.BackgroundTransparency = 1 rainbowText(loginTitle) local passwordBox = Instance.new("TextBox", loginFrame) passwordBox.PlaceholderText = "Enter Password" passwordBox.Size = UDim2.new(0.8, 0, 0.2, 0) passwordBox.Position = UDim2.new(0.1, 0, 0.4, 0) local loginButton = Instance.new("TextButton", loginFrame) loginButton.Text = "Login" loginButton.Size = UDim2.new(0.5, 0, 0.2, 0) loginButton.Position = UDim2.new(0.25, 0, 0.7, 0) -- Main Executor GUI local mainGUI = Instance.new("Frame") mainGUI.Size = UDim2.new(0, 500, 0, 350) mainGUI.Position = UDim2.new(0.3, 0, 0.3, 0) mainGUI.BackgroundColor3 = Color3.fromRGB(150, 0, 0) mainGUI.Visible = false mainGUI.Draggable = true mainGUI.Active = true mainGUI.Parent = screenGui local title = Instance.new("TextLabel", mainGUI) title.Text = "c00lzianese executor" title.Size = UDim2.new(1, 0, 0.1, 0) title.BackgroundTransparency = 1 title.TextColor3 = Color3.new(1, 1, 1) local scriptBox = Instance.new("TextBox", mainGUI) scriptBox.Size = UDim2.new(0.9, 0, 0.3, 0) scriptBox.Position = UDim2.new(0.05, 0, 0.15, 0) scriptBox.MultiLine = true scriptBox.ClearTextOnFocus = false local attached = false -- Buttons local function createButton(text, pos, callback) local btn = Instance.new("TextButton", mainGUI) btn.Text = text btn.Size = UDim2.new(0.18, 0, 0.1, 0) btn.Position = pos btn.BackgroundColor3 = Color3.new(0, 0, 0) btn.TextColor3 = Color3.new(1, 1, 1) btn.MouseButton1Click:Connect(callback) return btn end createButton("Execute", UDim2.new(0.05, 0, 0.5, 0), function() if attached then loadstring(scriptBox.Text)() else game.Players.LocalPlayer:Kick("Please attach before executing!") end end) createButton("Clear", UDim2.new(0.25, 0, 0.5, 0), function() scriptBox.Text = "" end) createButton("Attach", UDim2.new(0.45, 0, 0.5, 0), function() attached = true end) -- Options Frame local optionsFrame = Instance.new("Frame", screenGui) optionsFrame.Size = UDim2.new(0, 300, 0, 200) optionsFrame.Position = UDim2.new(0.35, 0, 0.35, 0) optionsFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) optionsFrame.Visible = false optionsFrame.Active = true optionsFrame.Draggable = true createButton("Options", UDim2.new(0.65, 0, 0.5, 0), function() optionsFrame.Visible = true end) -- Option Checkboxes (basic toggles) local function createToggle(text, pos) local toggle = Instance.new("TextButton", optionsFrame) toggle.Size = UDim2.new(0.8, 0, 0.2, 0) toggle.Position = pos toggle.Text = text .. ": OFF" toggle.TextColor3 = Color3.new(1, 1, 1) toggle.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) local state = false toggle.MouseButton1Click:Connect(function() state = not state toggle.Text = text .. ": " .. (state and "ON" or "OFF") end) end createToggle("FPS Boost", UDim2.new(0.1, 0, 0.1, 0)) createToggle("Auto-Execute", UDim2.new(0.1, 0, 0.35, 0)) -- Exit Options local exitOptions = Instance.new("TextButton", optionsFrame) exitOptions.Text = "X" exitOptions.Size = UDim2.new(0.1, 0, 0.1, 0) exitOptions.Position = UDim2.new(0.9, -30, 0, 0) exitOptions.MouseButton1Click:Connect(function() optionsFrame.Visible = false end) -- Hub Frame local hubFrame = Instance.new("Frame", screenGui) hubFrame.Size = UDim2.new(0, 300, 0, 200) hubFrame.Position = UDim2.new(0.4, 0, 0.3, 0) hubFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) hubFrame.Visible = false hubFrame.Draggable = true hubFrame.Active = true createButton("Hub", UDim2.new(0.85, 0, 0.5, 0), function() hubFrame.Visible = true end) local function hubButton(name, scriptText, posY) local btn = Instance.new("TextButton", hubFrame) btn.Size = UDim2.new(0.8, 0, 0.15, 0) btn.Position = UDim2.new(0.1, 0, posY, 0) btn.Text = name btn.MouseButton1Click:Connect(function() scriptBox.Text = scriptText end) end hubButton("Infinite Yields", "loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()", 0.1) hubButton("Dark Dex", "execute infinite yields and type dex or explorer on it", 0.3) -- Minimize system local minimize = Instance.new("TextButton", mainGUI) minimize.Text = "X" minimize.Size = UDim2.new(0.05, 0, 0.05, 0) minimize.Position = UDim2.new(0.95, -25, 0, 0) local minimizedCircle = Instance.new("TextButton", screenGui) minimizedCircle.Text = "executor" minimizedCircle.Size = UDim2.new(0, 100, 0, 30) minimizedCircle.Position = UDim2.new(0.9, 0, 0.05, 0) minimizedCircle.Visible = false minimizedCircle.Draggable = true minimize.MouseButton1Click:Connect(function() mainGUI.Visible = false minimizedCircle.Visible = true end) minimizedCircle.MouseButton1Click:Connect(function() mainGUI.Visible = true minimizedCircle.Visible = false end) -- Login Button Function loginButton.MouseButton1Click:Connect(function() if passwordBox.Text == "c00lkidd" then loginFrame.Visible = false mainGUI.Visible = true else passwordBox.Text = "Wrong password" end end)