local FEBypassExecutor = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local SourceScrolling = Instance.new("ScrollingFrame") local SourceBox = Instance.new("TextBox") local ExecuteBtn = Instance.new("TextButton") local ClearBtn = Instance.new("TextButton") local InjectBtn = Instance.new("TextButton") FEBypassExecutor.Name = "FEBypassExecutor" FEBypassExecutor.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") FEBypassExecutor.ZIndexBehavior = Enum.ZIndexBehavior.Sibling MainFrame.Name = "MainFrame" MainFrame.Parent = FEBypassExecutor MainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) MainFrame.BorderColor3 = Color3.fromRGB(0, 0, 0) MainFrame.BorderSizePixel = 2 MainFrame.Position = UDim2.new(0.150246322, 0, 0.102597445, 0) MainFrame.Size = UDim2.new(0.281403929, 0, 0.427272737, 0) Title.Name = "Title" Title.Parent = MainFrame Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundTransparency = 1.000 Title.BorderColor3 = Color3.fromRGB(0, 0, 0) Title.BorderSizePixel = 0 Title.Position = UDim2.new(0.159737423, 0, 0, 0) Title.Size = UDim2.new(0.678336978, 0, 0.0851063803, 0) Title.Font = Enum.Font.SourceSans Title.Text = "PROJECT FEBYPASS (made by Tubuus97)" Title.TextColor3 = Color3.fromRGB(0, 0, 0) Title.TextScaled = true Title.TextSize = 14.000 Title.TextWrapped = true SourceScrolling.Name = "SourceScrolling" SourceScrolling.Parent = MainFrame SourceScrolling.Active = true SourceScrolling.BackgroundColor3 = Color3.fromRGB(100, 100, 100) SourceScrolling.BackgroundTransparency = 1.000 SourceScrolling.BorderColor3 = Color3.fromRGB(0, 0, 0) SourceScrolling.BorderSizePixel = 0 SourceScrolling.Position = UDim2.new(0.0153172864, 0, 0.0851063803, 0) SourceScrolling.Size = UDim2.new(0.971553683, 0, 0.738601804, 0) SourceScrolling.CanvasSize = UDim2.new(0, 0, 2000, 0) SourceBox.Name = "SourceBox" SourceBox.Parent = SourceScrolling SourceBox.BackgroundColor3 = Color3.fromRGB(100, 100, 100) SourceBox.BackgroundTransparency = 1.000 SourceBox.BorderColor3 = Color3.fromRGB(0, 0, 0) SourceBox.BorderSizePixel = 0 SourceBox.Size = UDim2.new(1, 0, 1, 0) SourceBox.ClearTextOnFocus = false SourceBox.Font = Enum.Font.SourceSans SourceBox.MultiLine = true SourceBox.Text = "print(\"Hello World!\")" SourceBox.TextColor3 = Color3.fromRGB(0, 0, 0) SourceBox.TextSize = 18.000 SourceBox.TextXAlignment = Enum.TextXAlignment.Left SourceBox.TextYAlignment = Enum.TextYAlignment.Top ExecuteBtn.Name = "ExecuteBtn" ExecuteBtn.Parent = MainFrame ExecuteBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ExecuteBtn.BorderColor3 = Color3.fromRGB(0, 0, 0) ExecuteBtn.BorderSizePixel = 2 ExecuteBtn.Position = UDim2.new(0.0218818393, 0, 0.844984829, 0) ExecuteBtn.Size = UDim2.new(0.275711179, 0, 0.130699083, 0) ExecuteBtn.Font = Enum.Font.SourceSans ExecuteBtn.Text = "Execute" ExecuteBtn.TextColor3 = Color3.fromRGB(0, 0, 0) ExecuteBtn.TextScaled = true ExecuteBtn.TextSize = 14.000 ExecuteBtn.TextWrapped = true ClearBtn.Name = "ClearBtn" ClearBtn.Parent = MainFrame ClearBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ClearBtn.BorderColor3 = Color3.fromRGB(0, 0, 0) ClearBtn.BorderSizePixel = 2 ClearBtn.Position = UDim2.new(0.361050338, 0, 0.844984829, 0) ClearBtn.Size = UDim2.new(0.275711179, 0, 0.130699083, 0) ClearBtn.Font = Enum.Font.SourceSans ClearBtn.Text = "Clear" ClearBtn.TextColor3 = Color3.fromRGB(0, 0, 0) ClearBtn.TextScaled = true ClearBtn.TextSize = 14.000 ClearBtn.TextWrapped = true InjectBtn.Name = "InjectBtn" InjectBtn.Parent = MainFrame InjectBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) InjectBtn.BorderColor3 = Color3.fromRGB(0, 0, 0) InjectBtn.BorderSizePixel = 2 InjectBtn.Position = UDim2.new(0.711159766, 0, 0.844984829, 0) InjectBtn.Size = UDim2.new(0.275711179, 0, 0.130699083, 0) InjectBtn.Font = Enum.Font.SourceSans InjectBtn.Text = "Inject" InjectBtn.TextColor3 = Color3.fromRGB(0, 0, 0) InjectBtn.TextScaled = true InjectBtn.TextSize = 14.000 InjectBtn.TextWrapped = true function dragify(Main) dragToggle = nil dragSpeed = 0.95 dragInput = nil dragStart = nil dragPos = nil function updateInput(input) Delta = input.Position - dragStart Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y) game:GetService("TweenService"):Create(Main, TweenInfo.new(.25), {Position = Position}):Play() end Main.InputBegan:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then dragToggle = true dragStart = input.Position startPos = Main.Position input.Changed:Connect(function() if (input.UserInputState == Enum.UserInputState.End) then dragToggle = false end end) end end) Main.InputChanged:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then dragInput = input end end) game:GetService("UserInputService").InputChanged:Connect(function(input) if (input == dragInput and dragToggle) then updateInput(input) end end) end dragify(MainFrame) player = game.Players:GetPlayers() injected = false function makeFEbypass() if not game.ReplicatedStorage.FEBypassRE then event = Instance.new("RemoteEvent", game.ReplicatedStorage) event.Name = "FEBypassRE" event:FireServer(player) event:FireAllClients(player) end end local function notify() game.StarterGui:SetCore("SendNotification", { Title = "PROJECT FEBYPASS", Text = "Inject First!!!", Duration = 4 }) end local function injectnotify() game.StarterGui:SetCore("SendNotification", { Title = "PROJECT FEBYPASS", Text = "Successfully Injected!", Duration = 4 }) end ExecuteBtn.MouseButton1Click:Connect(function() if not injected then notify() return end local code = SourceBox.Text loadstring(code)() makeFEbypass() end) InjectBtn.MouseButton1Click:Connect(function() if injected then return end injected = true injectnotify() end)