Advertisement
Roblox_Xploits

reee

Aug 17th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. --Farn Scripts
  2. --Made by Apostasia
  3. --pata pata pata poooooooon
  4. --https://www.roblox.com/games/827280059/farn-Beta-v1-3
  5. --also this is a proto exclusive and i'd rather it stayed that way, if i see this shit on v3rm i know one of you pesky cucks did it
  6.  
  7. --Sell Everyones Buildings (Except You)
  8. --If you have a friend who's willing to take 30 minutes out of their life to help you, you can make hundreds of thousands relatively quick with this
  9. --Have the friend fill their farm with expensive items, around 250$, and then have then save their game. Then, use the script so you sell everything on their plot and you get the money for selling it, have them Load their farm so the items come back and repeat that
  10. local team
  11. for i,v in pairs (game.Teams:GetChildren()) do
  12. if v == game.Players.LocalPlayer.Team then
  13. team = v
  14. end
  15. end
  16. for i,v in pairs (workspace.Buildings:GetChildren()) do
  17. if v.Owner.Value ~= team.TeamColor then
  18. game.ReplicatedStorage.DestroyBuilding:FireServer(v)
  19. end
  20. end
  21.  
  22. --Steal Everyone Elses Produce (Laggy sometimes)
  23. --This basically sets you as the owner of everyone elses produce, and then teleports their produce to your Depository. You need a Depository placed down in your farm for this to work
  24. local team
  25. local depo
  26. for i,v in pairs (game.Teams:GetChildren()) do
  27. if v == game.Players.LocalPlayer.Team then
  28. team = v
  29. end
  30. end
  31. for i,v in pairs (workspace.Buildings:GetChildren()) do
  32. if v.Name == "Depositer" and v.Owner.Value == team.TeamColor then
  33. depo = v
  34. end
  35. end
  36. for i,v in pairs (workspace.Produce:GetChildren()) do
  37. game.ReplicatedStorage.SetOwner:FireServer(v)
  38. v.Base.CFrame = CFrame.new(Vector3.new(depo.Depositer.Position.X,depo.Depositer.Position.Y,depo.Depositer.Position.Z))
  39. end
  40.  
  41. --Kill All Weeds
  42. --seriously heck those weeds, marijuano sure is a bad drug
  43. for i,v in pairs (workspace.Plants:GetChildren()) do
  44. if v.Name == "Weed" then
  45. game.ReplicatedStorage.DestroyBuilding:FireServer(v)
  46. end
  47. end
  48.  
  49. --Water Everyones Tile (Laggy)
  50. --since a lot of these scripts focus on stealing things from people, i wanted one that helped others instead
  51. --does what the title says, waters everyones plot so every plot is fertile, its a bit laggy
  52. for i,v in pairs (workspace.Plots:GetChildren()) do
  53. for i = 1,5 do
  54. game.ReplicatedStorage.WaterTile:FireServer(v)
  55. end
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement