Tower Defense Simulator AUTO COLLECT RAZORS SCRIPT

Created by jialexu2007

Features:

  • AUTO COLLECT RAZORS
if game.PlaceId ~= 5591597781 then return end
getgenv().DefaultCam = 1
repeat wait() until game:IsLoaded()
local RazorTable = {}
for i,v in next,workspace:GetChildren() do
    if v:IsA("MeshPart") and v.Name == "PhilipsRazor" and not table.find(RazorTable,v) then
        table.insert(RazorTable,v)
    end
end
Workspace.ChildAdded:Connect(function(Instance)
    wait(.5)
    if Instance:IsA("MeshPart") and Instance.Name == "PhilipsRazor" and not table.find(RazorTable,Instance) then
        table.insert(RazorTable,Instance)
    end
end)
task.spawn(function()
    while true do
        wait()
        for i = 1,#RazorTable do
            if RazorTable[i] and RazorTable[i].CFrame.Y < 200 then
                game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
                game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = RazorTable[i].CFrame
            elseif not RazorTable[i] then
                table.remove(RazorTable,i)
            end
        end
    end
end)

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!