-- Gui to Lua -- Version: 3.2 -- Instances: local GUI = Instance.new("ScreenGui") local main = Instance.new("ImageLabel") local Title = Instance.new("TextLabel") local TextButton = Instance.new("TextButton") local editor = Instance.new("TextBox") local Execute = Instance.new("TextButton") local Clear = Instance.new("TextButton") local R6 = Instance.new("TextButton") --Properties: GUI.Name = "GUI" GUI.Parent = game.CoreGui GUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling main.Name = "main" main.Parent = GUI main.BackgroundColor3 = Color3.fromRGB(255, 255, 255) main.BorderColor3 = Color3.fromRGB(0, 0, 0) main.BorderSizePixel = 0 main.Position = UDim2.new(0.347934932, 0, 0.295226127, 0) main.Size = UDim2.new(0, 485, 0, 326) main.Image = "http://www.roblox.com/asset/?id=122645067660677" Title.Name = "Title" Title.Parent = main Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title.BorderColor3 = Color3.fromRGB(0, 0, 0) Title.BorderSizePixel = 0 Title.Size = UDim2.new(0, 485, 0, 26) Title.Font = Enum.Font.SourceSans Title.Text = "Amir's FE Bypass" Title.TextColor3 = Color3.fromRGB(0, 0, 0) Title.TextScaled = true Title.TextSize = 14.000 Title.TextWrapped = true Title.TextXAlignment = Enum.TextXAlignment.Left Title.TextYAlignment = Enum.TextYAlignment.Top TextButton.Parent = Title TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.938144326, 0, 0, 0) TextButton.Size = UDim2.new(0, 30, 0, 26) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "X" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextScaled = true TextButton.TextSize = 14.000 TextButton.TextWrapped = true editor.Name = "editor" editor.Parent = main editor.BackgroundColor3 = Color3.fromRGB(255, 255, 255) editor.BorderColor3 = Color3.fromRGB(0, 0, 0) editor.BorderSizePixel = 0 editor.Position = UDim2.new(0.012371134, 0, 0.0981595069, 0) editor.Size = UDim2.new(0, 473, 0, 223) editor.ClearTextOnFocus = false editor.Font = Enum.Font.SourceSans editor.PlaceholderColor3 = Color3.fromRGB(0, 0, 0) editor.PlaceholderText = "require(123456789).idk(\"username\")" editor.Text = "" editor.TextColor3 = Color3.fromRGB(0, 0, 0) editor.TextSize = 14.000 editor.TextXAlignment = Enum.TextXAlignment.Left editor.TextYAlignment = Enum.TextYAlignment.Top Execute.Name = "Execute" Execute.Parent = main Execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Execute.BorderColor3 = Color3.fromRGB(0, 0, 0) Execute.BorderSizePixel = 0 Execute.Position = UDim2.new(0.012371134, 0, 0.803680956, 0) Execute.Size = UDim2.new(0, 120, 0, 57) Execute.Font = Enum.Font.SourceSans Execute.Text = "Execute" Execute.TextColor3 = Color3.fromRGB(0, 0, 0) Execute.TextScaled = true Execute.TextSize = 14.000 Execute.TextWrapped = true Clear.Name = "Clear" Clear.Parent = main Clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Clear.BorderColor3 = Color3.fromRGB(0, 0, 0) Clear.BorderSizePixel = 0 Clear.Position = UDim2.new(0.278350502, 0, 0.803680956, 0) Clear.Size = UDim2.new(0, 120, 0, 57) Clear.Font = Enum.Font.SourceSans Clear.Text = "Clear" Clear.TextColor3 = Color3.fromRGB(0, 0, 0) Clear.TextScaled = true Clear.TextSize = 14.000 Clear.TextWrapped = true R6.Name = "R6" R6.Parent = main R6.BackgroundColor3 = Color3.fromRGB(255, 255, 255) R6.BorderColor3 = Color3.fromRGB(0, 0, 0) R6.BorderSizePixel = 0 R6.Position = UDim2.new(0.870103121, 0, 0.803680956, 0) R6.Size = UDim2.new(0, 57, 0, 57) R6.Font = Enum.Font.SourceSans R6.Text = "R6" R6.TextColor3 = Color3.fromRGB(0, 0, 0) R6.TextScaled = true R6.TextSize = 14.000 R6.TextWrapped = true local remote = game.Workspace.RemoteEvent Execute.MouseButton1Click:Connect(function() remote:FireServer(editor.Text) end) Clear.MouseButton1Click:Connect(function() editor.Text = "" end) R6.MouseButton1Click:Connect(function(plr) remote:FireServer("require(4585652241).load(plr.Name)") end) TextButton.MouseButton1Click:Connect(function() main.Visible = false end) main.Active = true main.Draggable = true