Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Destruction Sim CursedGui", "DarkTheme")
- -- Main tab
- local TabMain = Window:NewTab("Main")
- local SectionMain = TabMain:NewSection("Main commands")
- SectionMain:NewButton("Generate 100 million", "Gives you 100 million", function()
- game:GetService("ReplicatedStorage").Remotes.generateBoost:FireServer("Coins", 480, 100000)
- end)
- SectionMain:NewButton("Generate levels", "Gives you levels", function()
- game:GetService("ReplicatedStorage").Remotes.generateBoost:FireServer("Levels", 480, 10)
- end)
- SectionMain:NewButton("Sell parts", "sells your parts", function()
- local Humr = game.Players.LocalPlayer.Character.HumanoidRootPart
- local OldPos = Humr.Position
- Humr.CFrame = game:GetService("Workspace").ServerMap.sellSpot.CFrame
- wait(0.1)
- Humr.CFrame = CFrame.new(OldPos)
- end)
- -- Teleports tab
- local TabTeleports = Window:NewTab("Teleports")
- local SectionTeleports = TabTeleports:NewSection("Unfinished")
- -- Mods tab
- local TabMods = Window:NewTab("Mods")
- local SectionMods = TabMods:NewSection("Preset mods")
- SectionMods:NewButton("Launcher mods", "Makes your launcher epic", function()
- if game.Players.LocalPlayer.Character:FindFirstChild("Launcher") then
- game.Players.LocalPlayer.Character.Launcher.Parent = game.Players.LocalPlayer.Backpack
- end
- local Mod = require(game.Players.LocalPlayer.Backpack.Launcher.Stats)
- Mod.RocketSpeed = 10
- Mod.Cooldown = 0.1
- Mod.BlastRadius = Mod.BlastForce * 2
- Mod.BlastForce = Mod.BlastForce * 2
- Mod.Bursts = 1
- end)
- SectionMods:NewButton("Bomb mods", "Makes your bomb epic", function()
- if game.Players.LocalPlayer.Character:FindFirstChild("Bomb") then
- game.Players.LocalPlayer.Character.Bomb.Parent = game.Players.LocalPlayer.Backpack
- end
- local Mod = require(game.Players.LocalPlayer.Backpack.Bomb.Stats)
- Mod.Cooldown = 0.2
- Mod.BlastRadius = 200
- Mod.BlastForce = 5000
- end)
- -- Credits tab
- local TabCredits = Window:NewTab("Credits")
- local SectionCredits = TabCredits:NewSection("Full credits go to cursedv2#3199")
- SectionCredits:NewButton("Join the Discord", "Copies the invite", function()
- setclipboard(tostring("Discord.gg/zt3SbWwKzn"))
- end)
- SectionCredits:NewKeybind("Toggle ui", "KeybindInfo", Enum.KeyCode.RightShift, function()
- Library:ToggleUI()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement