Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Farn Scripts
- --Made by Apostasia
- --pata pata pata poooooooon
- --https://www.roblox.com/games/827280059/farn-Beta-v1-3
- --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
- --Sell Everyones Buildings (Except You)
- --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
- --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
- local team
- for i,v in pairs (game.Teams:GetChildren()) do
- if v == game.Players.LocalPlayer.Team then
- team = v
- end
- end
- for i,v in pairs (workspace.Buildings:GetChildren()) do
- if v.Owner.Value ~= team.TeamColor then
- game.ReplicatedStorage.DestroyBuilding:FireServer(v)
- end
- end
- --Steal Everyone Elses Produce (Laggy sometimes)
- --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
- local team
- local depo
- for i,v in pairs (game.Teams:GetChildren()) do
- if v == game.Players.LocalPlayer.Team then
- team = v
- end
- end
- for i,v in pairs (workspace.Buildings:GetChildren()) do
- if v.Name == "Depositer" and v.Owner.Value == team.TeamColor then
- depo = v
- end
- end
- for i,v in pairs (workspace.Produce:GetChildren()) do
- game.ReplicatedStorage.SetOwner:FireServer(v)
- v.Base.CFrame = CFrame.new(Vector3.new(depo.Depositer.Position.X,depo.Depositer.Position.Y,depo.Depositer.Position.Z))
- end
- --Kill All Weeds
- --seriously heck those weeds, marijuano sure is a bad drug
- for i,v in pairs (workspace.Plants:GetChildren()) do
- if v.Name == "Weed" then
- game.ReplicatedStorage.DestroyBuilding:FireServer(v)
- end
- end
- --Water Everyones Tile (Laggy)
- --since a lot of these scripts focus on stealing things from people, i wanted one that helped others instead
- --does what the title says, waters everyones plot so every plot is fertile, its a bit laggy
- for i,v in pairs (workspace.Plots:GetChildren()) do
- for i = 1,5 do
- game.ReplicatedStorage.WaterTile:FireServer(v)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement