Advertisement
UnknownExploiter

EntryPoint (KillHouse)

Jan 27th, 2019
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.09 KB | None | 0 0
  1. -- Made by UnknownExploiter
  2. -- Open your dev console to see what it tells u to do mk
  3.  
  4. print'Start'
  5. print'Deleting unwanted Barriers/Spawns'
  6. --game.Workspace.Level.Cells.Glass.Barrier:Destroy() -- Fix l8r
  7. --game.Workspace.Level.Cells.Glass.Seal:Destroy() -- Fix l8r
  8. game.Workspace.Level.Cells.SpawnZone:Destroy()
  9. game.Workspace.Level.Cells.Killhouse:Destroy()
  10. game.Workspace.Level.Triggers.AITrig:Destroy()
  11. --game.Workspace.Barrier:Destroy() -- Fix l8r
  12. print'Done!'
  13. print'Teleporting Guards to a diffrent location then killing them'
  14. print'If the guard fails to die then shoot them with your thicc gun k'
  15. local Gholder = game.Workspace.Level.Actors
  16. for i,v in pairs(Gholder:GetChildren()) do
  17.     if v.Name == "NPC" then
  18.         v.Character.HumanoidRootPart.Anchored = false
  19.         v.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService"Players".LocalPlayer.Character.HumanoidRootPart.Position)Vector3.new(2,1,2)
  20.         v.Character.HumanoidRootPart.Anchored = true
  21.         v.Character.Humanoid.Health = 0
  22.         wait(0.1)
  23.         v.Character.Humanoid.Health = 0
  24.         wait(0.1)
  25.         v.Character.Humanoid.Health = 0 else
  26.         warn'Failed to kill Guard'
  27.     end
  28. end
  29. print'Done!'
  30. print'Teleporting Guard with a Red-Keycard to spawn then killing him'
  31. print'If the guard fails to die then shoot them with your thicc gun k'
  32. local Cardholder = game.Workspace.Level.Actors
  33. for i,v in pairs(Gholder:GetChildren()) do
  34.     if v.Name == "Red" then
  35.         v.Character.HumanoidRootPart.Anchored = false
  36.         v.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService"Players".LocalPlayer.Character.HumanoidRootPart.Position)Vector3.new(2,1,2)
  37.         v.Character.HumanoidRootPart.Anchored = true
  38.         v.Character.Humanoid.Health = 0
  39.         wait(0.1)
  40.         v.Character.Humanoid.Health = 0
  41.         wait(0.1)
  42.         v.Character.Humanoid.Health = 0 else
  43.         warn'Failed to kill Cardholder'
  44.     end
  45. end
  46. print'Ok, now grab the drill and go disable vault sensors and start the drill, if you did it right you have done killhouse in around 4-5 minutes k'
  47. print'Done!'
  48. print'End'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement