Youtube_AppealsCat

Auto Ascending Script

Oct 4th, 2024
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1.     getgenv().AutoAscending = true;
  2.  
  3.     task.spawn(function()
  4.         while getgenv().AutoAscending == true do
  5.             pcall(function()
  6.                 if game:GetService("Players").LocalPlayer:WaitForChild("Data"):WaitForChild("Ability"):GetAttribute("AbilityLevel") == 200 then
  7.                     local args = {[1] = game:GetService("Players").LocalPlayer:WaitForChild("Data"):WaitForChild("Ability").Value};
  8.                     game:GetService("ReplicatedStorage"):WaitForChild("ReplicatedModules"):WaitForChild("KnitPackage"):WaitForChild("Knit"):WaitForChild("Services"):WaitForChild("LevelService"):WaitForChild("RF"):WaitForChild("AscendAbility"):InvokeServer(unpack(args));
  9.                 end
  10.             end)
  11.             task.wait(0.35);
  12.         end
  13.     end)
Add Comment
Please, Sign In to add comment