Lewati ke konten
BerfungsiGeneral

Bubble Shooting Incremental 🔫

FLFluffyBlox803 tayanganBubble Shooting Incremental26 Jul 2026
Bagikan
Bubble Shooting Incremental 🔫

Kode Script

Lua
local WindUI = loadstring(game:HttpGet("https://github.com/Footagesus/WindUI/releases/latest/download/main.lua"))()

local Window = WindUI:CreateWindow({
    Title = "Bubble Shooting Incremental 🔫",
    Icon = "map-pinned",
    Author = "AspectTiber",
    Folder = "Wintp",
    Size = UDim2.fromOffset(580, 460),
    Transparent = true,
    Theme = "Dark"
})

local MainTab = Window:Tab({
    Title = "Main",
    Icon = "home"
})


MainTab:Toggle({
    Title = "Auto bubble pop",
    Desc = "Auto pops the bubbles",
    Value = false,

    Callback = function(state)
        autoclick = state

        if state then
            task.spawn(function()
                while autoclick do
                   local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.BubbleDome.RemoteEvent
                    Event:FireServer(
                        "CollectBubbles",
                        {
                            Bubble = 10,
                            SilverBubble = 10,
		                    GoldBubble = 10,
                            EmeraldBubble = 10,
                            CursedBubble = 10,
                            RainbowBubble = 10
                        }
                    )

                    task.wait(0.09)
                end
            end)
        end
    end
})

MainTab:Toggle({
    Title = "Auto hover",
    Desc = "Auto hovers the thing in world 2",
    Value = false,

    Callback = function(state)
        autoclick = state

        if state then
            task.spawn(function()
                while autoclick do
                   local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.PearlEarningService.RemoteEvent
                    Event:FireServer(
                        "HoverPearlCollected",
                        "MainPearl"
                    )

                    local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.PearlEarningService.RemoteEvent
                    Event:FireServer(
                        "HoverPearlCollected",
                        "Pearl1"
                    )

                    local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.PearlEarningService.RemoteEvent
                    Event:FireServer(
                        "HoverPearlCollected",
                        "Pearl2"
                    )

                    local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.PearlEarningService.RemoteEvent
                    Event:FireServer(
                        "HoverPearlCollected",
                        "Pearl3"
                    )

                    task.wait(0.09)
                end
            end)
        end
    end
})

MainTab:Button({
    Title = "Convert Gem",
    Desc = "Converts pearls to gems",
    Locked = false,
    Callback = function()
        local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.PearlConversionService.RemoteEvent
        Event:FireServer(
            "DepositPearlConversion",
            "Convert"
        )
    end
})

local UpgradesTab = Window:Tab({
	Title = "Upgrades",
	Icon = "home",
})

UpgradesTab:Button({
    Title = "Max Bubble Value",
    Desc = "Upgrades Bubble Value to max",
    Locked = false,
    Callback = function()
        local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.UpgradeService.RemoteEvent
        Event:FireServer(
            "PurchaseUpgrade",
            "Bubble",
            "BubbleValue",
            "Max"
        )
    end
})

UpgradesTab:Button({
    Title = "Max Bubble Amount",
    Desc = "Upgrades Bubble Amount to max",
    Locked = false,
    Callback = function()
        local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.UpgradeService.RemoteEvent
        Event:FireServer(
            "PurchaseUpgrade",
            "Bubble",
            "BubbleAmount",
            "Max"
        )
    end
})

UpgradesTab:Button({
    Title = "Max Bubble Spawn Rate",
    Desc = "Upgrades Bubble Spawn Rate to max",
    Locked = false,
    Callback = function()
        local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.UpgradeService.RemoteEvent
        Event:FireServer(
            "PurchaseUpgrade",
            "Bubble",
            "BubbleSpawnRate",
            "Max"
        )
    end
})

UpgradesTab:Button({
    Title = "Max Bubble Luck",
    Desc = "Upgrades Bubble Luck to max",
    Locked = false,
    Callback = function()
        local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.UpgradeService.RemoteEvent
        Event:FireServer(
            "PurchaseUpgrade",
            "Bubble",
            "BubbleLuck",
            "Max"
        )
    end
})

UpgradesTab:Divider()

UpgradesTab:Button({
    Title = "Max Pearl Value",
    Desc = "Upgrades Bubble Luck to max",
    Locked = false,
    Callback = function()
        local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.UpgradeService.RemoteEvent
        Event:FireServer(
            "PurchaseUpgrade",
            "Pearl",
            "PearlValue",
            "Max"
        )
    end
})

UpgradesTab:Button({
    Title = "Max Pearl auto clicker",
    Desc = "Upgrades Pearl Auto Clicker to max",
    Locked = false,
    Callback = function()
       local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.UpgradeService.RemoteEvent
        Event:FireServer(
            "PurchaseUpgrade",
            "Pearl",
            "AutoPearl",
            "Max"
        )
    end
})

UpgradesTab:Button({
    Title = "Max Robirth Multi",
    Desc = "Upgrades Rebirth Multi to max",
    Locked = false,
    Callback = function()
        local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.UpgradeService.RemoteEvent
        Event:FireServer(
            "PurchaseUpgrade",
            "Pearl",
            "RebirthMultiplier",
            "Max"
        )
    end
})

UpgradesTab:Button({
    Title = "Max Pearl Multi",
    Desc = "Upgrades Pearl Multi to max",
    Locked = false,
    Callback = function()
        local Event = game:GetService("ReplicatedStorage").Packages.DataService.Networker._remotes.UpgradeService.RemoteEvent
        Event:FireServer(
            "PurchaseUpgrade",
            "Pearl",
            "BubbleMultiplier",
            "Max"
        )
    end
})

Deskripsi

## **a script made by me aspecteo, It's made for a game called Bubble Shooting Incremental 🔫, with features like auto hover, auto shoot and much more.** ##

Komentar (0)

Masuk untuk ikut berdiskusi

  • Jadilah yang pertama berkomentar.

Pertanyaan yang sering diajukan

Bagaimana cara menggunakan script Bubble Shooting Incremental 🔫?
Salin kode script di atas, masuk ke Bubble Shooting Incremental di Roblox, lalu tempel dan jalankan kodenya di executor kamu. Fiturnya langsung aktif begitu script berjalan.
Apakah Bubble Shooting Incremental 🔫 masih berfungsi?
Ya — Bubble Shooting Incremental 🔫 saat ini ditandai berfungsi (terakhir diperbarui 4 Sep 2026). Jika rusak setelah update Roblox, cek kembali untuk versi terbaru.
Executor mana yang kompatibel dengan Bubble Shooting Incremental 🔫?
Script ini bekerja dengan sebagian besar executor Roblox populer. Lihat halaman executor kami untuk menemukan executor gratis atau berbayar yang tepercaya untuk perangkat Anda.