Advertisement
NxtB

Destruction sim

Dec 22nd, 2021
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Destruction Sim CursedGui", "DarkTheme")
  3.  
  4. -- Main tab
  5. local TabMain = Window:NewTab("Main")
  6. local SectionMain = TabMain:NewSection("Main commands")
  7. SectionMain:NewButton("Generate 100 million", "Gives you 100 million", function()
  8. game:GetService("ReplicatedStorage").Remotes.generateBoost:FireServer("Coins", 480, 100000)
  9. end)
  10. SectionMain:NewButton("Generate levels", "Gives you levels", function()
  11. game:GetService("ReplicatedStorage").Remotes.generateBoost:FireServer("Levels", 480, 10)
  12. end)
  13. SectionMain:NewButton("Sell parts", "sells your parts", function()
  14. local Humr = game.Players.LocalPlayer.Character.HumanoidRootPart
  15. local OldPos = Humr.Position
  16. Humr.CFrame = game:GetService("Workspace").ServerMap.sellSpot.CFrame
  17. wait(0.1)
  18. Humr.CFrame = CFrame.new(OldPos)
  19. end)
  20. -- Teleports tab
  21. local TabTeleports = Window:NewTab("Teleports")
  22. local SectionTeleports = TabTeleports:NewSection("Unfinished")
  23. -- Mods tab
  24. local TabMods = Window:NewTab("Mods")
  25. local SectionMods = TabMods:NewSection("Preset mods")
  26. SectionMods:NewButton("Launcher mods", "Makes your launcher epic", function()
  27. if game.Players.LocalPlayer.Character:FindFirstChild("Launcher") then
  28. game.Players.LocalPlayer.Character.Launcher.Parent = game.Players.LocalPlayer.Backpack
  29. end
  30. local Mod = require(game.Players.LocalPlayer.Backpack.Launcher.Stats)
  31. Mod.RocketSpeed = 10
  32. Mod.Cooldown = 0.1
  33. Mod.BlastRadius = Mod.BlastForce * 2
  34. Mod.BlastForce = Mod.BlastForce * 2
  35. Mod.Bursts = 1
  36. end)
  37. SectionMods:NewButton("Bomb mods", "Makes your bomb epic", function()
  38. if game.Players.LocalPlayer.Character:FindFirstChild("Bomb") then
  39. game.Players.LocalPlayer.Character.Bomb.Parent = game.Players.LocalPlayer.Backpack
  40. end
  41. local Mod = require(game.Players.LocalPlayer.Backpack.Bomb.Stats)
  42. Mod.Cooldown = 0.2
  43. Mod.BlastRadius = 200
  44. Mod.BlastForce = 5000
  45. end)
  46.  
  47. -- Credits tab
  48. local TabCredits = Window:NewTab("Credits")
  49. local SectionCredits = TabCredits:NewSection("Full credits go to cursedv2#3199")
  50. SectionCredits:NewButton("Join the Discord", "Copies the invite", function()
  51. setclipboard(tostring("Discord.gg/zt3SbWwKzn"))
  52. end)
  53. SectionCredits:NewKeybind("Toggle ui", "KeybindInfo", Enum.KeyCode.RightShift, function()
  54. Library:ToggleUI()
  55. end)
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement