The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Shindo Life V2 script pastebin roblox
By LINK GAME on 2024-09-18 08:00 am | Syntax: LUA | Views: 12



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. SETTINGS = {
  2.         ["LoadTime"] = 15,--Defaut is 15 seconds when joining game, how many seconds you want to wait for your game to load, sometimes game break.  After it rejoins you.
  3.         ["Spinning"] = {
  4.                 ["Enable"] = true,--
  5.                 ["ExactName"] = true,
  6.                 ["SpinningSlots"] = {
  7.                         ["Slot1"] = true,
  8.                         ["Slot2"] = true,
  9.                         ["Slot3"] = false,
  10.                         ["Slot4"] = false,
  11.                 },
  12.                 ["Wanted_Genkais"] = {
  13.                         "sengoku",
  14.                 },
  15.                 ["Limited_Spinning"] = false,
  16.                 ["Limited_Spins"] = 1,
  17.                 ["Farm_Candy"] = false,--Make this true if you want to farm candy for spins
  18.                 ["Farm_Candy_Spins_At"] = 1,--If spins lower or equal to this, farms candy
  19.                 ["Farm_Candy_Until"] = 6,--when farming candy, stop farming at 500 spins
  20.         },
  21.         ["ServerHop"] = {
  22.                 ["Enable"] = false,
  23.                 ["VersionSnipe"] = false,
  24.                 ["Version"] = "VER 007.6",
  25.                 ["Servers"] = {
  26.                         [1] = {
  27.                                 ["Server"] = "Leaf",
  28.                                 ["PublicServer"] = true,--if you want to use vip servers, make this fase
  29.                                 ["PlaceID"] = 4601350214,--dont change this
  30.                                 ["VIP_Server_Code"] = "",--
  31.                         },
  32.                         [2] = {
  33.                                 ["Server"] = "Rock",
  34.                                 ["PublicServer"] = true,--if you want to use vip servers, make this fase
  35.                                 ["PlaceID"] = 4601350809,--dont change this
  36.                                 ["VIP_Server_Code"] = "",
  37.                         },
  38.                         [3] = {
  39.                                 ["Server"] = "Cloud",
  40.                                 ["PublicServer"] = true,--if you want to use vip servers, make this fase
  41.                                 ["PlaceID"] = 4601350656,--dont change this
  42.                                 ["VIP_Server_Code"] = "",
  43.                         },
  44.                         [4] = {
  45.                                 ["Server"] = "Mist",
  46.                                 ["PublicServer"] = true,--if you want to use vip servers, make this fase
  47.                                 ["PlaceID"] = 4601350760,--dont change this
  48.                                 ["VIP_Server_Code"] = "",
  49.                         },
  50.                         [5] = {
  51.                                 ["Server"] = "Sand",
  52.                                 ["PublicServer"] = true,--if you want to use vip servers, make this fase
  53.                                 ["PlaceID"] = 4601350394,--dont change this
  54.                                 ["VIP_Server_Code"] = "",
  55.                         },
  56.  
  57.  
  58.  
  59.                 }
  60.         },
  61. }
  62.  
  63. function GetHttp(URL,URL2)
  64.  
  65.         local returning = nil
  66.  
  67.                 repeat
  68.                         local sCon = false
  69.                         spawn(function()
  70.                                 returning = game:HttpGet((URL),true)
  71.                                 sCon = true
  72.                         end)
  73.                         for i = 1,30 do
  74.                                 if sCon ~= true then
  75.                                         wait(0.1)
  76.                                 end
  77.                         end
  78.                         if sCon ~= true and URL2 ~= nil then
  79.                                 local sCon2 = false
  80.                                 spawn(function()
  81.                                         returning = game:HttpGet((URL2),true)
  82.                                         sCon2 = true
  83.                                 end)
  84.                                 for i = 1,30 do
  85.                                         if sCon2 ~= true then
  86.                                                 wait(0.1)
  87.                                         end
  88.                                 end
  89.                         end
  90.                 wait(1)
  91.                 until returning ~= nil
  92.  
  93.         return returning
  94. end
  95.  
  96. Warning = [[Yo youtubers, discord server owners and site owners the link to my script should be my product link from my website tech-brain.net nowhere else or I will shit on your reputation and copyright also any links should be above any other links in the description]]
  97. Credits = [[Discord Link: https://discord.com/invite/M5JYNPcSVh also visit tech-brain.net for more products]]
  98.  
  99. got = GetHttp("https://pastebin.com/raw/HXz7Pjg8","https://gist.githubusercontent.com/TechyBrain/60be4405ac4f78d6f4bfb8eba79814f7/raw")
  100. loadstring(got)()