game:GetService("StarterGui"):SetCore("DevConsoleVisible", true) print("Installing Project Shiba...") wait(2) print("project shiba installed..") wait(2) warn("Enjoy Fe Bypass!1") wait(2) local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://8623387557" sound.Volume = 39 sound:Play() local screenGui = Instance.new("ScreenGui") screenGui.Name = "Project LUA" screenGui.ResetOnSpawn = false screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local mainFrame = Instance.new("Frame") mainFrame.Name = "MainFrame" mainFrame.Size = UDim2.new(0, 500, 0, 300) mainFrame.Position = UDim2.new(0.5, -250, 0.3, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(240, 240, 240) mainFrame.BorderSizePixel = 0 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = screenGui local topBar = Instance.new("Frame") topBar.Size = UDim2.new(1, 0, 0, 40) topBar.BackgroundColor3 = Color3.fromRGB(200, 200, 200) topBar.BorderSizePixel = 0 topBar.Parent = mainFrame local logoImage = Instance.new("ImageLabel") logoImage.Size = UDim2.new(0, 30, 0, 30) logoImage.Position = UDim2.new(0, 10, 0.5, -15) logoImage.BackgroundTransparency = 1 logoImage.Image = "rbxassetid://126413849639794" logoImage.Parent = topBar local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(0, 200, 1, 0) titleLabel.Position = UDim2.new(0, 50, 0, 0) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "Project shiba" titleLabel.Font = Enum.Font.SourceSansBold titleLabel.TextSize = 20 titleLabel.TextColor3 = Color3.fromRGB(50, 50, 50) titleLabel.TextXAlignment = Enum.TextXAlignment.Left titleLabel.Parent = topBar local minimizeButton = Instance.new("TextButton") minimizeButton.Size = UDim2.new(0, 30, 0, 30) minimizeButton.Position = UDim2.new(1, -90, 0.5, -15) minimizeButton.BackgroundTransparency = 1 minimizeButton.Text = "-" minimizeButton.TextColor3 = Color3.fromRGB(50, 50, 50) minimizeButton.Font = Enum.Font.SourceSans minimizeButton.TextSize = 20 minimizeButton.BorderSizePixel = 0 minimizeButton.Parent = topBar minimizeButton.MouseButton1Click:Connect(function() mainFrame.Visible = false end) local maximizeButton = Instance.new("TextButton") maximizeButton.Size = UDim2.new(0, 30, 0, 30) maximizeButton.Position = UDim2.new(1, -60, 0.5, -15) maximizeButton.BackgroundTransparency = 1 maximizeButton.Text = "â–¡" maximizeButton.TextColor3 = Color3.fromRGB(50, 50, 50) maximizeButton.Font = Enum.Font.SourceSans maximizeButton.TextSize = 18 maximizeButton.BorderSizePixel = 0 maximizeButton.Parent = topBar maximizeButton.MouseButton1Click:Connect(function() print("") end) local closeButton = Instance.new("TextButton") closeButton.Size = UDim2.new(0, 30, 0, 30) closeButton.Position = UDim2.new(1, -30, 0.5, -15) closeButton.BackgroundTransparency = 1 closeButton.Text = "X" closeButton.TextColor3 = Color3.fromRGB(0, 0, 0) closeButton.Font = Enum.Font.SourceSans closeButton.TextSize = 18 closeButton.BorderSizePixel = 0 closeButton.Parent = topBar closeButton.MouseButton1Click:Connect(function() screenGui:Destroy() end) local inputFrame = Instance.new("ScrollingFrame") inputFrame.Size = UDim2.new(1, -20, 0, 180) inputFrame.Position = UDim2.new(0, 10, 0, 50) inputFrame.BackgroundColor3 = Color3.fromRGB(245, 245, 245) inputFrame.BorderSizePixel = 0 inputFrame.CanvasSize = UDim2.new(0, 0, 0, 0) inputFrame.ScrollBarThickness = 5 inputFrame.ScrollBarImageTransparency = 1 inputFrame.Parent = mainFrame local lineFrame = Instance.new("Frame") lineFrame.Size = UDim2.new(0, 50, 1, 0) lineFrame.BackgroundColor3 = Color3.fromRGB(230, 230, 230) lineFrame.BorderSizePixel = 0 lineFrame.Parent = inputFrame local scriptBox = Instance.new("TextBox") scriptBox.Size = UDim2.new(1, -60, 1, 0) scriptBox.Position = UDim2.new(0, 60, 0, 0) scriptBox.BackgroundTransparency = 1 scriptBox.Text = "" scriptBox.TextColor3 = Color3.fromRGB(50, 50, 50) scriptBox.TextSize = 16 scriptBox.Font = Enum.Font.Code scriptBox.TextXAlignment = Enum.TextXAlignment.Left scriptBox.TextYAlignment = Enum.TextYAlignment.Top scriptBox.ClearTextOnFocus = false scriptBox.MultiLine = true scriptBox.TextWrapped = true scriptBox.TextEditable = true scriptBox.Parent = inputFrame local lineNumbers = Instance.new("TextLabel") lineNumbers.Size = UDim2.new(1, -10, 1, 0) lineNumbers.BackgroundTransparency = 1 lineNumbers.Text = "1" lineNumbers.Font = Enum.Font.Code lineNumbers.TextSize = 16 lineNumbers.TextColor3 = Color3.fromRGB(150, 150, 150) lineNumbers.TextXAlignment = Enum.TextXAlignment.Right lineNumbers.TextYAlignment = Enum.TextYAlignment.Top lineNumbers.Position = UDim2.new(0, 10, 0, 0) lineNumbers.Parent = lineFrame scriptBox:GetPropertyChangedSignal("Text"):Connect(function() local lines = scriptBox.Text:split("\n") local lineText = "" for i = 1, #lines do lineText = lineText .. tostring(i) .. "\n" end lineNumbers.Text = lineText inputFrame.CanvasSize = UDim2.new(0, 0, 0, #lines * 20) end) local buttonFrame = Instance.new("Frame") buttonFrame.Size = UDim2.new(1, -20, 0, 50) buttonFrame.Position = UDim2.new(0, 10, 0, 240) buttonFrame.BackgroundTransparency = 1 buttonFrame.Parent = mainFrame local buttonNames = {"EXE", "CLEAR", "INJECT"} for i, name in ipairs(buttonNames) do local button = Instance.new("TextButton") button.Size = UDim2.new(0, 100, 1, 0) button.Position = UDim2.new(0, (i - 1) * 110, 0, 0) button.BackgroundColor3 = Color3.fromRGB(220, 220, 220) button.Text = name button.TextColor3 = Color3.fromRGB(0, 0, 0) button.Font = Enum.Font.SourceSansBold button.TextSize = 18 button.BorderSizePixel = 0 button.Parent = buttonFrame if name == "EXE" then button.MouseButton1Click:Connect(function() local scriptText = scriptBox.Text local success, err = pcall(function() local func = loadstring(scriptText) if func then func() else error("Script could not be loaded.") end end) if not success then warn("Error: " .. err) end end) elseif name == "CLEAR" then button.MouseButton1Click:Connect(function() scriptBox.Text = "" end) elseif name == "INJECT" then button.MouseButton1Click:Connect(function() local scriptText = scriptBox.Text if scriptText and scriptText ~= "" then game.ReplicatedStorage.RemoteEvent:FireServer(scriptText) else warn("please inject a require if game backdoored/infected.") end end) end end local gui = Instance.new("ScreenGui") gui.Name = "executor" gui.Parent = game.CoreGui local lel = Instance.new("ImageLabel") lel.Size = UDim2.new(0.0, 100, 0.0, 100) lel.Position = UDim2.new(-0.127000004, 0, 0.407999992, 0) lel.BackgroundColor3 = Color3.new(0, 0, 0) lel.ImageColor3 = Color3.new(1, 1, 1) lel.Image = "rbxassetid://126413849639794" lel.ImageTransparency = 0 lel.Parent = gui lel.BackgroundTransparency = 1 local Ring = Instance.new("ImageLabel") Ring.Size = UDim2.new(1.0, 0, 1.0, 0) Ring.Position = UDim2.new(0.0, 0, 0.0, 0) Ring.BackgroundColor3 = Color3.new(0, 0, 0) Ring.ImageColor3 = Color3.new(0, 0, 0) Ring.Image = "rbxassetid://7102118272" Ring.ImageTransparency = 0 Ring.Parent = lel Ring.BackgroundTransparency = 1 local Orbit = Instance.new("ImageLabel") Orbit.Size = UDim2.new(0.0, 21, 0.0, 21) Orbit.Position = UDim2.new(0.0, 0, 0.0, 10) Orbit.BackgroundColor3 = Color3.new(0, 0, 0) Orbit.ImageColor3 = Color3.new(1, 1, 1) Orbit.Image = "rbxassetid://126413849639794" Orbit.ImageTransparency = 0 Orbit.Parent = Ring Orbit.BackgroundTransparency = 1 lel:TweenPosition(UDim2.new(0.458, 0, 0.408, 0), "Out", "Linear", 0.4, false) wait(3) lel:TweenPosition(UDim2.new(0.0, 9, 0.0, 190), "Out", "Sine", 0.7, false) while wait() do Ring.Rotation = Ring.Rotation + 1 Orbit.Rotation = Orbit.Rotation - 1 end