Tower Of Misery Script | AUTOFARM AND REMOVE KILL PARTS

Created by BaconLord

Features:

  • AUTOFARM
  • REMOVE KILL PARTS
local vu = game:GetService("VirtualUser")
game:GetService("Players").LocalPlayer.Idled:connect(function()
 vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
 wait(1)
 vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
end)

spawn(function()
while task.wait () do
   pcall(function()
for i,v in pairs(game.Workspace:GetDescendants()) do
if v.Name =="KillPart" then
   v:Destroy()
  end
end
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").TopSection.Hallway.RewardDoor.CFrame
end) end end)