The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Warrior Champions script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 8



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/lua')))()
  2. local w = library:CreateWindow("Warrior Champions")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7.  
  8. b:Toggle("AutoSwing",function(bool)
  9.     shared.toggle = bool
  10.     AutoSwing = bool
  11. end)
  12.  
  13. b:Toggle("AutoSell",function(bool)
  14.     shared.toggle = bool
  15.     AutoSell = bool
  16. end)
  17.  
  18. f:Toggle("Blades",function(bool)
  19.     shared.toggle = bool
  20.     Blades = bool
  21. end)
  22.  
  23. f:Toggle("Dna",function(bool)
  24.     shared.toggle = bool
  25.     Dna = bool
  26. end)
  27.  
  28. f:Toggle("Ranks",function(bool)
  29.     shared.toggle = bool
  30.     Ranks = bool
  31. end)
  32.  
  33. e:Toggle("AntiAfk",function(bool)
  34.     shared.toggle = bool
  35.     AntiAfk = bool
  36. end)
  37.  
  38. --Credits
  39. u:Button("Pojken#8815",function()
  40.     setclipboard("Pojken#8815")
  41. end)
  42.  
  43. u:Button("maxgat5#8395",function()
  44.     setclipboard("maxgat5#8395")
  45. end)
  46.  
  47. u:Button("Discord Server",function()
  48.     setclipboard("https://discord.gg/K4txdRSVfq")
  49. end)
  50.  
  51. if game:GetService("CoreGui"):FindFirstChild("PurchasePromptApp") then
  52.     game:GetService("CoreGui").PurchasePromptApp:Destroy()
  53. end
  54.    
  55. while wait() do
  56.     spawn(function()
  57.         if AutoSwing == true then
  58.             game:GetService("ReplicatedStorage").Knit.Services.CharacterService.RF.Swing:InvokeServer()
  59.         end
  60.     end)
  61.    
  62.     spawn(function()
  63.         if AutoSell == true then
  64.             game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").Resources.Sell.Part.CFrame.Position + Vector3.new(0,0,0))
  65.         end
  66.     end)
  67.    
  68.     spawn(function()
  69.         if Blades == true then
  70.             game:GetService("ReplicatedStorage").Knit.Services.ShopService.RF.BuyBest:InvokeServer("Blades")
  71.         end
  72.     end)
  73.    
  74.     spawn(function()
  75.         if Dna == true then
  76.             game:GetService("ReplicatedStorage").Knit.Services.ShopService.RF.BuyBest:InvokeServer("DNA")
  77.         end
  78.     end)
  79.    
  80.     spawn(function()
  81.         if Ranks == true then
  82.             for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Classes.Background.Frame.Frames.ItemHolder:GetChildren()) do
  83.                 if v.ClassName ~= "UIGridLayout" then
  84.                     game:GetService("ReplicatedStorage").Knit.Services.ShopService.RF.BuyItem:InvokeServer(v.Name)
  85.                 end
  86.             end
  87.         end
  88.     end)
  89.    
  90.     spawn(function()
  91.         if AntiAfk == true then
  92.             local bb=game:service'VirtualUser'
  93.             bb:CaptureController()
  94.             bb:ClickButton2(Vector2.new())
  95.         end
  96.     end)
  97. end