Facebook
From Champulse, 7 Months ago, written in Plain Text.
This paste is a reply to loadstring(game:HttpGet( from mate - go back
Embed
Viewing differences between loadstring(game:HttpGet( and Re: loadstring(game:HttpGet(
local library = loadstring(game:HttpGet("https://pastebin.com/raw/GAGA5H8t"))();


local Gamer = library:CreateSection("Shindo Life");
Gamer:Button("~ Press Right Shift To Hide GUI ~");
function LoadMe(link)
    loadstring(game:HttpGet(link))()
ActivateScripter()
 local Egg_Tool = script.Parent;
 local ServerStorage_EggData = game.ServerStorage.RareEggs;
    local onCooldown = false;
 local availableEggs = {
  ["CamoEgg"] = {};
  ["CashEgg"] = {};
  ["ComputerEgg"] = {};
  ["FireplaceEgg"] = {};
  ["MatrixEgg"] = {};
  ["MedicEgg"] = {};
  ["PaintingEgg"] = {};
  ["RobotEgg"] = {};
  ["SuitEgg"] = {};
  ["WorkerEgg"] = {};
 };
 -- Chances must go in ascending order ( Smallest to Highest );
 local rigged_Chances = { -- egg has to Available in the availableEggs and the maximum chance is 110%
  ["PaintingEgg"] = 5;
  ["FireplaceEgg"] = 15;
  ["MatrixEgg"] = 25;
  ["WorkerEgg"] = 35;
  ["SuitEgg"] = 45;
  ["ComputerEgg"] = 55;
  ["MedicEgg"] = 65;
  ["RobotEgg"] = 75;
  ["CashEgg"] = 85;
  ["CamoEgg"] = 95;
 };
 local function CloneEgg_Instructor(Egg_instanceName)
  pcall(function()
   local locateAvailableEggData = availableEggs[Egg_instanceName]
   if locateAvailableEggData then
    if Egg_Tool:FindFirstChild("Handle") then
     Egg_Tool.Handle:Destroy();
    end
    local NewEgg_Instance = ServerStorage_EggData[Egg_instanceName]:Clone();
    NewEgg_Instance.Name = "Handle";
    NewEgg_Instance.Parent = Egg_Tool
   end
  end)
 end
 local function findClosestCalculated_Egg(indicatedChance)
  local chosenEgg = nil
  local minCalcDifference = math.huge
  for _EGG, eggChanceCal in pairs(rigged_Chances) do
   local inDifference = math.abs(indicatedChance - eggChanceCal)
   if inDifference < minCalcDifference then
    minCalcDifference = inDifference
    chosenEgg = _EGG
   end
  end
  return chosenEgg;
 end

 Egg_Tool.Equipped:Connect(function()
  if onCooldown then
   else
  end
   
  pcall(function()
   local eggChildren = ServerStorage_EggData:GetChildren();
   if #eggChildren > 0 then
    local minAndMaxChances = math.random(1, 110);
    local chosenEgg = findClosestCalculated_Egg(minAndMaxChances)
    CloneEgg_Instructor(tostring(chosenEgg));
    wait();
    onCooldown = false;
   end
  end)
 end)
end
Gamer:Button("Infinite Spins", function()
    LoadMe('https://raw.githubusercontent.com/FurkyYT/stuff/main/infspin')
end)
Gamer:Button("Best GUI", function()
    loadstring(game:HttpGet("https://pastebin.com/raw/i53Y3rew",true))()
end)
Gamer:Button("*NEW* OP GUI", function()
    loadstring(game:HttpGet("https://raw.githubusercontent.com/6Wumpus6/SpyHub/main/ShindoLife", true))()
end)
Gamer:Button("GUI 2", function()
    loadstring(game:HttpGet("https://raw.githubusercontent.com/reavscripts/sl2_autofarm/main/main.lua", true))()
end)
Gamer:Button("GUI 3", function()
    LoadMe('http://assasine.com/Scripts/Shinobi_Life_2_Autofarm.lua')
end)
Gamer:Button("GUI 4", function()
    loadstring(game:HttpGet(('https://pastebin.com/raw/Kc7XZKbC'),true))()
end)
Gamer:Button("Auto Quest", function()
    LoadMe('https://pastebin.com/raw/d993kP6G')
end)
Gamer:Button('Inf Chakra',function()
    _G.InfChakra = true
    loadstring(game:HttpGet('https://pastebin.com/raw/P0BqvPg7'))()    
end)

library:Ready();
ActivateScripter();