narratorxd

Untitled

Jul 31st, 2023
1,205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.99 KB | None | 0 0
  1. --// Exploit Check \\--
  2. if firetouchinterest == nil then
  3.     while true do
  4.     end
  5. end
  6.  
  7. --// Exploit Fix \\--
  8. if not pcall(function() return syn.protect_gui end) then
  9.     syn = {}
  10.     syn.protect_gui = function(A_1)
  11.         A_1.Parent = game:GetService("CoreGui")
  12.     end
  13. end
  14.  
  15. --// Wait for game to load \\--
  16. while game:IsLoaded() == false do
  17.     wait()
  18. end
  19.  
  20. --// Services \\--
  21. local Players = game:GetService("Players")
  22. local Workspace = game:GetService("Workspace")
  23. local Teams = game:GetService("Teams")
  24. local UserInputService = game:GetService("UserInputService")
  25. local TeleportService = game:GetService("TeleportService")
  26. local VirtualInputManager = game:GetService("VirtualInputManager")
  27.  
  28. --// Variables \\--
  29. local Player = Players.LocalPlayer
  30. local Food_Level = Workspace:WaitForChild("FoodSupplies"):WaitForChild("TownSupply"):WaitForChild("FoodLevel")
  31. local Teams_Table = {}
  32.  
  33. --// Folders \\--
  34. local Barbarians = Workspace:WaitForChild("Barbarians")
  35. local Karts = Workspace:WaitForChild("Karts")
  36. local Houses = Workspace:WaitForChild("Houses")
  37. local Stores = Workspace:WaitForChild("Stores")
  38. local Peels = Workspace:WaitForChild("BananaPeels")
  39. local Harvest = {
  40.     Rice = Workspace:WaitForChild("Rice"),
  41.     Trees = Workspace:WaitForChild("Trees")
  42. }
  43.  
  44. --// Get Teams \\--
  45. for _, Team in next, Teams:GetChildren() do
  46.     table.insert(Teams_Table, Team.Name)
  47. end
  48. table.sort(Teams_Table)
  49.  
  50. --// Libraries \\--
  51. local ESP = loadstring(game:HttpGet("https://kiriot22.com/releases/ESP.lua"))()
  52. local KavoUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/FlamingOmar/NightStar.Kavo/main/KavoUi.lua"))()
  53. local Window = KavoUI.CreateLib("GRG UPDATED", "Serpent")
  54.  
  55.  - - TABS
  56.  
  57. local Aura = Window:NewTab("MAIN")
  58.  
  59. local AuraSection = Aura:NewSection("MAIN")
  60.  
  61. -- TOGGLES
  62.  
  63. AuraSection:NewToggle("RICE AURA", "JUST LIKE KILLAURA", function(state)
  64.     if state then
  65.         -- Rice Farming
  66.         while Library.flags.Rice do
  67.             -- Variables
  68.             local Kart = Karts:FindFirstChild(Player.Name)
  69.             local Seat = Kart and Kart:FindFirstChild("VehicleSeat")
  70.             local Sickle = GetTool("Sickle")
  71.             -- Vehicle
  72.             if Seat and Kart:FindFirstChild("RightSickle") and Kart:FindFirstChild("LeftSickle") then
  73.                 local Rice_To_Cut = GetHarvestable(Kart:FindFirstChild("RightSickle"), "Rice")
  74.                 if Rice_To_Cut ~= false then
  75.                     Touch(Kart.RightSickle, Rice_To_Cut)
  76.                     Touch(Kart.LeftSickle, Rice_To_Cut)
  77.                 end
  78.             -- Sickle
  79.             elseif Sickle then
  80.                 local Rice_To_Cut = GetHarvestable(Sickle.Handle, "Rice")
  81.                 if Rice_To_Cut ~= false then
  82.                     Sickle:Activate()
  83.                     Touch(Sickle.Handle, Rice_To_Cut)
  84.                     Touch(Sickle.Handle, Rice_To_Cut)
  85.                 end
  86.             end
  87.             task.wait()
  88.         end
  89.     else
  90.         Library.flags.Rice = false
  91.     end
  92. end)
Advertisement
Add Comment
Please, Sign In to add comment