draxe55

skids#5

Aug 9th, 2021
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2.  
  3. local ATMEnabled,HospitalEnabled,ShoeEnabled = false,false,false
  4.  
  5. if messagebox("Enable ATM Farm?","Settings",4) == 6 then ATMEnabled = true end
  6. if messagebox("Enable Hospital Farm?","Settings",4) == 6 then HospitalEnabled = true end
  7. if messagebox("Enable Shoe Farm?","Settings",4) == 6 then ShoeEnabled = true end
  8.  
  9. repeat wait() until plr.Character:FindFirstChild("FULLY_LOADED_CHAR")
  10.  
  11. for i,v in pairs(game.Workspace:GetDescendants()) do
  12. if v:IsA("Seat") then
  13. v:Destroy()
  14. end
  15. end
  16.  
  17. function DeleteAntiCheat()
  18. for i,v in pairs(plr.Character:GetChildren()) do
  19. if v.ClassName == "Script" and v.Name ~= "Health" then
  20. v:Destroy()
  21. end
  22. end
  23. end
  24.  
  25. plr.CharacterAdded:Connect(function(character)
  26. repeat wait() until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("FULLY_LOADED_CHAR")
  27. DeleteAntiCheat()
  28. wait(1)
  29. reset = false
  30. end)
  31. DeleteAntiCheat()
  32.  
  33. local reset = false
  34. spawn(function()
  35. while wait() do
  36. pcall(function()if plr.Character.Humanoid.Health <= 0 then reset = true end end)
  37. end
  38. end)
  39.  
  40. game:GetService("Players").LocalPlayer.Idled:connect(function()
  41. game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  42. wait(1)
  43. game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  44. end)
  45.  
  46. game:GetService('RunService').Stepped:connect(function()
  47. pcall(function()plr.Character.Humanoid:ChangeState(11)end)
  48. setsimulationradius(math.huge)
  49. end)
  50.  
  51. local function CompleteHospitalJob(Colour,Patient)
  52. repeat
  53. fireclickdetector(game.Workspace.Ignored.HospitalJob[Colour].ClickDetector)
  54. wait(0.1)
  55. if Patient:FindFirstChild("ClickDetector") then
  56. fireclickdetector(Patient.ClickDetector)
  57. end
  58. until Patient.Name == "Thank you!" or Patient.Name == "Wrong bottle!"
  59. end
  60.  
  61. local function OtherJobs()
  62. if HospitalEnabled then
  63. for i,v in pairs(game.Workspace.Ignored.HospitalJob:GetChildren()) do
  64. if v.ClassName == "Model" then
  65. plr.Character.HumanoidRootPart.CFrame = CFrame.new(113.1,22.79,-478.97)
  66. if string.find(v.Name, "Red") then CompleteHospitalJob("Red",v)
  67. elseif string.find(v.Name, "Blue") then CompleteHospitalJob("Blue",v)
  68. elseif string.find(v.Name, "Green") then CompleteHospitalJob("Green",v) end
  69. end
  70. end
  71. end
  72. if ShoeEnabled then
  73. for i,v in pairs(game.Workspace.Ignored.Drop:GetChildren()) do
  74. if v.Name == "MeshPart" then
  75. v.Name = "ShoeGrabbing"
  76. repeat
  77. wait()
  78. pcall(function()
  79. plr.Character.HumanoidRootPart.CFrame = v.CFrame
  80. fireclickdetector(v.ClickDetector)
  81. end)
  82. until not game.Workspace.Ignored.Drop:FindFirstChild("ShoeGrabbing")
  83. end
  84. end
  85. if plr.Character.BodyEffects.ShoesCollect.Value > 9 then
  86. fireclickdetector(game.Workspace.Ignored["Clean the shoes on the floor and come to me for cash"].ClickDetector)
  87. end
  88. end
  89. end
  90.  
  91. while wait(0.5) do
  92. OtherJobs()
  93. if ATMEnabled then
  94. for i,v in pairs(game.Workspace.Cashiers:GetChildren()) do
  95. if v.Humanoid.Health > 0 then
  96. wait(5)
  97. spawn(function()
  98. while v.Humanoid.Health > 0 do
  99. wait()
  100. pcall(function()plr.Character.HumanoidRootPart.CFrame = v.Head.CFrame * CFrame.new(0, -2, 1.5)end)
  101. end
  102. end)
  103. repeat
  104. pcall(function()plr.Character.Humanoid:EquipTool(plr.Backpack.Combat)end)
  105. wait(0.1)
  106. pcall(function()
  107. plr.Character.Combat:Activate()
  108. wait(2)
  109. plr.Character.Combat:Deactivate()
  110. wait(1)
  111. end)
  112. until v.Humanoid.Health <= 0
  113. wait(0.1)
  114. for ii,vv in pairs(game.Workspace.Ignored.Drop:GetChildren()) do
  115. if vv.Name ~= "MoneyDrop" then continue end
  116. if (plr.Character.HumanoidRootPart.Position - vv.Position).Magnitude > 25 then continue end
  117. vv.Name = "Grabbing"
  118. vv.Anchored = true
  119. while game.Workspace.Ignored.Drop:FindFirstChild("Grabbing") do
  120. wait()
  121. pcall(function()
  122. plr.character.HumanoidRootPart.CFrame = vv.CFrame
  123. if not reset then fireclickdetector(vv.ClickDetector) end
  124. end)
  125. end
  126. end
  127. OtherJobs()
  128. end
  129. end
  130. end
  131. end
Advertisement
Add Comment
Please, Sign In to add comment