get paid to paste

Zombie Survivors ScriptBRING ZOMBIES

local rs = game:GetService("RunService");
local lp = game.Players.LocalPlayer.Character;
rs.Heartbeat:connect(function()
    for i, v in pairs(workspace.Npcs:GetChildren()) do
        if v:FindFirstChild("HumanoidRootPart") and lp then
            v.PrimaryPart.CFrame = lp.PrimaryPart.CFrame + Vector3.new(6, 0, 0);
        end;
    end;
end);

Pasted: Jul 31, 2023, 11:55:10 pm
Views: 33