Advertisement
trixade

AloSanctuaryInfiniteOrb

Feb 18th, 2022
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.79 KB | None | 0 0
  1. -- get everything CREDIT : e621
  2. for i,v in pairs(game:GetService("Workspace").Map.Orbs:GetChildren()) do
  3.    game:GetService("ReplicatedStorage").NetManagedInstances.orbCollection:FireServer(v.Name)
  4. end
  5. local poses = require(game:GetService("ReplicatedStorage"):WaitForChild("Shared",3):WaitForChild("Poses",3))
  6. for i,v in pairs(poses) do
  7.    game:GetService("ReplicatedStorage").NetManagedInstances.UnlockPose:FireServer(v.Name)
  8. end
  9.  
  10. local mats = game:GetService("Players").LocalPlayer.PlayerGui.Inventory.Canvas.Mats
  11. for i,v in pairs(mats) do
  12.    if v:IsA("ImageButton") then
  13.        game:GetService("ReplicatedStorage").NetManagedInstances.UnlockMat:FireServer(v.Name)
  14.    end
  15. end
  16. game:GetService("ReplicatedStorage").NetManagedInstances.UnlockMat:FireServer("DarkGreen")
  17.  
  18.  
  19. -- Unlock Renown Crewneck Pullover CREDIT : Nico013Xx
  20. local a = {["pose"] = "LotusPose",["length"] = 1}
  21. game:GetService("ReplicatedStorage").NetManagedInstances.BeginMeditation:FireServer(a)
  22. wait()
  23. game:GetService("ReplicatedStorage").NetManagedInstances.FinishMeditation:FireServer()
  24.  
  25. -- INF ORB CREDIT : Nico013Xx
  26. while wait() do
  27. game:GetService("ReplicatedStorage").NetManagedInstances.orbCollection:FireServer(1)
  28. end
  29.  
  30. -- Unlock All Mats CREDIT : Nico013Xx
  31. local mat = {"Black", "Pink","Yellow","LightGreen","DarkGreen"}
  32. for i,v in ipairs(mat) do
  33. game:GetService("ReplicatedStorage").NetManagedInstances.UnlockMat:FireServer(v)
  34. end
  35.  
  36. --  unlock "G.O.A.T Jacket" , "Goddess Legging + Throwback Socks + Alo Tank Top" , "Aura" you have to execute this script on 7 different days CREDIT : Nico013Xx
  37. local a = {["pose"] = "LotusPose",["length"] = 1}
  38. game:GetService("ReplicatedStorage").NetManagedInstances.BeginMeditation:FireServer(a)
  39. wait()
  40. game:GetService("ReplicatedStorage").NetManagedInstances.FinishMeditation:FireServer()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement