- -- Nations Roleplay Auto Farm Script
- -- This script automatically paints all provinces in Nations Roleplay using the PaintBucket tool
- -- Features: Auto Paint Provinces, Fast Territory Claim, Optimized Loop
- -- Works on all Roblox Executors
- for i, v in pairs(game.Workspace.Provinces:GetChildren()) do
- task.spawn(function()
- local args = {
- [1] = "PaintPart",
- [2] = {
- ["Part"] = v, -- Target province part
- ["Color"] = Color3.fromRGB(0, 0, 0) -- Set the color to black, can be changed
- }
- }
- -- Invoke the PaintBucket server control to auto-paint the province
- game.Players.LocalPlayer.Character.PaintBucket.Remotes.ServerControls:InvokeServer(unpack(args))
- end)
- end