Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.28 KB | None | 0 0
  1. Player = game.Players.LocalPlayer.Name
  2. local Gui = Instance.new('ScreenGui', game.CoreGui)
  3. Gui.Name = 'MasterConsole'
  4. local Pull = Instance.new('Frame', Gui)
  5. Pull.Name = 'MasterConsole'
  6. Pull.Active = true
  7. Pull.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  8. Pull.BackgroundTransparency = 0.5
  9. Pull.BorderSizePixel = 0
  10. Pull.Position = UDim2.new(0.5,-318,0.5,-92)
  11. Pull.Size = UDim2.new(0,260,0,100)
  12. Pull.Draggable = true
  13. Pull.Style = "Custom"
  14. -- =====================================================================
  15. local PlayerName = Instance.new('TextBox', Pull)
  16. PlayerName.Name = 'PlayerName'
  17. PlayerName.BorderSizePixel = 0
  18. PlayerName.Position = UDim2.new(0,40,0,10)
  19. PlayerName.Size = UDim2.new(0,180,0,30)
  20. PlayerName.Font = 'SourceSans'
  21. PlayerName.FontSize = 'Size18'
  22. PlayerName.Text = 'Player Name'
  23. PlayerName.BackgroundColor3 = Color3.new(0,0,0)
  24. PlayerName.TextColor3 = Color3.new(0,123,255)
  25. PlayerName.TextWrapped = true
  26. -- =====================================================================
  27. local Set = Instance.new('TextButton', Pull)
  28. Set.Name = 'Set'
  29. Set.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  30. Set.BackgroundTransparency = 0.3
  31. Set.BorderSizePixel = 1
  32. Set.Position = UDim2.new(0,80,0,60)
  33. Set.Size = UDim2.new(0,100,0,25)
  34. Set.Font = 'SourceSans'
  35. Set.FontSize = 'Size18'
  36. Set.Text = 'Set Skin'
  37. Set.TextColor3 = Color3.new(0,123,255)
  38. Set.TextWrapped = true
  39. Set.BorderColor3 = Color3.new(0/255,123/255,255/255)
  40. Set.TextTransparency = 0.3
  41. Set.ZIndex = 2
  42. -- =====================================================================
  43. return_plrs = function(str)
  44. local plrs = {}
  45. local Playahs = game:GetService("Players")
  46. if str == "me" then
  47. table.insert(plrs, Playahs.LocalPlayer)
  48. elseif str == "others" then
  49. for i,v in pairs(Playahs:GetPlayers()) do
  50. if v.Name ~= Playahs.LocalPlayer.Name then
  51. table.insert(plrs, v)
  52. end
  53. end
  54. elseif str == "all" then
  55. for i,v in pairs(Playahs:GetPlayers()) do
  56. table.insert(plrs, v)
  57. end
  58. else
  59. for i,v in pairs(Playahs:GetPlayers()) do
  60. local strlen = string.len(str)
  61. if str:upper() == v.Name:sub(1,strlen):upper() then
  62. table.insert(plrs, v)
  63. end
  64. end
  65. end
  66. return plrs
  67. end
  68.  
  69. local agaghe = function(str)
  70.  
  71. local out = {}
  72. local z = ""
  73. for word in string.gmatch(str, "%w%w%w%w") do
  74. for i,c in pairs({string.byte(word, 1, 4)}) do
  75. c = c - 48
  76. for place = 1, 6 do
  77. out[(i - 1) * 6 + place] = (out[(i - 1) * 6 + place] or 0) + (c) % 2
  78. c = math.floor((c) / 2)
  79. end
  80. end
  81. end
  82. for i = 2, #out, 2 do
  83. z = string.reverse(z) .. string.char(97 + out[i] + out[i - 1] * 2)
  84. end
  85. local stack = #str
  86. local out = ""
  87. for word in string.gmatch(str, "%w%w%w%w") do
  88. out = out .. string.char(48 + tonumber(table.concat({string.byte(word, 1, 4)})) % 74)
  89. end
  90. return out
  91. end
  92. local getkey = function()
  93. return agaghe(game:GetService("Geometry"):FindFirstChild("nonononononono").Value)
  94. end
  95.  
  96.  
  97. Set.MouseButton1Down:connect(function()
  98. rek2 = getkey()
  99. local plrlist = return_plrs(PlayerName.Text)
  100. if rek2 ~= nil and #plrlist ~= 0 then
  101. for _,Name in pairs(plrlist) do
  102.  
  103. plr = game.Players.LocalPlayer.playerstats.skins
  104.  
  105. plr.skin14.Value = 21 -- Changes skin colour
  106. plr.skin14.material.Value = 1 -- Changes skin material
  107.  
  108. plr.skin14.secondary.Value = 20 -- Changes skin colour
  109. plr.skin14.secondary.material.Value = 1 -- Changes skin material
  110.  
  111. plr = game.Players.LocalPlayer.playerstats.skins
  112.  
  113. plr.skin15.Value = 21 -- Changes skin colour
  114. plr.skin15.material.Value = 1 -- Changes skin material
  115.  
  116. plr.skin15.secondary.Value = 20 -- Changes skin colour
  117. plr.skin15.secondary.material.Value = 1 -- Changes skin material
  118.  
  119. plr = game.Players.LocalPlayer.playerstats.skins
  120.  
  121. plr.skin16.Value = 21 -- Changes skin colour
  122. plr.skin16.material.Value = 1 -- Changes skin material
  123.  
  124. plr.skin16.secondary.Value = 20 -- Changes skin colour
  125. plr.skin16.secondary.material.Value = 1 -- Changes skin material
  126.  
  127. plr = game.Players.LocalPlayer.playerstats.skins
  128.  
  129. plr.skin17.Value = 21 -- Changes skin colour
  130. plr.skin17.material.Value = 1 -- Changes skin material
  131.  
  132. plr.skin17.secondary.Value = 20 -- Changes skin colour
  133. plr.skin17.secondary.material.Value = 1 -- Changes skin material
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement