From venuslock, 1 Week ago, written in Plain Text.
Embed
  1. -- Nations Roleplay Auto Farm Script
  2. -- This script automatically paints all provinces in Nations Roleplay using the PaintBucket tool
  3. -- Features: Auto Paint Provinces, Fast Territory Claim, Optimized Loop
  4. -- Works on all Roblox Executors
  5.  
  6. for i, v in pairs(game.Workspace.Provinces:GetChildren()) do
  7.     task.spawn(function()
  8.         local args = {
  9.             [1] = "PaintPart",
  10.             [2] = {
  11.                 ["Part"] = v, -- Target province part
  12.                 ["Color"] = Color3.fromRGB(0, 0, 0) -- Set the color to black, can be changed
  13.             }
  14.         }
  15.         -- Invoke the PaintBucket server control to auto-paint the province
  16.         game.Players.LocalPlayer.Character.PaintBucket.Remotes.ServerControls:InvokeServer(unpack(args))
  17.     end)
  18. end
  19.