MADE BY m320
FEATURE:
- ANNOY PEOPLE
- .
- DEV NOTE:
that makes anyone whos holding out a gun shoot a loud sound over and over again.
If they unequip their gun, the remote will still fire and the gun will still shoot.
GAME LINK:
TIDEWATER
SCRIPT:
for i, v in pairs(game.Workspace:GetDescendants()) do
if v:IsA("Tool") then
spawn(function()
for i = 1, 50000 do
game.ReplicatedStorage.SoundEffect:FireServer(v.Tip, "FN-FAL", "Fire", true, false)
wait(0.1)
end
end)
end
end