-- Enhanced by nescoroco, made by Miya_AtsumuXD -- Original script: https://scriptblox.com/script/Destruction-Simulator-Inf-Money-GUI-6227 -- ─────▄█▀█▄──▄███▄────❤ -- ────▐█░██████████▌──── -- ─────██▒█████████───── -- ──────▀████████▀────── -- ─────────▀██▀───────── if game.PlaceId == 2248408710 then local colors = { SchemeColor = Color3.fromRGB(0,270,260), Background = Color3.fromRGB(0, 0, 0), Header = Color3.fromRGB(0, 0, 0), TextColor = Color3.fromRGB(300,300,300), ElementColor = Color3.fromRGB(19, 19, 19) } local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("💥 Destruction Simulator Script", colors) local Tab = Window:NewTab("Money") local Section = Tab:NewSection("Inf money") Section:NewSlider("Money", "Money", 99999999999999999, 0, function(s) -- 5000 (MaxValue) | 0 (MinValue) game:GetService("ReplicatedStorage").Remotes.generateBoost:FireServer("Coins",s,99999999999999999) end) Section:NewButton("SellBricks", "ButtonInfo", function() -- Script generated by Luguin game:GetService("ReplicatedStorage").Remotes.sellBricks:FireServer() end) end