Advertisement
yWolf_BR

FAME SIMULATOR

Jan 27th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. ----------------------
  2. Gamepass
  3. ----------------------
  4. for i , v in pairs(game.Players.LocalPlayer.Gamepasses:GetChildren()) do
  5. v.Value = true
  6. end
  7. ----------------------
  8. Farm
  9. ----------------------
  10. wait(0)
  11. game.StarterGui:SetCore("SendNotification", {
  12. Title = "Canal Do Yotube";
  13. Text = "youtube.com/yWolfBR";
  14. Duration = 2.5;
  15. })
  16.  
  17. wait(3.5)
  18. game.StarterGui:SetCore("SendNotification", {
  19. Title = "Discord";
  20. Text = "discord.gg/jbE65ed";
  21. Duration = 2.5;
  22. })
  23.  
  24. local Stage = "1"
  25. local FarmerNPCs = 1
  26.  
  27. _G.Farming = true
  28. local isGone = false
  29. local SelectRemote = game.ReplicatedStorage.Requests.Select
  30. local ClickRemote = game.ReplicatedStorage.Requests.Click
  31. local GetItems = game.Workspace.Map["World 1"]["Stage "..Stage].Items:GetChildren()
  32. repeat wait()
  33. for i=1,#GetItems do
  34. if _G.Farming == true then
  35. wait()
  36. isGone = false
  37. for a=1,FarmerNPCs do
  38. SelectRemote:FireServer(GetItems[i])
  39. end
  40. wait()
  41. repeat
  42. wait()
  43. ClickRemote:FireServer()
  44. until _G.Farming == false or not GetItems[i]:FindFirstChild("Click")
  45. end
  46. end
  47. until _G.Farming == false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement