-- Made by pompomsaturin | https://scriptblox.com/u/PomPomSaturin | If you need support please join my discord server and ping me local lib = loadstring(game:HttpGet"https://raw.githubusercontent.com/dawid-scripts/UI-Libs/main/fluxlib.txt")() local win = lib:Window("Bloxy Bingo", "Made by Saturin.", Color3.fromRGB(255, 110, 48), Enum.KeyCode.LeftControl) local main = win:Tab("Main", "http://www.roblox.com/asset/?id=6022668888") lib:Notification("DEPSO is TUFF M8!", "Alright") main:Button("Auto Click Bingo Stuff", "This allows you to automatically win the game, once a number is called (and you have it) it will automatically click it for you .", function() local claimb = game.Players.LocalPlayer.PlayerGui.Bingo.StaticDisplayArea.Cards.PlayerArea.Cards.Container.SubContainer local function click(btn) if not btn then return end for _, c in pairs(getconnections(btn.MouseButton1Click)) do c:Fire() end for _, c in pairs(getconnections(btn.MouseButton1Down)) do c:Fire() end for _, c in pairs(getconnections(btn.Activated)) do c:Fire() end end while true do task.wait() local claimc = claimb:FindFirstChild("Blocks") and claimb.Blocks.Block or claimb.VerticalScroll.Cards local claim = claimb.Buttons.ClaimButton if claimc and claim then for _, card in pairs(claimc:GetChildren()) do if card:IsA("Frame") then local content = card:FindFirstChild("Content") local nums = content and content:FindFirstChild("Numbers") if nums then for _, n in pairs(nums:GetChildren()) do click(n) task.wait() end end local toGo = card:FindFirstChild("ToGo") if toGo and toGo.ToGoText.Text == "BINGO!" then click(claim) end end end end end end) local Player = win:Tab("Player/ Local", "http://www.roblox.com/asset/?id=6023426915") Player:Slider("Walkspeed", "Allows you to walk faster.", 16, 100, 0, function(t) local humanoid = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = t end end) Player:Slider("Jumpower", "Edits your players jump power.", 50, 100, 0, function(t) local humanoid = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") if humanoid then humanoid.JumpPower = t end end) local onnc = false local RunService = game:GetService("RunService") Player:Toggle("Noclip", "Enables/ Disables noclip.", false, function(state) onnc = state end) RunService.Stepped:Connect(function() if onnc then local char = game.Players.LocalPlayer.Character if char then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") and part.CanCollide then part.CanCollide = false end end end end end) local misc = win:Tab("Misc", "http://www.roblox.com/asset/?id=6022668888") misc:Button("Infinite Yield", "Infinite Yield.", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() end) misc:Button("67 funny number (LOCAL)", "6777777777777777777.", function() -- Generated with Sigma Spy Github: https://github.com/depthso/Sigma-Spy -- Services local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Remote local CallNumber = ReplicatedStorage.Remotes.Bingo.CallNumber -- RemoteEvent -- This data was received from the server firesignal(CallNumber.OnClientEvent, 67, 7.96 ) end) misc:Button("Copy Discord Invite", "Copies the discord invite to my server to your clipboard.", function() lib:Notification("Copied to clipboard!", "Alright!") setclipboard("https://discord.gg/pNTfVr48FB") end)