Advertisement
MrBrickYT

Bad Business | Skin Changer

Nov 15th, 2019
1,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.89 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local Changer = library:CreateWindow('Skin Changer')
  3. local Misc = library:CreateWindow('Misc Cheats')
  4. local Credits = library:CreateWindow('Credits')
  5. local Enable = Changer:Toggle('Enable', {flag = "ChangerEnable"})
  6. local ESP = Misc:Button("Box ESP", function()
  7.     loadstring(game:HttpGet("https://pastebin.com/raw/pvRnHqPN", true))()
  8.  end)
  9.  
  10.  
  11.    
  12. local function ChangeSkin(name)
  13. for i,v in pairs(game:GetService("Workspace").Characters:GetChildren()) do
  14.   if v:WaitForChild("Backpack") then
  15.     for i,n in pairs(v.Backpack:WaitForChild("Items"):GetChildren()) do
  16.      n:WaitForChild("Skin").Value = name
  17.      end
  18.     end
  19.   end
  20. end
  21.  
  22. Changer:SearchBox("Weapon Skins", {
  23.    location = shared;
  24.    flag = "skin";
  25.    list = {
  26.        "Visualizer";
  27.        "Trans";
  28.        "Pride";
  29.        "No Trespassing";
  30.        "Jack-o-Lantern";
  31.        "Inverted";
  32.        "Gold Flakes";
  33.        "Ghosts";
  34.        "Epic";
  35.        "Default";
  36.        "Cash Money";
  37.        "Alien";
  38.  
  39.        "Blue Maze";
  40.        "Green Maze";
  41.        "Orange Maze";
  42.        "Ultra-Spec Blue";
  43.        "Ultra-Spec Pink";
  44.  
  45.        "Blue Sparks";
  46.        "Green Sparks";
  47.        "Malware";
  48.        "Orange Sparks";
  49.        "Software";
  50.  
  51.        "Marbled Blue";
  52.        "Marbled Green";
  53.        "Marbled Grey";
  54.        "Marbled Orange";
  55.        "Marbled Pink";
  56.  
  57.        "GLS-AQUA";
  58.        "GLS-CORE";
  59.        "GLS-ELEMENT";
  60.        "GLS-FOUNDRY";
  61.        "GLS-GALAXY";
  62.  
  63.        "Blue Flame";
  64.        "Green Flame";
  65.        "Orange Flame";
  66.        "Pink Flame";
  67.        "Red Flame";
  68.  
  69.        "Cyber-B";
  70.        "Cyber-Blue";
  71.        "Cyber-G";
  72.        "Cyber-Pink";
  73.        "Cyber-R";
  74.  
  75.        "Seer";
  76.        "Holographic";
  77.        "Leviathon";
  78.        "Wyrm";
  79.        "Wyvern";
  80.  
  81.        "Toxic";
  82.        "Quantum";
  83.        "Plasma";
  84.        "Molten";
  85.        "Frigid";
  86.  
  87.        "Volcanic";
  88.        "Hivemind";
  89.        "Freezer Burn";
  90.        "Containment Breach";
  91.        "Acid Burn";
  92.  
  93.        "Bewitched";
  94.        "Enchanted";
  95.        "Firestorm";
  96.        "Overload";
  97.        "Sparkstorm";
  98.  
  99.        "Alchemist";
  100.        "Beekeeper";
  101.        "Hi-Spec Blue";
  102.        "Hi-Spec Green";
  103.        "Hi-Spec Red";
  104.  
  105.        "Neon Blue Camo";
  106.        "Neon Green Camo";
  107.        "Neon Pink Camo";
  108.        "Neon Red Camo";
  109.        "Neon Yellow Camo";
  110.  
  111.        "Radioactive";
  112.        "Rain";
  113.        "Toy Gun";
  114.        "Treeline";
  115.        "Wooden";
  116.  
  117.        "Arctic";
  118.        "Covert";
  119.        "Desert";
  120.        "Urban";
  121.        "Woodland";
  122.  
  123.  
  124.  
  125.    }
  126. }, game)
  127.  
  128.  
  129.  
  130. game:GetService("RunService").RenderStepped:connect(function()
  131.  
  132.     if Changer.flags.ChangerEnable then
  133.    ChangeSkin(shared.skin)
  134.  
  135.  end
  136. end)
  137.  
  138. local Label = Credits:Label("Made By Mr Brick")
  139. local Discord = Credits:Button('Copy Discord Invite', function()
  140. setclipboard("https://discord.gg/2rvBWRy")
  141. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement