Keimu

💥 Destruction Simulator Inf Everything

Apr 6th, 2023
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. --https://discord.gg/j4MvQcWTNS
  2. --Rhyon#3143
  3.  
  4. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  5. local Window = Library.CreateLib("Destruction Simulator", "BloodTheme")
  6.  
  7. --Money
  8. local Money = Window:NewTab("Money")
  9. local MoneySection = Money:NewSection("Money Options")
  10.  
  11. MoneySection:NewButton("Money", "Click for alot of money", function()
  12. game:GetService("ReplicatedStorage").Remotes.generateBoost:FireServer("Coins", 480, 5000000)
  13. end)
  14.  
  15. --Exp
  16. local Exp = Window:NewTab("Exp")
  17. local ExpSection = Exp:NewSection("Exp Options")
  18.  
  19. ExpSection:NewButton("Exp", "Click 1 time for 10 level", function()
  20. game:GetService("ReplicatedStorage").Remotes.generateBoost:FireServer("Levels", 480, 10)
  21. end)
  22.  
  23. --Player
  24. local Player = Window:NewTab("Local Player")
  25. local PlayerSection = Player:NewSection("Local Player Options")
  26.  
  27. PlayerSection:NewButton("ESP", "See players thru any material/object.", function()
  28. loadstring(game:HttpGet('https://pastebin.com/raw/tLH1mGy9'))()
  29. end)
  30.  
  31. --Tab
  32. local Tab = Window:NewTab("Toggle GUI")
  33. local TabSection = Tab:NewSection("Open and Close GUI")
  34.  
  35. TabSection:NewKeybind("Open and Close GUI", "Change keybind and u can toggle", Enum.KeyCode.Insert, function()
  36. Library:ToggleUI()
  37. end)
  38.  
  39. --Notifications
  40. local NotificationBindable = Instance.new("BindableFunction")
  41. NotificationBindable.OnInvoke = callback
  42.  
  43. game.StarterGui:SetCore("SendNotification", {
  44. Title = "Rhyon#3143";
  45. Text = "https://discord.gg/j4MvQcWTNS join up!";
  46. Icon = "";
  47. Duration = 30;
  48. Callback = NotificationBindable;
  49. })
Add Comment
Please, Sign In to add comment