Advertisement
Jooohgdfd

JOO23

Jun 7th, 2023 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. pcall(function()
  2. function GetClothes()
  3. local Clothing = workspace.Debris.Clothing:GetChildren()
  4. for i,v in pairs(Clothing) do
  5. local Remote = game.ReplicatedStorage.Events['GrabClothing']
  6. local Arguments = {
  7. [1] = v
  8. }
  9. Remote:FireServer(unpack(Arguments))
  10. end
  11. end
  12.  
  13. function GetPlot()
  14. local AllPlots = workspace.Plots:GetChildren()
  15. for i,v in pairs(AllPlots) do
  16. if tostring(v.Owner.Value) == game.Players.LocalPlayer.Name then
  17. return v
  18. end
  19. end
  20. end
  21.  
  22. function LoadWash()
  23.  
  24. local Plot = GetPlot()
  25.  
  26. for i,v in pairs(Plot["WashingMachines"]:GetChildren()) do
  27. GetClothes()
  28.  
  29. wait(0.5)
  30.  
  31. local CFrame = v["MAIN"].CFrame
  32. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame
  33.  
  34. wait(0.5)
  35.  
  36. local Remote = game.ReplicatedStorage.Events['LoadWashingMachine']
  37. local Arguments = {
  38. [1] = v
  39. }
  40. Remote:FireServer(unpack(Arguments))
  41. end
  42.  
  43.  
  44. end
  45.  
  46. function Drop()
  47. 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)
  48. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame
  49. wait(0.2)
  50. local Remote = game.ReplicatedStorage.Events['DropClothesInChute']
  51. local Arguments = {
  52.  
  53. }
  54. Remote:FireServer(unpack(Arguments))
  55. end
  56.  
  57. function UnLoadWash()
  58.  
  59. local Plot = GetPlot()
  60.  
  61. for i,v in pairs(Plot["WashingMachines"]:GetChildren()) do
  62. local CFrame = v["MAIN"].CFrame
  63. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame
  64.  
  65. wait(0.5)
  66.  
  67. local Remote = game.ReplicatedStorage.Events['UnloadWashingMachine']
  68. local Arguments = {
  69. [1] = v
  70. }
  71. Remote:FireServer(unpack(Arguments))
  72.  
  73. wait(0.5)
  74.  
  75. Drop()
  76. end
  77. end
  78.  
  79.  
  80. local x = string.reverse("MR3VKCUF")
  81. local UI_Lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/ShowerHead-FluxTeam/NICEWORD/main/"..x))()
  82. local Window = UI_Lib:Window("welc to Laundry Simulator ")
  83. local Section = Window:Section("jooo farm")
  84.  
  85.  
  86. _G.IsAutoNICEWORDaOn = false;
  87.  
  88. Section:Toggle("hii ", function(State)
  89. _G.IsAutoNICEWORDaOn = State
  90. end)
  91. local Section2 = Window:Section("sec")
  92.  
  93. function CollectCoins()
  94. LoadWash()
  95.  
  96. wait(15)
  97.  
  98. UnLoadWash()
  99.  
  100. wait(0.5)
  101. end
  102.  
  103. while wait() do
  104. if _G.IsAutoNICEWORDaOn then
  105. if GetPlot() then
  106. CollectCoins()
  107. end
  108. end
  109. end
  110. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement