scripercory1

NEW laundry simulator auto farm

Apr 5th, 2021
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. local x = getrawmetatable(game)
  2. setreadonly(x, false)
  3. local old_namecall = x.__namecall
  4.  
  5. x.__namecall = function(a, ...)
  6. local method = getnamecallmethod()
  7. local Args = {...}
  8. if method == "FireServer" then
  9. if tostring(Args[2]):find("LocalError") then
  10. return
  11. end
  12. end
  13. return old_namecall(a, ...)
  14. end
  15.  
  16. pcall(function()
  17. function GetClothes()
  18. local Clothing = workspace.Debris.Clothing:GetChildren()
  19. for i,v in pairs(Clothing) do
  20. local Remote = game.ReplicatedStorage.Events['GrabClothing']
  21. local Arguments = {
  22. [1] = v
  23. }
  24. Remote:FireServer(unpack(Arguments))
  25. end
  26. end
  27.  
  28. function GetPlot()
  29. local AllPlots = workspace.Plots:GetChildren()
  30. for i,v in pairs(AllPlots) do
  31. if tostring(v.Owner.Value) == game.Players.LocalPlayer.Name then
  32. return v
  33. end
  34. end
  35. end
  36.  
  37. function LoadWash()
  38.  
  39. local Plot = GetPlot()
  40.  
  41. for i,v in pairs(Plot["WashingMachines"]:GetChildren()) do
  42. GetClothes()
  43.  
  44. wait(0.5)
  45.  
  46. local CFrame = v["MAIN"].CFrame
  47. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame
  48.  
  49. wait(0.5)
  50.  
  51. local Remote = game.ReplicatedStorage.Events['LoadWashingMachine']
  52. local Arguments = {
  53. [1] = v
  54. }
  55. Remote:FireServer(unpack(Arguments))
  56. end
  57.  
  58.  
  59. end
  60.  
  61. function Drop()
  62. local CFrame = CFrame.new(-142.327789, 4.49800396, -6.91391087, 0.194494158, -9.69223208e-08, 0.980903685, -2.39351117e-08, 1, 1.03555081e-07, -0.980903685, -4.36188969e-08, 0.194494158)
  63. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame
  64. wait(0.2)
  65. local Remote = game.ReplicatedStorage.Events['DropClothesInChute']
  66. local Arguments = {
  67.  
  68. }
  69. Remote:FireServer(unpack(Arguments))
  70. end
  71.  
  72. function UnLoadWash()
  73.  
  74. local Plot = GetPlot()
  75.  
  76. for i,v in pairs(Plot["WashingMachines"]:GetChildren()) do
  77. local CFrame = v["MAIN"].CFrame
  78. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame
  79.  
  80. wait(0.5)
  81.  
  82. local Remote = game.ReplicatedStorage.Events['UnloadWashingMachine']
  83. local Arguments = {
  84. [1] = v
  85. }
  86. Remote:FireServer(unpack(Arguments))
  87.  
  88. wait(0.5)
  89.  
  90. Drop()
  91. end
  92. end
  93.  
  94. local UI_Lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/ShowerHead-FluxTeam/NICEWORD/main/FUCKV3RM"))()
  95. local Window = UI_Lib:Window("FluxHub")
  96. local Section = Window:Section("NICEWORDa Farm")
  97.  
  98. _G.IsAutoNICEWORDaOn = false;
  99.  
  100. Section:Toggle("Auto Farm", function(State)
  101. _G.IsAutoNICEWORDaOn = State
  102. end)
  103.  
  104. function CollectCoins()
  105. LoadWash()
  106.  
  107. wait(15)
  108.  
  109. UnLoadWash()
  110.  
  111. wait(0.5)
  112. end
  113.  
  114. while wait() do
  115. if _G.IsAutoNICEWORDaOn then
  116. if GetPlot() then
  117. CollectCoins()
  118. end
  119. end
  120. end
  121. end)
Advertisement
Add Comment
Please, Sign In to add comment