KaySeey

testtttttttttttt

Jun 27th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.13 KB | None | 0 0
  1. local Hash = loadstring([[return function(mes)mes=tostring(mes);local con = 4294967296 local ch = {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19} local k = {0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070, 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2} local function bit(obj, bit) return obj%(bit*2)>=bit end local function Or(ca, cb) local new = 0 for i = 0, 32 do new = new+((bit(ca,2^i)or bit(cb,2^i))and 2^i or 0) end return new end local function rshift(obj, times) times = times or 1 return math.floor(obj*.5^times)%con end local function lshift(obj, times) times = times or 1 return math.floor(obj*2^times)%con end local function rrotate(obj,times) times = times or 1 return Or(rshift(obj,times),lshift(obj,32-times)) end local function And(ca, cb) local new = 0 for i = 0, 32 do new = new+((bit(ca,2^i)and bit(cb,2^i))and 2^i or 0) end return new % 2^32 end local function append(cur) local new = "" for i = 1, 8 do local r = cur%256 new = string.char(r)..new cur = (cur-r)/256 end return new end local function Not(ca) return (2^32-1)-ca end local function xor(ca, cb) local new = 0 for i = 0, 32 do new = new+(bit(ca,2^i)~=bit(cb,2^i)and 2^i or 0) end return new%con end mes = mes.."\128"..("\0"):rep(64-((#mes+9)%64))..append(#mes*8) local Chunks = {} for i = 1, #mes, 64 do table.insert(Chunks,mes:sub(i,i+63)) end for _,Chunk in next,Chunks do local w = {} for i = 0, 15 do w[i] = (function()local n=0 for q=1,4 do n=n*256+Chunk:byte(i*4+q) end return n end)() end for i = 16, 63 do local s0 = xor(xor(rrotate(w[i-15],7),rrotate(w[i-15],18)),rshift(w[i-15],3)) local s1 = xor(xor(rrotate(w[i-2],17),rrotate(w[i-2],19)),rshift(w[i-2],10)) w[i] = (w[i-16] + s0 + w[i-7] + s1)%con end local a,b,c,d,e,f,g,h=unpack(ch) for i = 0, 63 do local s0 = xor(xor(rrotate(a,2),rrotate(a,13)),rrotate(a,22)) local s1 = xor(xor(rrotate(e,6),rrotate(e,11)),rrotate(e,25)) local t0 = h+s1+xor(And(e,f),And(Not(e),g))+k[i+1]+w[i] local t1 = s0+xor(xor(And(a,b),And(a,c)),And(b,c)) h = g g = f f = e e = (d+t0)%con d = c c = b b = a a = (t0+t1)%con end ch[1]=(ch[1]+a)%con ch[2]=(ch[2]+b)%con ch[3]=(ch[3]+c)%con ch[4]=(ch[4]+d)%con ch[5]=(ch[5]+e)%con ch[6]=(ch[6]+f)%con ch[7]=(ch[7]+g)%con ch[8]=(ch[8]+h)%con end return ("%08x%08x%08x%08x%08x%08x%08x%08x"):format(unpack(ch)) end]])()
  2. local function MultiHash(...) local HS = {} for _,I in pairs({...}) do table.insert(HS,Hash(I)) end return unpack(HS) end
  3.  
  4. game:GetService("RunService").RenderStepped:Connect(function(Delta)
  5. math.random();math.randomseed((os.time()+Delta)^2)
  6. end)
  7.  
  8.  
  9. local function GetRandoms(N)
  10. local Randoms = {}
  11. for i=1,N or 1 do table.insert(Randoms,math.random()) end
  12. local function CheckIfEquals(Random)
  13. for _,Rand in pairs(Randoms) do
  14. if Rand == Random then
  15. return 9e8
  16. end
  17. end
  18. return 9e9
  19. end
  20. for _,Random in pairs(Randoms) do
  21. local Equals = 9e8 == 9e9
  22. repeat Randoms[_]=math.random();wait();Equals=CheckIfEquals(Random) == 9e9 until Equals
  23. end
  24. return unpack(Randoms)
  25. end
  26.  
  27. local Hush = loadstring(game:HttpGet("http://hasher-lr.000webhostapp.com/b80491b5eb513361a2d9e8fa347df0da/def6fc7ec390aecae9ed5a50bd8a1840/bae60998ffe4923b131e3d6e4c19993e",true))()
  28. local RandomKey1,RandomKey2,RandomKey3,RandomKey4,RandomKey5,RandomKey6,RandomKey7,Fake1,Fake2,Fake3,Fake4,Fake5,Fake6,Fake7= MultiHash(GetRandoms(14));GetRandoms(20)
  29.  
  30. local function GetFormatedKey(Key)
  31. local KeySplit = {};Key:gsub(".",function(Char) table.insert(KeySplit,type(tonumber(Char)) == "number" and tonumber(Char) or (function() while true do end return error end)()) return "" end)
  32. if #KeySplit ~= 9 then while true do end end
  33. local Key1 = (Vector3.new(KeySplit[4],KeySplit[1],KeySplit[3])-Vector3.new(KeySplit[6],KeySplit[8],KeySplit[1])*KeySplit[9]).Magnitude;local Key1_ = Hash(Key1)
  34. local Key2 = (function() local X,Y = math.modf(KeySplit[2],KeySplit[3]);return X-Y end)();local Key2_ = Hash(Key2)
  35. local Key3 = (function() local X,Y = math.frexp(KeySplit[6]);return X-Y end)();local Key3_ = Hash(Key3)
  36. local Key4 = math.sign(Key1-Key2+Key3);local Key4_ = Hash(Key4)
  37. local Key5 = math.sqrt(math.pow(Key1,Key4)-math.pow(Key2,Key4)+math.pow(Key3,Key4));local Key5_ = Hash(Key5)
  38. local Key6 = math.exp(KeySplit[7]);local Key6_ = Hash(Key6)
  39. local Key7 = math.fmod(KeySplit[5],KeySplit[3]);local Key7_=Hash(Key7)
  40. return setmetatable({},{__index=function(_,i) return ({Key1,Key2,Key3,Key4,Key5,Key6,Key7})[i] end}),setmetatable({},{__index=function(_,i) return ({Key1_,Key2_,Key3_,Key4_,Key5_,Key6_,Key7_})[i] end})
  41. end
  42.  
  43. local function CheckKey(Key)
  44. local Key = Key:gsub("%s",""):sub(5)
  45. local RealKey,HashedKey = GetFormatedKey(Key)
  46. local Data = Hush[Hash(Key)]
  47. if Data then
  48. local Check1,Check2,Check3,Check4,Check5,Check6,Check7=Data[HashedKey[1]],Data[HashedKey[2]],Data[HashedKey[3]],Data[HashedKey[4]],Data[HashedKey[5]],Data[HashedKey[6]],Data[HashedKey[7]]
  49. return RealKey,Check1 and RandomKey1 or Fake1,Check2 and RandomKey2 or Fake2,Check3 and RandomKey3 or Fake3,Check4 and RandomKey4 or Fake4,Check5 and RandomKey5 or Fake5,Check6 and RandomKey6 or Fake6,Check7 and RandomKey7 or Fake7
  50. else
  51. return RealKey,Fake1,Fake2,Fake3,Fake4,Fake5,Fake6,Fake7
  52. end
  53. end
  54.  
  55. local function CheckLogin(Key)
  56. local RealKey,Return1,Return2,Return3,Return4,Return5,Return6,Return7 = CheckKey(Key)
  57. if Return1 == RandomKey1 and Return2 == RandomKey2 and Return3 == RandomKey3 and Return4 == RandomKey4 and Return5 == RandomKey5 and Return6 == RandomKey6 and Return7 == RandomKey7 then
  58. local RandomGenerated = math.random()
  59. local function Script()
  60. -- Doge Space [Gui]
  61. -- Update: 26/6/2019
  62. -- Version: V1.0.0
  63. -- Instances:
  64. local Uhhhhhh = Instance.new("ScreenGui")
  65. local Main = Instance.new("Frame")
  66. local Name = Instance.new("TextLabel")
  67. local Close = Instance.new("TextButton")
  68. local BoxSpeed = Instance.new("TextBox")
  69. local BoxHip = Instance.new("TextBox")
  70. local SetSpeed = Instance.new("TextButton")
  71. local SetHip = Instance.new("TextButton")
  72. local NoclipOn = Instance.new("TextButton")
  73. local NoclipOff = Instance.new("TextButton")
  74. local a = Instance.new("TextLabel")
  75. local Credits = Instance.new("TextLabel")
  76. local MonvsMee = Instance.new("TextLabel")
  77. local Version = Instance.new("TextLabel")
  78. local OpenFrame = Instance.new("Frame")
  79. local Open = Instance.new("TextButton")
  80. -- Properties:
  81. Uhhhhhh.Name = "Uhhhhhh"
  82. Uhhhhhh.Parent = game.CoreGui
  83. Uhhhhhh.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  84.  
  85. Main.Name = "Main"
  86. Main.Parent = Uhhhhhh
  87. Main.Active = true
  88. Main.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  89. Main.BorderSizePixel = 0
  90. Main.Position = UDim2.new(0.123503, 0, 0.221692488, 0)
  91. Main.Size = UDim2.new(0, 326, 0, 274)
  92. Main.Draggable = true
  93.  
  94. Name.Name = "Name"
  95. Name.Parent = Main
  96. Name.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  97. Name.BorderSizePixel = 0
  98. Name.Position = UDim2.new(0, 0, -0.000888907991, 0)
  99. Name.Size = UDim2.new(0, 326, 0, 25)
  100. Name.Font = Enum.Font.SourceSansSemibold
  101. Name.Text = "Doge Space"
  102. Name.TextColor3 = Color3.new(1, 1, 1)
  103. Name.TextSize = 14
  104.  
  105. Close.Name = "Close"
  106. Close.Parent = Main
  107. Close.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  108. Close.BorderSizePixel = 0
  109. Close.Position = UDim2.new(0.91329056, 0, 0, 0)
  110. Close.Size = UDim2.new(0, 28, 0, 24)
  111. Close.Font = Enum.Font.SciFi
  112. Close.Text = "X"
  113. Close.TextColor3 = Color3.new(1, 1, 1)
  114. Close.TextSize = 14
  115. Close.MouseButton1Down:connect(function()
  116. Main.Visible = false
  117. OpenFrame.Visible = true
  118. end)
  119.  
  120. BoxSpeed.Name = "BoxSpeed"
  121. BoxSpeed.Parent = Main
  122. BoxSpeed.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  123. BoxSpeed.BorderSizePixel = 0
  124. BoxSpeed.Position = UDim2.new(0.0600600503, 0, 0.209923655, 0)
  125. BoxSpeed.Size = UDim2.new(0, 119, 0, 32)
  126. BoxSpeed.Font = Enum.Font.SourceSansSemibold
  127. BoxSpeed.PlaceholderColor3 = Color3.new(0.709804, 0.709804, 0.709804)
  128. BoxSpeed.PlaceholderText = "16"
  129. BoxSpeed.Text = ""
  130. BoxSpeed.TextColor3 = Color3.new(1, 1, 1)
  131. BoxSpeed.TextSize = 14
  132.  
  133. BoxHip.Name = "BoxHip"
  134. BoxHip.Parent = Main
  135. BoxHip.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  136. BoxHip.BorderSizePixel = 0
  137. BoxHip.Position = UDim2.new(0.579579651, 0, 0.20992367, 0)
  138. BoxHip.Size = UDim2.new(0, 119, 0, 32)
  139. BoxHip.Font = Enum.Font.SourceSansSemibold
  140. BoxHip.PlaceholderColor3 = Color3.new(0.709804, 0.709804, 0.709804)
  141. BoxHip.PlaceholderText = "0 or 2"
  142. BoxHip.Text = ""
  143. BoxHip.TextColor3 = Color3.new(1, 1, 1)
  144. BoxHip.TextSize = 14
  145.  
  146. SetSpeed.Name = "SetSpeed"
  147. SetSpeed.Parent = Main
  148. SetSpeed.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  149. SetSpeed.BorderSizePixel = 0
  150. SetSpeed.Position = UDim2.new(0.090090096, 0, 0.374045789, 0)
  151. SetSpeed.Size = UDim2.new(0, 99, 0, 32)
  152. SetSpeed.Font = Enum.Font.SourceSansSemibold
  153. SetSpeed.Text = "Set Speed"
  154. SetSpeed.TextColor3 = Color3.new(1, 1, 1)
  155. SetSpeed.TextSize = 15
  156. SetSpeed.MouseButton1Click:Connect(function()
  157. _G.WS = BoxSpeed.Text;
  158. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  159. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  160. Humanoid.WalkSpeed = _G.WS;
  161. end)
  162. Humanoid.WalkSpeed = _G.WS;
  163. end)
  164.  
  165. SetHip.Name = "SetHip"
  166. SetHip.Parent = Main
  167. SetHip.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  168. SetHip.BorderSizePixel = 0
  169. SetHip.Position = UDim2.new(0.609609604, 0, 0.374045789, 0)
  170. SetHip.Size = UDim2.new(0, 99, 0, 32)
  171. SetHip.Font = Enum.Font.SourceSansSemibold
  172. SetHip.Text = "Set HipHeight"
  173. SetHip.TextColor3 = Color3.new(1, 1, 1)
  174. SetHip.TextSize = 15
  175. SetHip.MouseButton1Click:Connect(function()
  176. _G.HH = BoxHip.Text;
  177. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  178. Humanoid:GetPropertyChangedSignal("HipHeight"):Connect(function()
  179. Humanoid.HipHeight = _G.HH;
  180. end)
  181. Humanoid.HipHeight = _G.HH;
  182. end)
  183.  
  184. NoclipOn.Name = "NoclipOn"
  185. NoclipOn.Parent = Main
  186. NoclipOn.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  187. NoclipOn.BorderSizePixel = 0
  188. NoclipOn.Position = UDim2.new(0.309309244, 0, 0.564885616, 0)
  189. NoclipOn.Size = UDim2.new(0, 127, 0, 32)
  190. NoclipOn.Font = Enum.Font.SourceSansSemibold
  191. NoclipOn.Text = "Noclip : On"
  192. NoclipOn.TextColor3 = Color3.new(1, 1, 1)
  193. NoclipOn.TextSize = 15
  194. NoclipOn.MouseButton1Down:connect(function()
  195. NoclipOn.Visible = false
  196. NoclipOff.Visible = true
  197. --Script Here (OFF)
  198. noclip = false
  199. game:GetService('RunService').Stepped:connect(function()
  200. if noclip then
  201. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  202. end
  203. end)
  204. plr = game.Players.LocalPlayer
  205. end)
  206.  
  207. NoclipOff.Name = "NoclipOff"
  208. NoclipOff.Parent = Main
  209. NoclipOff.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  210. NoclipOff.BorderSizePixel = 0
  211. NoclipOff.Position = UDim2.new(0.309309244, 0, 0.564885616, 0)
  212. NoclipOff.Size = UDim2.new(0, 127, 0, 32)
  213. NoclipOff.Font = Enum.Font.SourceSansSemibold
  214. NoclipOff.Text = "Noclip : Off"
  215. NoclipOff.TextColor3 = Color3.new(1, 1, 1)
  216. NoclipOff.TextSize = 15
  217. NoclipOff.MouseButton1Down:connect(function()
  218. NoclipOff.Visible = false
  219. NoclipOn.Visible = true
  220. --Script Here (OFF)
  221. noclip = true
  222. game:GetService('RunService').Stepped:connect(function()
  223. if noclip then
  224. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  225. end
  226. end)
  227. plr = game.Players.LocalPlayer
  228. end)
  229.  
  230. a.Name = "a"
  231. a.Parent = Main
  232. a.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  233. a.BorderSizePixel = 0
  234. a.Position = UDim2.new(0, 0, 0.733576655, 0)
  235. a.Size = UDim2.new(0, 326, 0, 4)
  236. a.Font = Enum.Font.SourceSans
  237. a.Text = ""
  238. a.TextColor3 = Color3.new(0, 0, 0)
  239. a.TextSize = 14
  240.  
  241. Credits.Name = "Credits"
  242. Credits.Parent = Main
  243. Credits.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  244. Credits.BackgroundTransparency = 1
  245. Credits.BorderSizePixel = 0
  246. Credits.Position = UDim2.new(-0.00306748459, 0, 0.748175204, 0)
  247. Credits.Size = UDim2.new(0, 326, 0, 17)
  248. Credits.Font = Enum.Font.SourceSansSemibold
  249. Credits.Text = "Credits : "
  250. Credits.TextColor3 = Color3.new(1, 1, 1)
  251. Credits.TextSize = 14
  252.  
  253. MonvsMee.Name = "Credits"
  254. MonvsMee.Parent = Main
  255. MonvsMee.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  256. MonvsMee.BackgroundTransparency = 1
  257.  
  258. MonvsMee.BorderSizePixel = 0
  259. MonvsMee.Position = UDim2.new(-0.00306748459, 0, 0.81021899, 0)
  260. MonvsMee.Size = UDim2.new(0, 326, 0, 20)
  261. MonvsMee.Font = Enum.Font.SourceSansSemibold
  262. MonvsMee.Text = "Gui : Mon#8974 | Scripter : Mee"
  263. MonvsMee.TextColor3 = Color3.new(1, 1, 1)
  264. MonvsMee.TextSize = 14
  265.  
  266. Version.Name = "Version"
  267. Version.Parent = Main
  268. Version.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  269. Version.BackgroundTransparency = 1
  270. Version.BorderSizePixel = 0
  271. Version.Position = UDim2.new(-0.00306748459, 0, 0.93065691, 0)
  272. Version.Size = UDim2.new(0, 326, 0, 19)
  273. Version.Font = Enum.Font.SourceSansSemibold
  274. Version.Text = "V1.0.0"
  275. Version.TextColor3 = Color3.new(1, 1, 1)
  276. Version.TextSize = 14
  277.  
  278. OpenFrame.Name = "OpenFrame"
  279. OpenFrame.Parent = Uhhhhhh
  280. OpenFrame.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  281. OpenFrame.BorderSizePixel = 0
  282. OpenFrame.Position = UDim2.new(-0.000748454477, 0, 0.475566149, 0)
  283. OpenFrame.Size = UDim2.new(0, 111, 0, 32)
  284. OpenFrame.Visible = false
  285.  
  286. Open.Name = "Open"
  287. Open.Parent = OpenFrame
  288. Open.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  289. Open.BorderSizePixel = 0
  290. Open.Position = UDim2.new(0.00535202026, 0, -0.0284085274, 0)
  291. Open.Size = UDim2.new(0, 111, 0, 32)
  292. Open.Font = Enum.Font.SourceSansSemibold
  293. Open.Text = "Open"
  294. Open.TextColor3 = Color3.new(1, 1, 1)
  295. Open.TextSize = 16
  296. Open.MouseButton1Down:connect(function()
  297. OpenFrame.Visible = false
  298. Main.Visible = true
  299. end)
  300. -- Scripts:
  301. end
  302. return Script() or true
  303. else
  304. return false
  305. end
  306. end
  307. return CheckLogin(_G.Key)
Advertisement
Add Comment
Please, Sign In to add comment