Advertisement
Earlyday-hackhack

Untitled

Dec 25th, 2022 (edited)
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 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("Test", "Ocean")
  3. -- main
  4. local uwu = Window:NewTab("Other scripts")
  5. local MainSection = uwu:NewSection("Other scripts")
  6.  
  7. MainSection:NewButton("Infinite yield", "oh no", function()
  8. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  9. end)
  10.  
  11.  
  12. --LOCAL PLAYER
  13. local Player = Window:NewTab("Donating")
  14. local PlayerSection = Player:NewSection("Donating")
  15.  
  16. PlayerSection:NewButton("Donate", "if you wanna change username/value if you can", function()
  17. local args = {
  18. [1] = "Fridayelias", -- change this to who you wanna donate to
  19. [2] = "no u wont", -- change this how much you want to donate
  20. [3] = "Gamepass", -- do not change this
  21. [4] = false
  22. }
  23.  
  24. game:GetService("ReplicatedStorage").Remotes.Donate:FireServer(unpack(args))
  25. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement