Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Importation de OrionLib
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- -- Fonction pour activer la compétence Kings Impact
- local function activerKingsImpact()
- local args = {
- [1] = "KingsImpact"
- }
- game:GetService("ReplicatedStorage").Packages.Knit.Services.AbilityService.RE.Ability:FireServer(unpack(args))
- end
- -- Fonction pour activer la compétence Kings Dribble
- local function activerKingsDribble()
- local args = {
- [1] = game:GetService("ReplicatedStorage").Effects.KingsDribble
- }
- game:GetService("ReplicatedStorage").Packages.Knit.Services.EffectsService.RE.Vfx:FireServer(unpack(args))
- end
- -- Fonction pour activer l'éveil avec un script spécifique
- local function activerAwakening()
- -- Remplacez le contenu de cette fonction par le script spécifique pour Awakening
- local args = {
- -- Exemple d'arguments pour le script d'Awakening
- }
- game:GetService("ReplicatedStorage").Packages.Knit.Services.AwakeningService.RE.StartAwakening:FireServer(unpack(args))
- end
- -- Fonction pour activer Flow avec un script spécifique
- local function activerFlow()
- -- Remplacez le contenu de cette fonction par le script spécifique pour Flow
- local args = {
- -- Exemple d'arguments pour le script de Flow
- }
- game:GetService("ReplicatedStorage").Packages.Knit.Services.FlowService.RE.Activate:FireServer(unpack(args))
- end
- -- Interface utilisateur avec OrionLib
- local Window = OrionLib:MakeWindow({Name = "Blue Lock Skill Activator", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionConfig"})
- local Tab = Window:MakeTab({
- Name = "Compétences",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab:AddButton({
- Name = "Activer Kings Impact",
- Callback = activerKingsImpact
- })
- Tab:AddButton({
- Name = "Activer Kings Dribble",
- Callback = activerKingsDribble
- })
- Tab:AddButton({
- Name = "Activer Awakening",
- Callback = activerAwakening
- })
- Tab:AddButton({
- Name = "Activer Flow",
- Callback = activerFlow
- })
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment