narratorxd

Untitled

Jul 31st, 2023 (edited)
1,337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.04 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local Workspace = game:GetService("Workspace")
  3. local Teams = game:GetService("Teams")
  4.  
  5. local UserInputService = game:GetService("UserInputService")
  6. local TeleportService = game:GetService("TeleportService")
  7. local VirtualInputManager = game:GetService("VirtualInputManager")
  8.  
  9. local Player = Players.LocalPlayer
  10. local Food_Level = Workspace:WaitForChild("FoodSupplies"):WaitForChild("TownSupply"):WaitForChild("FoodLevel")
  11.  
  12. local Teams_Table = {}
  13. for _, Team in next, Teams:GetChildren() do
  14.     table.insert(Teams_Table, Team.Name)
  15. end
  16. table.sort(Teams_Table)
  17.  
  18. local KavoUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/FlamingOmar/NightStar.Kavo/main/KavoUi.lua"))()
  19. local Window = KavoUI.CreateLib("GRG UPDATED", "Serpent")
  20.  
  21. -- Tabs
  22. local Aura = Window:NewTab("MAIN")
  23. local AuraSection = Aura:NewSection("MAIN")
  24.  
  25. -- Toggles
  26. AuraSection:NewToggle("RICE AURA", "JUST LIKE KILLAURA", function(state)
  27.     if state then
  28.         -- Rice Farming
  29.         while true do
  30.             local Kart = Workspace:WaitForChild("Karts"):FindFirstChild(Player.Name)
  31.             local Sickle = GetTool("Sickle")
  32.            
  33.             if Kart then
  34.                 local RightSickle = Kart:FindFirstChild("RightSickle")
  35.                 local LeftSickle = Kart:FindFirstChild("LeftSickle")
  36.                
  37.                 if RightSickle and LeftSickle then
  38.                     local Rice_To_Cut = GetHarvestable(RightSickle, "Rice")
  39.                     if Rice_To_Cut then
  40.                         Touch(RightSickle, Rice_To_Cut)
  41.                         Touch(LeftSickle, Rice_To_Cut)
  42.                     end
  43.                 end
  44.             elseif Sickle then
  45.                 local Rice_To_Cut = GetHarvestable(Sickle.Handle, "Rice")
  46.                 if Rice_To_Cut then
  47.                     Sickle:Activate()
  48.                     Touch(Sickle.Handle, Rice_To_Cut)
  49.                     Touch(Sickle.Handle, Rice_To_Cut)
  50.                 end
  51.             end
  52.             task.wait()
  53.         end
  54.     end
  55. end)
  56.  
Advertisement
Add Comment
Please, Sign In to add comment