Shindo Life Script | GET ANY ITEM, INFINITE RELI – GAMBREAKING SCRIPTS USE BEFORE PATCH

Created by sleepcodes#7926

Features:

  • GET ANY ITEM / SCROLLS FOR FREE
  • GET UNLIMITED MONEY
  • WHAT YOU CAN DO WITH THESE SCRIPTS:Getting All Element / Bloodline Skins
  • Getting all items Sub Abilities Category (including Modes)
  • Getting All Companions
  • Getting All Ninja Tools
  • Ranking up (ranks cost 50,000 rell coin)
  • Buying the powers of Elements and Bloodlines, Kenjutsu, for free without a rank requirement
  • DEV NOTES:
  • Places to look in dex for items:ReplicatedStorage.alljutsu
  • ReplicatedStorage.sabers.power
  • Workspace.GLOBALTIME.clienttell
FREE ITEMS / SCROLLS
-- Exact name of item (folder instance), (found in ReplicatedStorage.sabers.powers or ReplicatedStorage.alljutsu)
local name = ""

-- Get regular item
game:GetService("Players").LocalPlayer.startevent:FireServer("rellcoinshop",
   {ClassName = "Folder",Name = name, ryoshop =
       {Name = "ryoshop", ClassName = "IntValue", Value = 0}
   }
)

-- Get the Scroll Of the Item
game:GetService("Players").LocalPlayer.startevent:FireServer("rellcoinshop",
   {ClassName = "Folder",Name = name.."scroll", ryoshop =
       {Name = "ryoshop", ClassName = "IntValue", Value = 0}
   }
)
INFINITE CURRENCY
local randomString = "RANDOM_STING_HERE" -- Keep it short
local money = 500000 -- It is rellcoins, the max money you can have is 500k

game:GetService("Players").LocalPlayer.startevent:FireServer("rellcoinshop",
   {ClassName = "Folder",Name = randomString, ryoshop =
       {Name = "ryoshop", ClassName = "IntValue", Value = -money}
   }
   )
   
GET NEAR ALL ITEMS
for _,item in pairs(game:GetService("Workspace").GLOBALTIME.clienttell:GetChildren()) do
game:GetService("Players").LocalPlayer.startevent:FireServer("rellcoinshop",
   {ClassName = "Folder",Name = item.Name, ryoshop =
       {Name = "ryoshop", ClassName = "IntValue", Value = 0}
   }
)

-- Get the Scroll Of the Item
game:GetService("Players").LocalPlayer.startevent:FireServer("rellcoinshop",
   {ClassName = "Folder",Name = item.name.."scroll", ryoshop =
       {Name = "ryoshop", ClassName = "IntValue", Value = 0}
   }
)
wait()
end
GET ALPHABET RANKS
local ranksToGain = 10 -- number of ranks you want to gain

for i = 1, maxRanksToGain do
game:GetService("Players").LocalPlayer.startevent:FireServer("rankup2")
wait()
end
GET MAX RANKS
local maxRanksToGain = 10 -- number of "MAX-#" ranks you want to gain

for i = 1, maxRanksToGain do
game:GetService("Players").LocalPlayer.startevent:FireServer("maxlvlpres2")
wait()
end