Advertisement
Karap

Unlock buso,soru,geppo

Apr 30th, 2023
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  2.  
  3. local Window = Library.CreateLib("KaGa X HUB", "BloodTheme")
  4. local Tab = Window:NewTab("TabName")
  5. local Section = Tab:NewSection("Nice")
  6.  
  7. Section:NewButton("Buso", "", function()
  8. -- Ability [
  9. -- Buso,Soru,Geppo,KenUpgrade
  10. -- ]
  11. --Example
  12. local Ability = "Buso" -- Ability Name
  13. -- or
  14. -- local Ability = {Buso,Soru,Geppo}
  15. if type(Ability) == 'string' then
  16. game:GetService("CollectionService"):AddTag(game.Players.LocalPlayer.Character,Ability)
  17. elseif type(Ability) == 'table' then
  18. for i,v in next , Ability do
  19. game:GetService("CollectionService"):AddTag(game.Players.LocalPlayer.Character,v)
  20. end
  21. end
  22. end)
  23.  
  24.  
  25. Section:NewButton("Soru", "", function()
  26. -- Ability [
  27. -- Buso,Soru,Geppo-- ]
  28. --Example
  29. local Ability = "Soru" -- Ability Name
  30. -- or
  31. -- local Ability = {Buso,Soru,Geppo}
  32. if type(Ability) == 'string' then
  33. game:GetService("CollectionService"):AddTag(game.Players.LocalPlayer.Character,Ability)
  34. elseif type(Ability) == 'table' then
  35. for i,v in next , Ability do
  36. game:GetService("CollectionService"):AddTag(game.Players.LocalPlayer.Character,v)
  37. end
  38. end
  39. end)
  40.  
  41. Section:NewButton("Geppo", "", function()
  42. -- Ability [
  43. -- Buso,Soru,Geppo-- ]
  44. --Example
  45. local Ability = "Geppo" -- Ability Name
  46. -- or
  47. -- local Ability = {Buso,Soru,Geppo}
  48. if type(Ability) == 'string' then
  49. game:GetService("CollectionService"):AddTag(game.Players.LocalPlayer.Character,Ability)
  50. elseif type(Ability) == 'table' then
  51. for i,v in next , Ability do
  52. game:GetService("CollectionService"):AddTag(game.Players.LocalPlayer.Character,v)
  53. end
  54. end
  55. end)
  56.  
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement