Lumber Tycoon 2 Inventory Dupe

I make epic script for lumber tycoon 2 ok
join are discord for more script like this: https://nebuladevs.xyz/getDiscord.php
Script:

– PROPERTY OF NEBULA DEVS LTD. –
– [SETTINGS] –
_G.AutoDrop = false
– [SCRIPT] –
local lp = game.Players.LocalPlayer
local bp = lp.Backpack
local pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
for i,v in pairs(lp.Character:GetChildren()) do
if v.ClassName == “Part” then
v:Destroy()
end
end
wait(.1)
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.Name == “Tool” and v.Name ~= “BlueprintTool” then
v.Parent = game.Players.LocalPlayer
end
end
lp.CharacterAdded:Connect(function()
for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
if v.Name == “Tool” and v.Name ~= “BlueprintTool” then
v.Parent = game.Players.LocalPlayer.Backpack
end
end
wait(2)
game.Players.LocalPlayer.Character.Humanoid.Jump = true
wait(.1)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
wait(.1)
pos = nil
if _G.AutoDrop == true then
for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if b.Name ~= “BlueprintTool” and b.Name == “Tool” then
game.ReplicatedStorage.Interaction.ClientInteracted:FireServer(b, “Drop tool”, game.Players.LocalPlayer.Character.Head.CFrame + Vector3.new(0,5,0))
end
end
end
end)

Looks cool, but are you sure you made it?

Looks cool, but are you sure you made it?

I made it lel, only one of these that is unobfuscated.