Karap

Auto farn wondee

Apr 22nd, 2023
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. game:GetService("Workspace").NPCs.QuestNPCs.AmazonExplorerNPC.InteractionZone.Size = Vector3.new(99999999, 9999999, 9999999)
  2. game:GetService("Players").LocalPlayer.PlayerGui.QuestsScreenGui.QuestRewardPopUpFrame.ClicksBlockerButton.Visible = false
  3.  
  4. if game:GetService("Workspace").InteractiveWorldElements:FindFirstChild("DoubleSeats")~=nil then
  5. game:GetService("Workspace").InteractiveWorldElements.DoubleSeats:Destroy() end
  6.  
  7. if game:GetService("Workspace").InteractiveWorldElements:FindFirstChild("SingleSeats")~=nil then
  8. game:GetService("Workspace").InteractiveWorldElements.SingleSeats:Destroy() end
  9.  
  10. local enabled = true
  11.  
  12. game:GetService('UserInputService').InputBegan:Connect(function(key, gameProcessedEvent)
  13. if key.KeyCode == Enum.KeyCode.R and not gameProcessedEvent then
  14. enabled = not enabled
  15. end
  16. end)
  17.  
  18. while true do
  19. wait(0.1)
  20. for i,Folder in pairs(Workspace:GetChildren()) do
  21. if Folder.Name == "SpawnedObjectsFolder" then
  22. if Folder:GetDescendants()~= nil then
  23. for i,Treasure in pairs(Folder:GetDescendants()) do
  24. if Treasure and Treasure.Name == "Treasure" and Treasure:FindFirstChild("HarvestableId")~=nil and enabled then
  25. local v1 = Treasure.HarvestableId.Value
  26. game.Players.LocalPlayer.Character.PrimaryPart.CFrame = Treasure.CFrame
  27. wait(1)
  28. for i = 1,4 do
  29. local rem = game:GetService("ReplicatedStorage").RemoteEvents.RequestHarvestRemoteEvent
  30. rem:FireServer(v1); wait(0.6)
  31. end
  32. end
  33. end
  34. end
  35. end
  36. end
  37. end
Add Comment
Please, Sign In to add comment