Project Upright Script | FARM STANDS

Created by noend

Features:

  • FARM STANDS
  • DEV NOTES:
  • I wasn’t sure how to farm for stands using remotes so I combined this with a Tiny Task macro that auto uses and restocks arrows/rokas. This kicks you whenever you get the op attribute/stand that you want so you can farm for cool stuff overnight. kind of a shit release but if anyone wants to improve the code for me you are more than welcome to.
while true do
    wait(1)
local whatyouwant = {"Invincible","Legendary","Mythic","Daemon","Godly","Silver Chariot OVA","Jotaro's Star Platinum","Star Platinum OVA"}

for i,v in next, whatyouwant do
if game.Players.LocalPlayer.Data.Attribute.Value == v or 
game.Players.LocalPlayer.Data.Stand.Value == v
then do
    game.Players.LocalPlayer:Kick()
end
end
end
end