RoSploitzer

Notoriety Autofarm Script

Jun 13th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. Firstly, create a lobby and buy a shadow raid contract(Nightmare for more exp and cash)
  2. Then, load into the game and ready up.
  3. Execute the script and it should teleport you to the loot and it will bag it for you.
  4. After bagging the loot, it will tp you back to the spawn where you can drop the bags on the van.
  5. There you go,easy cash & exp
  6.  
  7. ---------------------------------------------------------------------------------------------------
  8.  
  9. --// Vars
  10. local WS = game:GetService("Workspace")
  11. local PS = game:GetService("Players")
  12. local Lootables = WS:WaitForChild("Lootables")
  13. local HumRoot = PS.LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  14.  
  15. local NewO = Instance.new("Part", workspace)
  16. NewO.CFrame = HumRoot.CFrame
  17. NewO.CanCollide = false
  18. NewO.Anchored = true
  19.  
  20. function Interact(O)
  21. local Event = game:GetService("ReplicatedStorage").Remotes.CompleteInteraction
  22. Event:FireServer(O)
  23. end
  24.  
  25. PS.LocalPlayer.Character.Humanoid:ChangeState(11)
  26. for _,v in pairs (workspace:GetDescendants()) do
  27.  
  28. if v.Name == "LootablePainting" then
  29. local Picture = v:FindFirstChild("Picture")
  30. repeat wait() HumRoot.CFrame = Picture.CFrame Interact(v) until v.Parent == nil
  31. end
  32.  
  33. if v.Name == "Artifact" then
  34. local Handle = v:FindFirstChild("Handle")
  35. repeat wait() HumRoot.CFrame = Handle.CFrame Interact(v) until v.Parent == nil
  36. end
  37.  
  38. if v.Name == "Samurai" then
  39. local Part = v:FindFirstChildWhichIsA("Part")
  40. repeat wait() HumRoot.CFrame = Part.CFrame Interact(v) until v.Parent == nil
  41. end
  42.  
  43. if v.Name == "Coke" then
  44. local Cola = v:FindFirstChild("Cola")
  45. repeat wait() HumRoot.CFrame = Cola.CFrame Interact(v) until v.Parent == nil
  46. end
  47.  
  48. if v.Name == "WeaponBagger" then
  49. local Barrel = v:FindFirstChild("Barrel")
  50. repeat wait() HumRoot.CFrame = Barrel.CFrame Interact(v) until v.Parent == nil
  51. end
  52.  
  53. if v.Name == "GoldBars" then
  54. local Bar = v:FindFirstChild("Bar")
  55. repeat wait() HumRoot.CFrame = Bar.CFrame Interact(v) until v.Parent == nil
  56. end
  57.  
  58. if v.Name == "Money" then
  59. local Buck = v:FindFirstChild("Bucks")
  60. repeat wait() HumRoot.CFrame = Buck.CFrame Interact(v) until v.Parent == nil
  61. end
  62.  
  63. if v.Name == "SmallJewels2" then
  64. local Part = v:FindFirstChildWhichIsA("Part")
  65. repeat wait() HumRoot.CFrame = Part.CFrame Interact(v) until v.Parent == nil
  66. end
  67.  
  68. if v.Name == "Jewels" then
  69. local Part = v:FindFirstChildWhichIsA("Part")
  70. repeat wait() HumRoot.CFrame = Part.CFrame Interact(v) until v.Parent == nil
  71. end
  72.  
  73. if v.Name == "Cash Register" then
  74. local Drawer = v:WaitForChild("Drawer")
  75. repeat wait() HumRoot.CFrame = Drawer.CFrame Interact(v) until v.Name == "OpenedRegister"
  76. end
  77.  
  78. if v.Name == "SmallJewels" then
  79. local Ring = v:WaitForChild("Part")
  80. repeat wait() HumRoot.CFrame = Ring.CFrame Interact(v) until v.Parent == nil
  81. end
  82.  
  83. if v.Name == "DepositMoney" then
  84. local Hitbox = v:WaitForChild("Hitbox")
  85. repeat wait() HumRoot.CFrame = Hitbox.CFrame Interact(v) until v.Parent == nil
  86. end
  87.  
  88. if v.Name == "DepositMoneyStack" then
  89. local Hitbox = v:WaitForChild("Hitbox")
  90. repeat wait() HumRoot.CFrame = Hitbox.CFrame Interact(v) until v.Parent == nil
  91. end
  92.  
  93. if v.Name == "DepositGoldBar" then
  94. local Hitbox = v:WaitForChild("Hitbox")
  95. repeat wait() HumRoot.CFrame = Hitbox.CFrame Interact(v) until v.Parent == nil
  96. end
  97.  
  98. if v.Name == "DepositRing" then
  99. local Hitbox = v:WaitForChild("Hitbox")
  100. repeat wait() HumRoot.CFrame = Hitbox.CFrame Interact(v) until v.Parent == nil
  101. end
  102. end
  103.  
  104. PS.LocalPlayer.Character.Humanoid:ChangeState(11)
  105.  
  106. warn("Teleported")
  107. HumRoot.CFrame = NewO.CFrame
  108. NewO:Remove()
Add Comment
Please, Sign In to add comment