跳至內容
可用General

Bubble Shooting Incremental 🔫

FLFluffyBlox805 次瀏覽Bubble Shooting Incremental2026年7月26日
分享
Bubble Shooting Incremental 🔫

腳本程式碼

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
})

描述

## **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.** ##

評論 (0)

登入以參與討論

  • 成為第一個評論的人。

常見問題

如何使用 Bubble Shooting Incremental 🔫 腳本?
複製上方的腳本代碼,在 Roblox 中進入 Bubble Shooting Incremental,然後將代碼貼到你的執行器中並執行。腳本運行後功能會立即生效。
Bubble Shooting Incremental 🔫 還能用嗎?
可以 — Bubble Shooting Incremental 🔫 目前標記為可用(最近更新:2026年9月22日)。如果在 Roblox 更新後失效,請稍後回來查看修復版本。
哪個執行器相容 Bubble Shooting Incremental 🔫?
此腳本相容大多數熱門 Roblox 執行器。查看我們的執行器頁面,為你的裝置找到可信的免費或付費執行器。