local TweenService = game:GetService("TweenService") local CoreGui = game:GetService("CoreGui") local ScreenGui = Instance.new("ScreenGui", CoreGui) ScreenGui.Name = "HarikaBaconExecutor" ScreenGui.ResetOnSpawn = false -- Ana Frame local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 480, 0, 300) MainFrame.Position = UDim2.new(0.5, -240, 1, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.BackgroundTransparency = 1 -- Gölge local UICorner = Instance.new("UICorner", MainFrame) UICorner.CornerRadius = UDim.new(0, 16) local Shadow = Instance.new("ImageLabel", MainFrame) Shadow.Image = "rbxassetid://1316045217" Shadow.Size = UDim2.new(1, 60, 1, 60) Shadow.Position = UDim2.new(0, -30, 0, -30) Shadow.BackgroundTransparency = 1 Shadow.ImageTransparency = 0.5 -- Başlık local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundColor3 = Color3.fromRGB(255, 80, 120) Title.Font = Enum.Font.FredokaOne Title.Text = "harika bacon ve hileci888 executor Aİ" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextScaled = true local UICorner2 = Instance.new("UICorner", Title) UICorner2.CornerRadius = UDim.new(0, 8) -- Kod kutusu local TextBox = Instance.new("TextBox", MainFrame) TextBox.Size = UDim2.new(0, 330, 0, 180) TextBox.Position = UDim2.new(0, 140, 0, 50) TextBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30) TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.Font = Enum.Font.Code TextBox.PlaceholderText = "Script buraya..." TextBox.Text = "" TextBox.TextXAlignment = Enum.TextXAlignment.Left TextBox.TextYAlignment = Enum.TextYAlignment.Top TextBox.MultiLine = true TextBox.ClearTextOnFocus = false TextBox.TextWrapped = true TextBox.TextSize = 14 local UICorner3 = Instance.new("UICorner", TextBox) UICorner3.CornerRadius = UDim.new(0, 8) -- Çalıştır Butonu local Execute = Instance.new("TextButton", MainFrame) Execute.Size = UDim2.new(0, 120, 0, 32) Execute.Position = UDim2.new(1, -130, 1, -42) Execute.BackgroundColor3 = Color3.fromRGB(80, 200, 120) Execute.Font = Enum.Font.GothamBold Execute.Text = "ÇALIŞTIR" Execute.TextColor3 = Color3.fromRGB(255, 255, 255) Execute.TextScaled = true local UICorner4 = Instance.new("UICorner", Execute) UICorner4.CornerRadius = UDim.new(0, 8) -- Script Hub local ScriptHub = Instance.new("ScrollingFrame", MainFrame) ScriptHub.Size = UDim2.new(0, 130, 0, 230) ScriptHub.Position = UDim2.new(0, 5, 0, 50) ScriptHub.BackgroundColor3 = Color3.fromRGB(35, 35, 35) ScriptHub.CanvasSize = UDim2.new(0, 0, 10, 0) ScriptHub.AutomaticCanvasSize = Enum.AutomaticSize.Y ScriptHub.ScrollBarThickness = 4 local UICorner5 = Instance.new("UICorner", ScriptHub) UICorner5.CornerRadius = UDim.new(0, 8) -- Script Verileri local scripts = { { name = "eiirris Gui.nav", code = [[loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Private-gui-by-hanif-leak-40943"))()]] }, { name = "LordMuhamed Gui.Nav", code = [[loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Project-Ligma-etc-9323"))()]] }, { name = "Luau SS", code = [[loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Luau-X-SS-40952"))()]] }, { name = "REMOTE BACKDOOR?", code = [[ local gui = Instance.new("ScreenGui", game.CoreGui) local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 300, 0, 300) frame.Position = UDim2.new(0.5, -150, 0.5, -150) frame.BackgroundColor3 = Color3.fromRGB(40,40,40) frame.Active = true frame.Draggable = true local list = Instance.new("ScrollingFrame", frame) list.Size = UDim2.new(1, -10, 1, -10) list.Position = UDim2.new(0, 5, 0, 5) list.CanvasSize = UDim2.new(0, 0, 10, 0) list.AutomaticCanvasSize = Enum.AutomaticSize.Y list.ScrollBarThickness = 6 for _,v in ipairs(game:GetDescendants()) do if v:IsA("RemoteEvent") or v:IsA("RemoteFunction") then local btn = Instance.new("TextButton", list) btn.Size = UDim2.new(1, -10, 0, 30) btn.Text = v:GetFullName() btn.TextScaled = true btn.BackgroundColor3 = Color3.fromRGB(80,80,80) btn.TextColor3 = Color3.fromRGB(255,255,255) btn.MouseButton1Click:Connect(function() pcall(function() if v:IsA("RemoteEvent") then v:FireServer() elseif v:IsA("RemoteFunction") then v:InvokeServer() end end) end) end end ]] }, { name = "MEGA GUI", code = [[loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-C4N0FTheDestroyer-Ultimate-V6-GUI-40629"))()]] }, { name = "Knife", code = [[ loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Fe-grab-knife-v4-R6-38372"))() local Sound = Instance.new("Sound", game.Workspace) Sound.SoundId = "rbxassetid://135399838426283" Sound.Volume = 1 Sound:Play() ]] } } -- Script Hub Butonları for i, s in ipairs(scripts) do local btn = Instance.new("TextButton", ScriptHub) btn.Size = UDim2.new(1, -10, 0, 30) btn.Position = UDim2.new(0, 5, 0, (i - 1) * 35) btn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Text = s.name btn.Font = Enum.Font.GothamSemibold btn.TextScaled = true local corner = Instance.new("UICorner", btn) corner.CornerRadius = UDim.new(0, 6) btn.MouseButton1Click:Connect(function() local success, err = pcall(function() loadstring(s.code)() end) if not success then warn("Script Hatası:", err) end end) end -- Çalıştır Butonu Fonksiyonu Execute.MouseButton1Click:Connect(function() local code = TextBox.Text if code and code ~= "" then local success, err = pcall(function() loadstring(code)() end) if not success then warn("Executor Hata:", err) end end end) -- Giriş animasyonu TweenService:Create( MainFrame, TweenInfo.new(0.5, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {Position = UDim2.new(0.5, -240, 0.5, -150), BackgroundTransparency = 0} ):Play()