ADVERTISEMENTREMOVE ADS
Tape Auto Farm
47,164 views
Script Preview
Description
This script just teleports any tapes it finds to you
Tested with
ADVERTISEMENTREMOVE ADS
20 Lines • 685 Bytes
local player = game.Players.LocalPlayer
local runService = game:GetService("RunService")
local function teleportTapes()
local character = player.Character
if character then
local rootPart = character:FindFirstChild("HumanoidRootPart")
if rootPart then
for _, tape in pairs(workspace:GetChildren()) do
if tape:IsA("BasePart") and tape.Name == "Tape" then
tape.Position = rootPart.Position + Vector3.new(0, 2, 0) -- Moves the Tape slightly above the player
end
end
end
end
end
-- Continuously update positions
runService.Heartbeat:Connect(teleportTapes)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS
![FNAF TPRR Tape Farm [UPDATED AUG 24] thumbnail](/_next/image?url=%2Fassets%2Fscripts%2F683f58b471a5678b4958fff1_1754231565866_yOdWfaKcZd.webp&w=640&q=75)



Comments