Advertisement
Jan_Simon12

Oof

Jul 9th, 2022
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 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("Jujutsu Tycoon", "BloodTheme")
  3.  
  4. local Tab = Window:NewTab("Main")
  5. local Section = Tab:NewSection("Collect Cash")
  6. Section:NewButton("Click", "ButtonInfo", function()
  7. for i,v in pairs(workspace:GetChildren()) do
  8. if v.Name == "BasicLoot" or v.Name == "NpcBossLoot" then
  9. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  10. fireproximityprompt(v.ProximityPrompt)
  11. end
  12. end
  13. end)
  14. local Section = Tab:NewSection("Kill All Students")
  15. Section:NewButton("Click", "ButtonInfo", function()
  16. for i,v in pairs(workspace.Characters:GetChildren()) do
  17. if v.Name == "Student" then
  18. game:GetService("ReplicatedStorage").DamagePlayer:FireServer(v.Humanoid, 1000)
  19. end
  20. end
  21. end)
  22. local Section = Tab:NewSection("Kill Boss")
  23. Section:NewButton("Click", "ButtonInfo", function()
  24. game:GetService("ReplicatedStorage").DamagePlayer:FireServer(game:GetService("Workspace").Characters.Boss.Humanoid, 1000)
  25. end)
  26. local Section = Tab:NewSection("Kill All Players")
  27. Section:NewButton("Click", "ButtonInfo", function()
  28. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  29. if v ~= game.Players.LocalPlayer then
  30. game:GetService("ReplicatedStorage").DamagePlayer:FireServer(v.Character.Humanoid, 1000)
  31. end
  32. end
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement