-- BINGGUI V1.6 (ULTIMATE REPAIR + ANTI-LAG) local P = game.Players.LocalPlayer; local R = game:GetService("RunService"); local UIS = game:GetService("UserInputService") if game.CoreGui:FindFirstChild("BINGGUI") then game.CoreGui.BINGGUI:Destroy() end local S = Instance.new("ScreenGui", game.CoreGui); S.Name = "BINGGUI" local Main = Instance.new("Frame", S); Main.Size = UDim2.new(0, 460, 0, 320); Main.Position = UDim2.new(0.3, 0, 0.3, 0); Main.BackgroundColor3 = Color3.fromRGB(255, 20, 147); Main.Active = true; Main.Draggable = true Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 15) -- Header local Title = Instance.new("TextLabel", Main); Title.Size = UDim2.new(1, 0, 0, 40); Title.Text = "🌸 BINGGUI: REPAIR & FPS 🌸"; Title.TextColor3 = Color3.new(1, 1, 1); Title.BackgroundTransparency = 1; Title.Font = Enum.Font.GothamBold; Title.TextSize = 16 -- Layout local TabContainer = Instance.new("Frame", Main); TabContainer.Size = UDim2.new(0, 110, 1, -50); TabContainer.Position = UDim2.new(0, 10, 0, 45); TabContainer.BackgroundTransparency = 1 local Content = Instance.new("Frame", Main); Content.Size = UDim2.new(1, -135, 1, -55); Content.Position = UDim2.new(0, 125, 0, 45); Content.BackgroundColor3 = Color3.fromRGB(255, 192, 203); Content.BorderSizePixel = 0 Instance.new("UICorner", Content) local Tabs = {} local function CreateTab (name) local t = Instance.new("ScrollingFrame", Content); t.Size = UDim2.new(1, 0, 1, 0); t.BackgroundTransparency = 1; t.Visible = false; t.ScrollBarThickness = 0; t.CanvasSize = UDim2.new(0, 0, 2, 0) local btn = Instance.new("TextButton", TabContainer); btn.Size = UDim2.new(1, 0, 0, 35); btn.Position = UDim2.new(0, 0, 0, #Tabs * 40); btn.Text = name; btn.BackgroundColor3 = Color3.fromRGB(255, 105, 180); btn.TextColor3 = Color3.new(1, 1, 1); btn.Font = Enum.Font.GothamBold; btn.TextSize = 10 Instance.new("UICorner", btn) btn.MouseButton1Click:Connect(function() for _, v in pairs(Tabs) do v.Frame.Visible = false; v.Btn.BackgroundColor3 = Color3.fromRGB(255, 105, 180) end t.Visible = true; btn.BackgroundColor3 = Color3.fromRGB(255, 20, 147) end) table.insert(Tabs, {Frame = t, Btn = btn}) return t end local function AddFunc(tab, text, cb) local b = Instance.new("TextButton", tab); b.Size = UDim2.new(0.9, 0, 0, 35); b.Position = UDim2.new(0.05, 0, 0, #tab:GetChildren() * 38); b.Text = text; b.BackgroundColor3 = Color3.fromRGB(255, 255, 255); b.TextColor3 = Color3.fromRGB(219, 112, 147); b.Font = Enum.Font.GothamMedium; b.TextSize = 10 Instance.new("UICorner", b); b.MouseButton1Click:Connect(cb) end -- --- СИСТЕМА ПОЛЕТА (BUILT-IN) --- local flying = false; local speed = 50; local bv, bg local function toggleFly() flying = not flying; local char = P.Character; if not char then return end if flying then bv = Instance.new("BodyVelocity", char.HumanoidRootPart); bv.MaxForce = Vector3.new(math.huge, math.huge, math.huge); bv.Velocity = Vector3.new(0,0,0) bg = Instance.new("BodyGyro", char.HumanoidRootPart); bg.MaxTorque = Vector3.new(math.huge, math.huge, math.huge); bg.CFrame = char.HumanoidRootPart.CFrame task.spawn(function() while flying do local dir = Vector3.new(0,0,0) if UIS:IsKeyDown(Enum.KeyCode.W) then dir = dir + workspace.CurrentCamera.CFrame.LookVector end if UIS:IsKeyDown(Enum.KeyCode.S) then dir = dir - workspace.CurrentCamera.CFrame.LookVector end if UIS:IsKeyDown(Enum.KeyCode.D) then dir = dir + workspace.CurrentCamera.CFrame.RightVector end if UIS:IsKeyDown(Enum.KeyCode.A) then dir = dir - workspace.CurrentCamera.CFrame.RightVector end if UIS:IsKeyDown(Enum.KeyCode.E) then dir = dir + Vector3.new(0, 1, 0) end if UIS:IsKeyDown(Enum.KeyCode.Q) then dir = dir - Vector3.new(0, 1, 0) end bv.Velocity = dir * speed; bg.CFrame = workspace.CurrentCamera.CFrame; task.wait() end bv:Destroy(); bg:Destroy() end) end end -- --- ВКЛАДКИ --- local T1 = CreateTab("BING-MOVE") AddFunc(T1, "BUILT-IN FLY (W/S/A/D)", toggleFly) AddFunc(T1, "Speed 150", function() P.Character.Humanoid.WalkSpeed = 150 end) AddFunc(T1, "No Clip", function() R.Stepped:Connect(function() for _,v in pairs(P.Character:GetChildren()) do if v:IsA("BasePart") then v.CanCollide = false end end end) end) AddFunc(T1, "Inf Jump", function() UIS.JumpRequest:Connect(function() P.Character.Humanoid:ChangeState("Jumping") end) end) AddFunc(T1, "TP Tool", function() local t = Instance.new("Tool"); t.RequiresHandle = false; t.Name = "BING-TP"; t.Activated:Connect(function() P.Character:MoveTo(P:GetMouse().Hit.p) end); t.Parent = P.Backpack end) local T2 = CreateTab("BING-LOOT") AddFunc(T2, "GIVE ALL ITEMS", function() for _,v in pairs(game:GetDescendants()) do if v:IsA("Tool") then v.Parent = P.Backpack end end end) AddFunc(T2, "Auto Pick Items", function() R.Heartbeat:Connect(function() for _,v in pairs(workspace:GetChildren()) do if v:IsA("Tool") then firetouchinterest(P.Character.HumanoidRootPart, v.Handle, 0) end end end) end) AddFunc(T2, "Drop All", function() for _,v in pairs(P.Backpack:GetChildren()) do v.Parent = workspace end end) AddFunc(T2, "Clear Inv", function() P.Backpack:ClearAllChildren() end) AddFunc(T2, "Inf Backpack", function() P.Backpack.ChildAdded:Connect(function(c) c.Parent = P.Backpack end) end) local T3 = CreateTab("BING-WAR") AddFunc(T3, "Wallhack (ESP)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/IratuServices/ESP/main/Universal.lua"))() end) AddFunc(T3, "God Mode", function() P.Character.Humanoid.MaxHealth = math.huge; P.Character.Humanoid.Health = math.huge end) AddFunc(T3, "Spin Bot", function() local v = Instance.new("BodyAngularVelocity", P.Character.HumanoidRootPart); v.AngularVelocity = Vector3.new(0, 50, 0); v.MaxTorque = Vector3.new(0, math.huge, 0) end) AddFunc(T3, "Aimbot (Q)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/AirHub/main/AirHub.lua"))() end) AddFunc(T3, "No Shake", function() P.PlayerGui.MainGui.Shake:Destroy() end) -- Пример для TTD local T4 = CreateTab("BING-TROLL") AddFunc(T4, "FLING (Invisible)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/DigitalityScripts/Personal-Scripts/main/FE%20Invisible%20Fling"))() end) AddFunc(T4, "SPAM CHAT", function() _G.Spam = not _G.Spam; while _G.Spam do game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("BINGGUI TROLLS YOU! 🌸", "All"); task.wait(3) end end) AddFunc(T4, "NO SIT", function() _G.NoSit = not _G.NoSit; while _G.NoSit do if P.Character then P.Character.Humanoid.Sit = false end; task.wait(0.1) end end) AddFunc(T4, "HEADLESS (Visual)", function() P.Character.Head.Transparency = 1; pcall(function() P.Character.Head.face:Destroy() end) end) AddFunc(T4, "Fake Lag", function() while task.wait(0.1) do P.Character.HumanoidRootPart.Anchored = true; task.wait(0.05); P.Character.HumanoidRootPart.Anchored = false end end) local T5 = CreateTab("BING-OTHER") AddFunc(T5, "ANTI-LAG (Smooth)", function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Material = Enum.Material.SmoothPlastic v.Color = v.Color elseif v:IsA("Decal") or v:IsA("Texture") then v:Destroy() end end end) AddFunc(T5, "FullBright", function() game.Lighting.Ambient = Color3.new(1,1,1); game.Lighting.Brightness = 2 end) AddFunc(T5, "Anti-AFK", function() P.Idled:Connect(function() game:GetService("VirtualUser"):ClickButton2(Vector2.new()) end) end) AddFunc(T5, "Server Hop", function() game:GetService("TeleportService"):Teleport(game.PlaceId) end) AddFunc(T5, "CLOSE BINGGUI", function() S:Destroy() end) Tabs[1].Frame.Visible = true; Tabs[1].Btn.BackgroundColor3 = Color3.fromRGB(255, 20, 147)