Yingyang005

Blue lock

Dec 4th, 2024 (edited)
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. -- Importation de OrionLib
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3.  
  4. -- Fonction pour activer la compétence Kings Impact
  5. local function activerKingsImpact()
  6. local args = {
  7. [1] = "KingsImpact"
  8. }
  9. game:GetService("ReplicatedStorage").Packages.Knit.Services.AbilityService.RE.Ability:FireServer(unpack(args))
  10. end
  11.  
  12. -- Fonction pour activer la compétence Kings Dribble
  13. local function activerKingsDribble()
  14. local args = {
  15. [1] = game:GetService("ReplicatedStorage").Effects.KingsDribble
  16. }
  17. game:GetService("ReplicatedStorage").Packages.Knit.Services.EffectsService.RE.Vfx:FireServer(unpack(args))
  18. end
  19.  
  20. -- Fonction pour activer l'éveil avec un script spécifique
  21. local function activerAwakening()
  22. -- Remplacez le contenu de cette fonction par le script spécifique pour Awakening
  23. local args = {
  24. -- Exemple d'arguments pour le script d'Awakening
  25. }
  26. game:GetService("ReplicatedStorage").Packages.Knit.Services.AwakeningService.RE.StartAwakening:FireServer(unpack(args))
  27. end
  28.  
  29. -- Fonction pour activer Flow avec un script spécifique
  30. local function activerFlow()
  31. -- Remplacez le contenu de cette fonction par le script spécifique pour Flow
  32. local args = {
  33. -- Exemple d'arguments pour le script de Flow
  34. }
  35. game:GetService("ReplicatedStorage").Packages.Knit.Services.FlowService.RE.Activate:FireServer(unpack(args))
  36. end
  37.  
  38. -- Interface utilisateur avec OrionLib
  39. local Window = OrionLib:MakeWindow({Name = "Blue Lock Skill Activator", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionConfig"})
  40.  
  41. local Tab = Window:MakeTab({
  42. Name = "Compétences",
  43. Icon = "rbxassetid://4483345998",
  44. PremiumOnly = false
  45. })
  46.  
  47. Tab:AddButton({
  48. Name = "Activer Kings Impact",
  49. Callback = activerKingsImpact
  50. })
  51.  
  52. Tab:AddButton({
  53. Name = "Activer Kings Dribble",
  54. Callback = activerKingsDribble
  55. })
  56.  
  57. Tab:AddButton({
  58. Name = "Activer Awakening",
  59. Callback = activerAwakening
  60. })
  61.  
  62. Tab:AddButton({
  63. Name = "Activer Flow",
  64. Callback = activerFlow
  65. })
  66.  
  67. OrionLib:Init()
  68.  
Advertisement
Add Comment
Please, Sign In to add comment