Autofarm – Automatically farm resources, coins, and levels while you sit back and relax.

Autofarm – Automatically farm resources, coins, and levels while you sit back and relax.Mobile Supported📱

Features

  • INF Styles – Unlock infinite style combinations and dominate with unmatched versatility.

Tags

🏷️ Blr Scripts🏷️ Blue Lock: Rivals Gui

Game Script

loadstring(game:HttpGet("https://pastefy.app/ULaWpxKm/raw"))()
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local KnitServices = ReplicatedStorage:WaitForChild("Packages"):WaitForChild("Knit"):WaitForChild("Services")
local BallService = KnitServices:WaitForChild("BallService"):WaitForChild("RE")
local player = Players.LocalPlayer

local autoGoalOn, autoStealOn = false, false

-- Auto Goal Logic
local function autoGoal()
	task.spawn(function()
		while autoGoalOn do
			local char = player.Character
			local ball = char and char:FindFirstChild("Football")
			local root = char and char:FindFirstChild("HumanoidRootPart")
			local goal = player.Team and workspace.Goals and (player.Team.Name == "Away" and workspace.Goals.Away or workspace.Goals.Home)
			if ball and root and goal then
				root.CFrame = goal.CFrame
				BallService.Shoot:FireServer(60, nil, nil, (goal.Position - ball.Position).Unit)
			end
			task.wait(1)
		end
	end)
end

-- Auto Steal Logic
local function autoSteal()
	task.spawn(function()
		while autoStealOn do
			local myChar = player.Character
			local myRoot = myChar and myChar:FindFirstChild("HumanoidRootPart")
			local ball = workspace:FindFirstChild("Football")

			if myRoot and ball then
				local originalPos = myRoot.CFrame
				myRoot.CFrame = ball.CFrame + Vector3.new(0, 2, 0)
				BallService.Steal:FireServer()
				task.wait(0.1)
				myRoot.CFrame = originalPos
			end
			task.wait(0.5)
		end
	end)
end

-- GUI Setup
local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
gui.Name = "NagiHub"

local frame = Instance.new("Frame", gui)
frame.Size = UDim2.new(0, 200, 0, 100)
frame.Position = UDim2.new(0, 20, 0.5, -50)
frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
frame.BorderSizePixel = 0

-- Auto Goal Button
local goalBtn = Instance.new("TextButton", frame)
goalBtn.Size = UDim2.new(1, -10, 0, 40)
goalBtn.Position = UDim2.new(0, 5, 0, 5)
goalBtn.Text = "Auto Goal: OFF"
goalBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
goalBtn.TextColor3 = Color3.new(1, 1, 1)
goalBtn.MouseButton1Click:Connect(function()
	autoGoalOn = not autoGoalOn
	goalBtn.Text = "Auto Goal: " .. (autoGoalOn and "ON" or "OFF")
	if autoGoalOn then autoGoal() end
end)

-- Auto Steal Button
local stealBtn = Instance.new("TextButton", frame)
stealBtn.Size = UDim2.new(1, -10, 0, 40)
stealBtn.Position = UDim2.new(0, 5, 0, 50)
stealBtn.Text = "Auto Steal: OFF"
stealBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
stealBtn.TextColor3 = Color3.new(1, 1, 1)
stealBtn.MouseButton1Click:Connect(function()
	autoStealOn = not autoStealOn
	stealBtn.Text = "Auto Steal: " .. (autoStealOn and "ON" or "OFF")
	if autoStealOn then autoSteal() end
end)

Created On: 8/17/2025

👁️882 views