UT The Start Of Madness Script | VANTABLACK AUTO KILL

[ad_1]

Created by Tr4nt#6880

Features:

  • RUN THE BELOW SCRIPT FIRST AFTER SPAWNING VANTABLACK:
if game.Players.LocalPlayer.PlayerScripts:FindFirstChild("LocalScript") then
   game:GetService("Players").LocalPlayer.PlayerScripts.LocalScript:Destroy()
end

local enemy

local function getEnemy()
   for _, v in ipairs(game.Workspace:GetDescendants()) do
       if v:IsA("Humanoid") then
           if game.Players:FindFirstChild(v.Parent.Name) ~= game.Players.LocalPlayer then
               if v.Parent:FindFirstChild("HumanoidRootPart") then
                   enemy = v.Parent
               end
           end
       end
   end
   if not enemy then
       getEnemy()
   end
end
getEnemy()
local charac = game.Players.LocalPlayer.Character
for _, v in ipairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
   if v:IsA("Tool") and v:FindFirstChild("ShootBlaster") then
       v.ShootBlaster.LocalScript:Destroy()
       v.Activated:Connect(function()
           v.ShootBlaster:FireServer(enemy.HumanoidRootPart.Position)
       end)
       if v.Name == "gaster blaster" then
           v.Parent = charac
       end
   end
end
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 70

local con
local click
charac.Humanoid.Died:Connect(function()
   if con then
       con:Disconnect()
   end
   if click then
       click:Disconnect()
   end
end)
con = charac.HumanoidRootPart.Touched:Connect(function(p)
   local isModel = true and p:FindFirstAncestorWhichIsA("Model") or false
   if isModel and isModel.Name ~= "Blaster" and isModel:FindFirstChildWhichIsA("Script") or not isModel and isModel:FindFIrstChildWhichIsA("Script") then
       charac.HumanoidRootPart.CFrame = CFrame.new(-p.Position.X, p.Position.Y, -p.Position.Z)
   end
end)
click = game:GetService("RunService").RenderStepped:Connect(function()
   mouse1click()
   if charac.HumanoidRootPart.Position.Y <= 500 then
       charac.HumanoidRootPart.CFrame = game.Workspace.Tp.CFrame    
   end
end)
  • ONCE YOU’VE KILLED HIM RUN THE BELOW SCRIPT
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Badge.CFrame

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

[ad_2]