draxe55

1

Jun 2nd, 2021
1,535
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. repeat wait() until plr.Character:FindFirstChild("FULLY_LOADED_CHAR")
  3. --SEAT DESTRUCTIONNNNN
  4. for i,v in pairs(game.Workspace:GetDescendants()) do
  5. if v:IsA("Seat") then
  6. v:Destroy()
  7. end
  8. end
  9. --anti tp anticheat
  10. function DeleteAntiCheat()
  11. for i,v in pairs(plr.Character:GetChildren()) do
  12. if v.ClassName == "Script" and v.Name ~= "Health" then
  13. v:Destroy()
  14. end
  15. end
  16. end
  17.  
  18. plr.CharacterAdded:Connect(function(character)
  19. repeat wait() until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("FULLY_LOADED_CHAR")
  20. DeleteAntiCheat()
  21. wait(1)
  22. reset = false
  23. end)
  24. DeleteAntiCheat()
  25. --respawn
  26. local reset = false
  27. spawn(function()
  28. while wait() do
  29. pcall(function()if plr.Character.Humanoid.Health <= 0 then reset = true end end)
  30. end
  31. end)
  32. --antiafk
  33. game:GetService("Players").LocalPlayer.Idled:connect(function()
  34. game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  35. wait(1)
  36. game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  37. end)
  38. --network ownership
  39. game:GetService('RunService').Stepped:connect(function()
  40. pcall(function()plr.Character.Humanoid:ChangeState(11)end)
  41. setsimulationradius(math.huge)
  42. end)
  43.  
  44. while wait(0.5) do
  45. for i,v in pairs(game.Workspace.Cashiers:GetChildren()) do
  46. if v.Humanoid.Health > 0 then
  47. spawn(function()
  48. while v.Humanoid.Health > 0 do
  49. wait()
  50. pcall(function()plr.Character.HumanoidRootPart.CFrame = v.Head.CFrame * CFrame.new(0, -2, 1.5)end)
  51. end
  52. end)
  53. repeat
  54. pcall(function()plr.Character.Humanoid:EquipTool(plr.Backpack.Combat)end)
  55. wait(0.1)
  56. pcall(function()
  57. plr.Character.Combat:Activate()
  58. wait(2)
  59. plr.Character.Combat:Deactivate()
  60. wait(1)
  61. end)
  62. until v.Humanoid.Health <= 0
  63. wait(0.1)
  64.  
  65. for ii,vv in pairs(game.Workspace.Ignored.Drop:GetChildren()) do
  66. if vv.Name ~= "MoneyDrop" then continue end
  67. if (plr.Character.HumanoidRootPart.Position - vv.Position).Magnitude > 25 then continue end
  68. vv.Name = "Grabbing"
  69. vv.Anchored = true
  70. while game.Workspace.Ignored.Drop:FindFirstChild("Grabbing") do
  71. wait()
  72. pcall(function()
  73. plr.character.HumanoidRootPart.CFrame = vv.CFrame
  74. if not reset then fireclickdetector(vv.ClickDetector) end
  75. end)
  76. end
  77. end
  78. end
  79. end
  80. end
Advertisement
Add Comment
Please, Sign In to add comment