-- Made By ilikelimeclips2 -- RC7 Executor - MoonSec V3 Inspired local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui screenGui.ResetOnSpawn = false -- Function to create the main Executor (after login) local function createExecutor() -- Executor Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 400, 0, 250) frame.Position = UDim2.new(0.5, -200, 0.5, -125) frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) frame.BorderSizePixel = 2 frame.BorderColor3 = Color3.fromRGB(255, 0, 0) frame.Parent = screenGui local dragging = false local dragInput, mousePos, framePos frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragInput = input mousePos = input.Position framePos = frame.Position end end) frame.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = false end end) game:GetService("UserInputService").InputChanged:Connect(function(input) if dragging then local delta = input.Position - mousePos frame.Position = UDim2.new(framePos.X.Scale, framePos.X.Offset + delta.X, framePos.Y.Scale, framePos.Y.Offset + delta.Y) end end) local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(0, 400, 0, 40) titleLabel.Position = UDim2.new(0, 0, 0, 0) titleLabel.Text = "RC7" titleLabel.TextColor3 = Color3.fromRGB(255, 204, 0) titleLabel.TextSize = 22 titleLabel.TextStrokeTransparency = 0.5 titleLabel.TextStrokeColor3 = Color3.fromRGB(255, 0, 0) titleLabel.BackgroundTransparency = 1 titleLabel.Parent = frame local textBox = Instance.new("TextBox") textBox.Size = UDim2.new(0, 360, 0, 50) textBox.Position = UDim2.new(0, 20, 0, 60) textBox.ClearTextOnFocus = false textBox.Text = 'print("made by ilikelimeclips2")' textBox.PlaceholderText = 'print("made by ilikelimeclips2")' textBox.TextColor3 = Color3.fromRGB(255, 255, 255) textBox.TextSize = 14 textBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40) textBox.BorderSizePixel = 2 textBox.BorderColor3 = Color3.fromRGB(255, 0, 0) textBox.TextWrapped = true textBox.Parent = frame -- Execute Button local executeButton = Instance.new("TextButton") executeButton.Size = UDim2.new(0, 360, 0, 50) executeButton.Position = UDim2.new(0, 20, 0, 120) executeButton.Text = "Execute Script" executeButton.TextColor3 = Color3.fromRGB(255, 255, 255) executeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) executeButton.TextSize = 18 executeButton.TextStrokeTransparency = 0.5 executeButton.TextStrokeColor3 = Color3.fromRGB(255, 255, 255) executeButton.BorderSizePixel = 2 executeButton.BorderColor3 = Color3.fromRGB(255, 0, 0) executeButton.Parent = frame -- Clear Button (Red) local clearButton = Instance.new("TextButton") clearButton.Size = UDim2.new(0, 360, 0, 50) clearButton.Position = UDim2.new(0, 20, 0, 180) clearButton.Text = "Clear" clearButton.TextColor3 = Color3.fromRGB(255, 255, 255) clearButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) clearButton.TextSize = 18 clearButton.TextStrokeTransparency = 0.5 clearButton.TextStrokeColor3 = Color3.fromRGB(255, 255, 255) clearButton.BorderSizePixel = 2 clearButton.BorderColor3 = Color3.fromRGB(255, 0, 0) clearButton.Parent = frame local function executeScript() local scriptText = textBox.Text if scriptText and scriptText ~= "" then local success, result = pcall(function() loadstring(scriptText)() end) if success then executeButton.Text = "Script Executed!" executeButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) wait(2) executeButton.Text = "Execute" executeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) else executeButton.Text = "Error!" executeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) wait(2) executeButton.Text = "Execute" executeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) warn("Error executing the script: " .. result) end else warn("No code inserted!") end end -- Function to clear the script text local function clearScript() textBox.Text = "" end -- Connect the Execute and Clear buttons executeButton.MouseButton1Click:Connect(executeScript) clearButton.MouseButton1Click:Connect(clearScript) -- Footer Label local label = Instance.new("TextLabel") label.Size = UDim2.new(0, 400, 0, 20) label.Position = UDim2.new(0, 0, 0, 230) label.Text = "RC7 🥇" label.TextColor3 = Color3.fromRGB(255, 204, 0) label.TextSize = 12 label.TextStrokeTransparency = 0.5 label.TextStrokeColor3 = Color3.fromRGB(255, 0, 0) label.BackgroundTransparency = 1 label.Parent = frame end local function createLoginScreen() local loginFrame = Instance.new("Frame") loginFrame.Size = UDim2.new(0, 400, 0, 300) loginFrame.Position = UDim2.new(0.5, -200, 0.5, -150) loginFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) loginFrame.BorderSizePixel = 2 loginFrame.BorderColor3 = Color3.fromRGB(255, 0, 0) loginFrame.Parent = screenGui local loginTitleLabel = Instance.new("TextLabel") loginTitleLabel.Size = UDim2.new(0, 400, 0, 40) loginTitleLabel.Position = UDim2.new(0, 0, 0, 0) loginTitleLabel.Text = "Login to RC7" loginTitleLabel.TextColor3 = Color3.fromRGB(255, 204, 0) loginTitleLabel.TextSize = 22 loginTitleLabel.TextStrokeTransparency = 0.5 loginTitleLabel.TextStrokeColor3 = Color3.fromRGB(255, 0, 0) loginTitleLabel.BackgroundTransparency = 1 loginTitleLabel.Parent = loginFrame local usernameTextBox = Instance.new("TextBox") usernameTextBox.Size = UDim2.new(0, 360, 0, 40) usernameTextBox.Position = UDim2.new(0, 20, 0, 60) usernameTextBox.ClearTextOnFocus = false usernameTextBox.Text = "" usernameTextBox.PlaceholderText = "Username" usernameTextBox.TextColor3 = Color3.fromRGB(255, 255, 255) usernameTextBox.TextSize = 14 usernameTextBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40) usernameTextBox.BorderSizePixel = 2 usernameTextBox.BorderColor3 = Color3.fromRGB(255, 0, 0) usernameTextBox.Parent = loginFrame local passwordTextBox = Instance.new("TextBox") passwordTextBox.Size = UDim2.new(0, 360, 0, 40) passwordTextBox.Position = UDim2.new(0, 20, 0, 110) passwordTextBox.ClearTextOnFocus = false passwordTextBox.Text = "" passwordTextBox.PlaceholderText = "Password" passwordTextBox.TextColor3 = Color3.fromRGB(255, 255, 255) passwordTextBox.TextSize = 14 passwordTextBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40) passwordTextBox.BorderSizePixel = 2 passwordTextBox.BorderColor3 = Color3.fromRGB(255, 0, 0) passwordTextBox.Parent = loginFrame local loginButton = Instance.new("ImageButton") loginButton.Size = UDim2.new(0.5, 20, 0, 230) loginButton.Position = UDim2.new(0, 75, 0, 140) loginButton.Image = "rbxassetid://105065063676470" loginButton.BackgroundTransparency = 1 loginButton.BorderSizePixel = 0 loginButton.Parent = loginFrame local errorLabel = Instance.new("TextLabel") errorLabel.Size = UDim2.new(0, 360, 0, 20) errorLabel.Position = UDim2.new(0, 20, 0, 220) errorLabel.Text = "Incorrect username or password!" errorLabel.TextColor3 = Color3.fromRGB(255, 204, 0) errorLabel.TextSize = 14 errorLabel.BackgroundTransparency = 1 errorLabel.Visible = false errorLabel.Parent = loginFrame local function validateLogin() local username = usernameTextBox.Text local password = passwordTextBox.Text if username == "=Tester" and password == "12345678" then loginFrame:Destroy() -- Destroy the login screen createExecutor() -- Create the Executor else errorLabel.Visible = true wait(2) errorLabel.Visible = false end end loginButton.MouseButton1Click:Connect(validateLogin) end createLoginScreen()