RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create an auto farming script for blox fruits"
-- local script = Instance.new("LocalScript") script.Parent = game.Workspace local player = game.Players.LocalPlayer while true do local fruit = game.Workspace:FindFirstChildOfClass("Fruit") if fruit then player.Character.HumanoidRootPart.CFrame = fruit.CFrame wait(0.5) player.Character.Humanoid:EquipTool(player.Backpack:FindFirstChildOfClass("Tool")) wait(1) player.Character.Humanoid:UnequipTools() wait(1) end wait(0.5) end