Advertisement
_Thanh_Thy_Cute_

CHESS! SERVER SIDE SKIN CHANGER

Jul 23rd, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. --Wally's UI Library v2
  2. local library = loadstring(game:HttpGet("https://pastebin.com/raw/HYcfs6KC", true))()
  3. library.options.underlinecolor = "rainbow" --RAINBOW Epic!
  4. local w = library:CreateWindow('CHESS!')
  5. w:Section('Made by Yop1_01')
  6.  
  7. local Dd1 = w:Dropdown("Skin(White)", {
  8. location = _G;
  9. flag = "White";
  10. list = {
  11. "BasicWhite";
  12. "LightGlass";
  13. "LightWood";
  14. "LightMarble";
  15. "BrightExotic";
  16. "BrightSkeleton";
  17. "Ruby";
  18. "EnchantedKingdom";
  19. "StellarTesseract";
  20. "LightCorruption";
  21. "VIP_White";
  22. "LightElectric";
  23. }
  24. }, function()
  25. game:GetService("ReplicatedStorage").Connections.SelectSkin:FireServer(_G.White)
  26. end)
  27.  
  28. local Dd2 = w:Dropdown("Skin(Balck)", {
  29. location = _G;
  30. flag = "Black";
  31. list = {
  32. "DarkGlass";
  33. "DarkWood";
  34. "DarkMarble";
  35. "DarkSkeleton";
  36. "CursedKingdom";
  37. "DarkExotic";
  38. "Emerald";
  39. "BasicBlack";
  40. "VoidTesseract";
  41. "DarkCorruption";
  42. "VIP_Black";
  43. "DarkElectric";
  44. }
  45. }, function()
  46. game:GetService("ReplicatedStorage").Connections.SelectSkin:FireServer(_G.Black)
  47. end)
  48.  
  49. local b1 = w:Button("del-antiafk", function()
  50. if game.ReplicatedStorage.Connections:FindFirstChild("ReportClientError") then
  51. game.ReplicatedStorage.Connections.ReportClientError:Destroy()
  52. end
  53. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement