Advertisement
Mitko1223tm

BROKEN

Jan 26th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 91.80 KB | None | 0 0
  1. adminlist = {"Mitko1223tm","AntonioRecio123","The6Devil6Lord666","00000_12346789"}
  2. bannedlist = {"Cri_SB"}
  3. texture = ""
  4.  
  5. disableBan = false
  6. disableAdmin = false
  7. disableKick = false
  8. disableTools = false
  9. disableLoopKill = false
  10. disableScriptBuilder = false
  11. disablePunish = false
  12. DisplayPlayersNameInMessages = false
  13. DisplayPlayersNameInHints = false
  14. MessageTime = 5
  15. HintTime = 5
  16.  
  17.  
  18.  
  19. namelist = { }
  20. variablelist = { }
  21. flist = { }
  22.  
  23. local source = script:FindFirstChild("source")
  24. if source ~= nil then
  25. sbbu = source:clone()
  26. sbbu.Disabled = false
  27. else
  28. print("source doesnt exist, your command script may malfunction")
  29. end
  30.  
  31.  
  32. tools = Instance.new("Model")
  33. c = game.Lighting:GetChildren()
  34. for i=1,#c do
  35. if c[i].className == "Tool" then
  36. c[i]:clone().Parent = tools
  37. end
  38. if c[i].className == "HopperBin" then
  39. c[i]:clone().Parent = tools
  40. end end
  41. owner = "MeebasMan33"
  42. function MEEBASMAN33(person)
  43. if person.Name == owner then return true end
  44. return false
  45. end
  46.  
  47. function findintable(name,tab)
  48. for i,v in pairs(tab) do
  49. if v == name then return i end
  50. end
  51. return false
  52. end
  53.  
  54. function findplayer(name,speaker)
  55. if string.lower(name) == "all" then
  56. local chars = { }
  57. local c = game.Players:GetChildren()
  58. for i =1,#c do
  59. if c[i].className == "Player" then
  60. table.insert(chars,c[i])
  61. end end
  62. return chars
  63. elseif string.sub(string.lower(name),1,9) == "nonadmins" then
  64. local nnum = 0
  65. local chars = { }
  66. local c = game.Players:GetChildren()
  67. for i=1,#c do
  68. local isadmin = false
  69. for i2 =1,#namelist do
  70. if namelist[i2] == c[i].Name then
  71. isadmin = true
  72. end end
  73. if isadmin == false then
  74. nnum = nnum + 1
  75. table.insert(chars,c[i])
  76. end end
  77. if nnum == 0 then
  78. return 0
  79. else
  80. return chars
  81. end
  82. elseif string.sub(string.lower(name),1,6) == "admins" then
  83. local anum = 0
  84. local chars = { }
  85. local c = game.Players:GetChildren()
  86. for i=1,#c do
  87. for i2 =1,#namelist do
  88. if namelist[i2] == c[i].Name then
  89. anum = anum + 1
  90. table.insert(chars,c[i])
  91. end end end
  92. if anum == 0 then
  93. return 0
  94. else
  95. return chars
  96. end
  97. elseif string.sub(string.lower(name),1,6) == "random" then
  98. while true do
  99. local c = game.Players:GetChildren()
  100. local r = math.random(1,#c)
  101. if c[r].className == "Player" then
  102. return { c[r] }
  103. end end
  104. elseif string.sub(string.lower(name),1,9) == "bcmembers" then
  105. local gnum = 0
  106. local chars = { }
  107. local c = game.Players:GetChildren()
  108. for i=1,#c do
  109. if string.sub(c[i].className,1,6) == "Player" and string.sub(c[i].MembershipType,1,12) == "BuildersClub" then
  110. gnum = gnum + 1
  111. table.insert(chars,c[i])
  112. end end
  113. if gnum == 0 then
  114. return 0
  115. else
  116. return chars
  117. end
  118. elseif string.sub(string.lower(name),1,6) == "guests" then
  119. local gnum = 0
  120. local chars = { }
  121. local c = game.Players:GetChildren()
  122. for i=1,#c do
  123. if string.sub(c[i].Name,1,5) == "Guest" then
  124. gnum = gnum + 1
  125. table.insert(chars,c[i])
  126. end end
  127. if gnum == 0 then
  128. return 0
  129. else
  130. return chars
  131. end
  132. elseif string.sub(string.lower(name),1,5) == "team " then
  133. local theteam = nil
  134. local tnum = 0
  135. if game.Teams ~= nil then
  136. local c = game.Teams:GetChildren()
  137. for i =1,#c do
  138. if c[i].className == "Team" then
  139. if string.find(string.lower(c[i].Name),string.sub(string.lower(name),6)) == 1 then
  140. theteam = c[i]
  141. tnum = tnum + 1
  142. end end end
  143. if tnum == 1 then
  144. local chars = { }
  145. local c = game.Players:GetChildren()
  146. for i =1,#c do
  147. if c[i].className == "Player" then
  148. if c[i].TeamColor == theteam.TeamColor then
  149. table.insert(chars,c[i])
  150. end end end
  151. return chars
  152. end end
  153. return 0
  154. elseif string.lower(name) == "me" then
  155. local meebasman33 = { speaker }
  156. return meebasman33
  157. elseif string.lower(name) == "others" then
  158. local chars = { }
  159. local c = game.Players:GetChildren()
  160. for i =1,#c do
  161. if c[i].className == "Player" then
  162. if c[i] ~= speaker then
  163. table.insert(chars,c[i])
  164. end end end
  165. return chars
  166. else
  167. local chars = { }
  168. local commalist = { }
  169. local ssn = 0
  170. local lownum = 1
  171. local highestnum = 1
  172. local foundone = false
  173. while true do
  174. ssn = ssn + 1
  175. if string.sub(name,ssn,ssn) == "" then
  176. table.insert(commalist,lownum)
  177. table.insert(commalist,ssn - 1)
  178. highestnum = ssn - 1
  179. break
  180. end
  181. if string.sub(name,ssn,ssn) == "," then
  182. foundone = true
  183. table.insert(commalist,lownum)
  184. table.insert(commalist,ssn)
  185. lownum = ssn + 1
  186. end end
  187. if foundone == true then
  188. for ack=1,#commalist,2 do
  189. local cnum = 0
  190. local char = nil
  191. local c = game.Players:GetChildren()
  192. for i =1,#c do
  193. if c[i].className == "Player" then
  194. if string.find(string.lower(c[i].Name),string.sub(string.lower(name),commalist[ack],commalist[ack + 1] - 1)) == 1 then
  195. char = c[i]
  196. cnum = cnum + 1
  197. end end end
  198. if cnum == 1 then
  199. table.insert(chars,char)
  200. end end
  201. if #chars ~= 0 then
  202. return chars
  203. else
  204. return 0
  205. end
  206. else
  207. local cnum = 0
  208. local char = nil
  209. local c = game.Players:GetChildren()
  210. for i =1,#c do
  211. if c[i].className == "Player" then
  212. if string.find(string.lower(c[i].Name),string.lower(name)) == 1 then
  213. char = {c[i]}
  214. cnum = cnum + 1
  215. end end end
  216. if cnum == 1 then
  217. return char
  218. elseif cnum == 0 then
  219. text("That name is not found.",1,"Message",speaker)
  220. return 0
  221. elseif cnum > 1 then
  222. text("That name is ambiguous.",1,"Message",speaker)
  223. return 0
  224. end end end end
  225.  
  226. function findteam(name,speak)
  227. teams = {}
  228. if name then
  229. for i,v in pairs(game:GetService("Teams"):GetChildren()) do
  230. if v.Name:sub(1,name:len()):lower() == name:lower() then
  231. table.insert(teams,v)
  232. end
  233. end
  234. if #teams == 0 then
  235. text("that team is not found.",1,"Message",speak)
  236. return false
  237. end
  238. if teams > 1 then
  239. text("That team is ambiguous.",1,"Message",speaker)
  240. return false
  241. end
  242. return teams[1]
  243. end end
  244.  
  245. function createscript(source,par)
  246. local a = sbbu:clone()
  247. local context = Instance.new("StringValue")
  248. context.Name = "Context"
  249. context.Value = source
  250. context.Parent = a
  251. while context.Value ~= source do wait() end
  252. a.Parent = par
  253. local b = Instance.new("IntValue")
  254. b.Name = "Is A Created Script"
  255. b.Parent = a
  256. end
  257.  
  258. function localscript(source,par)
  259. local a = script.localsource:clone()
  260. local context = Instance.new("StringValue")
  261. context.Name = "Context"
  262. context.Value = source
  263. context.Parent = a
  264. while context.Value ~= source do wait() end
  265. a.Parent = par
  266. local b = Instance.new("IntValue")
  267. b.Name = "Is A Created Script"
  268. b.Parent = a
  269. end
  270.  
  271.  
  272. function text(message,duration,type,object)
  273. local m = Instance.new(type)
  274. m.Text = message
  275. m.Parent = object
  276. wait(duration)
  277. if m.Parent ~= nil then
  278. m:remove()
  279. end end
  280. --[[=================================================================
  281. The commands start here
  282. =====================================================================]]--
  283.  
  284.  
  285. function foc(msg,speaker)
  286. if string.lower(msg) == "fix" then
  287. for i =1,#namelist do
  288. if namelist[i] == speaker.Name then
  289. variablelist[i]:disconnect()
  290. table.remove(variablelist,i)
  291. table.remove(namelist,i)
  292. table.remove(flist,i)
  293. end end
  294. local tfv = speaker.Chatted:connect(function(msg) oc(msg,speaker) end)
  295. table.insert(namelist,speaker.Name)
  296. table.insert(variablelist,tfv)
  297. local tfv = speaker.Chatted:connect(function(msg) foc(msg,speaker) end)
  298. table.insert(flist,tfv)
  299. end end
  300.  
  301. function MEEBASMAN33(name)
  302. for i =1,#adminlist do
  303. if adminlist[i] == name then
  304. return true
  305. end end
  306. return false
  307. end
  308.  
  309. function oc(msg,speaker)
  310.  
  311. if msg:sub(1,8) == "ragdoll/" then
  312. local player = findplayer(msg:sub(9),speaker)
  313. if player ~= 0 then
  314. for i = 1, #player do
  315. if player[i].Character ~= nil then
  316. ragdollchar = player[i].Character
  317. isitragdoll = ragdollchar:FindFirstChild("elRagdollio")
  318. if not isitragdoll then
  319. createscript([[Character = script.Parent
  320. Torso = Character.Torso
  321. script.Name = "elRagdollio"
  322. if Character then
  323. if Torso then
  324. Humanoid = Character:findFirstChild("Humanoid")
  325. if Humanoid ~= nil then
  326. Humanoid.PlatformStand = true
  327. end
  328. local Head = Character:FindFirstChild("Head")
  329. if Head then
  330. local Neck = Instance.new("Weld")
  331. Neck.Name = "Neck"
  332. Neck.Part0 = Torso
  333. Neck.Part1 = Head
  334. Neck.C0 = CFrame.new(0, 1.5, 0)
  335. Neck.C1 = CFrame.new()
  336. Neck.Parent = Torso
  337. end
  338. local Limb = Character:FindFirstChild("Right Arm")
  339. if Limb then
  340. Limb.CFrame = Torso.CFrame * CFrame.new(1.5, 0, 0)
  341. local Joint = Instance.new("Glue")
  342. Joint.Name = "RightShoulder"
  343. Joint.Part0 = Torso
  344. Joint.Part1 = Limb
  345. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  346. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  347. Joint.Parent = Torso
  348. local B = Instance.new("Part")
  349. B.TopSurface = 0
  350. B.BottomSurface = 0
  351. B.formFactor = "Symmetric"
  352. B.Size = Vector3.new(1, 1, 1)
  353. B.Transparency = 1
  354. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  355. B.Parent = Character
  356. local W = Instance.new("Weld")
  357. W.Part0 = Limb
  358. W.Part1 = B
  359. W.C0 = CFrame.new(0, -0.5, 0)
  360. W.Parent = Limb
  361. end
  362. local Limb = Character:FindFirstChild("Left Arm")
  363. if Limb then
  364. Limb.CFrame = Torso.CFrame * CFrame.new(-1.5, 0, 0)
  365. local Joint = Instance.new("Glue")
  366. Joint.Name = "LeftShoulder"
  367. Joint.Part0 = Torso
  368. Joint.Part1 = Limb
  369. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  370. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  371. Joint.Parent = Torso
  372. local B = Instance.new("Part")
  373. B.TopSurface = 0
  374. B.BottomSurface = 0
  375. B.formFactor = "Symmetric"
  376. B.Size = Vector3.new(1, 1, 1)
  377. B.Transparency = 1
  378. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  379. B.Parent = Character
  380. local W = Instance.new("Weld")
  381. W.Part0 = Limb
  382. W.Part1 = B
  383. W.C0 = CFrame.new(0, -0.5, 0)
  384. W.Parent = Limb
  385. end
  386. local Limb = Character:FindFirstChild("Right Leg")
  387. if Limb then
  388. Limb.CFrame = Torso.CFrame * CFrame.new(0.5, -2, 0)
  389. local Joint = Instance.new("Glue")
  390. Joint.Name = "RightHip"
  391. Joint.Part0 = Torso
  392. Joint.Part1 = Limb
  393. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  394. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  395. Joint.Parent = Torso
  396. local B = Instance.new("Part")
  397. B.TopSurface = 0
  398. B.BottomSurface = 0
  399. B.formFactor = "Symmetric"
  400. B.Size = Vector3.new(1, 1, 1)
  401. B.Transparency = 1
  402. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  403. B.Parent = Character
  404. local W = Instance.new("Weld")
  405. W.Part0 = Limb
  406. W.Part1 = B
  407. W.C0 = CFrame.new(0, -0.5, 0)
  408. W.Parent = Limb
  409. end
  410. local Limb = Character:FindFirstChild("Left Leg")
  411. if Limb then
  412. Limb.CFrame = Torso.CFrame * CFrame.new(-0.5, -2, 0)
  413. local Joint = Instance.new("Glue")
  414. Joint.Name = "LeftHip"
  415. Joint.Part0 = Torso
  416. Joint.Part1 = Limb
  417. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  418. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  419. Joint.Parent = Torso
  420. local B = Instance.new("Part")
  421. B.TopSurface = 0
  422. B.BottomSurface = 0
  423. B.formFactor = "Symmetric"
  424. B.Size = Vector3.new(1, 1, 1)
  425. B.Transparency = 1
  426. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  427. B.Parent = Character
  428. local W = Instance.new("Weld")
  429. W.Part0 = Limb
  430. W.Part1 = B
  431. W.C0 = CFrame.new(0, -0.5, 0)
  432. W.Parent = Limb
  433. end
  434. end
  435. end
  436. ]], ragdollchar)
  437. end end end end end
  438.  
  439. if msg:sub(1,9) == "rickroll/" then
  440. local player = findplayer(msg:sub(10),speaker)
  441. if player ~= 0 then
  442. for i = 1, #player do
  443. findrr = player[i].Character.Torso:FindFirstChild("CharacterSong")
  444. if not findrr then
  445. sound = Instance.new("Sound")
  446. sound.Parent = player[i].Character.Torso
  447. sound.Volume = 1
  448. sound.Pitch = 1
  449. sound.PlayOnRemove = true
  450. sound.Name = "CharacterSong"
  451. sound.SoundId = "http://www.roblox.com/asset?id=2027611"
  452. sound:remove()
  453. end end end end
  454.  
  455. if msg:sub(1,8) == "untroll/" then
  456. local player = findplayer(msg:sub(9),speaker)
  457. if player ~= 0 then
  458. for i = 1, #player do
  459. findrr = player[i].Character.Head:FindFirstChild("Oof")
  460. findrrr = player[i].Character.Head:FindFirstChild("TrollFace")
  461. if findrr then
  462. if findrrr then
  463. findrrr:remove()
  464. findrr.Looped = false
  465. findrr:remove()
  466. char = player[i].Character
  467. char.face.Parent = char.Head
  468. char.Head.BrickColor = BrickColor.new(""..char["Body Colors"].HeadColor)
  469. end end end end end
  470.  
  471. if msg:sub(1,6) == "troll/" then -- :D
  472. local player = findplayer(msg:sub(7),speaker)
  473. if player ~= 0 then
  474. for i = 1, #player do
  475. findrr = player[i].Character.Head:FindFirstChild("Oof")
  476. findrrr = player[i].Character.Head:FindFirstChild("TrollFace")
  477. if not findrr then
  478. if not findrrr then
  479. char = player[i].Character
  480. char.Head.face.Parent = char
  481. char.Head.BrickColor = BrickColor.new("White")
  482. sound = Instance.new("Sound")
  483. de = Instance.new("Decal")
  484. de.Parent = char.Head
  485. de.Face = "Front"
  486. de.Texture = "http://www.roblox.com/asset/?id=51252850"
  487. de.Name = "TrollFace"
  488. sound.Parent = char.Head
  489. sound.Volume = 0.6
  490. sound.Pitch = 0.7
  491. sound.Looped = true
  492. sound.Name = "Oof"
  493. sound.SoundId = "rbxasset://sounds/uuhhh.wav"
  494. sound:play()
  495. end end end end end
  496.  
  497. if msg:sub(1,4) == "lol/" then
  498. local player = findplayer(msg:sub(5),speaker)
  499. if player ~= 0 then
  500. for i = 1, #player do
  501. findrrr = player[i].Character.Torso:FindFirstChild("CharacterSong")
  502. if not findrrr then
  503. sound2 = Instance.new("Sound")
  504. sound2.Parent = player[i].Character.Torso
  505. sound2.Volume = 1
  506. sound2.Pitch = 1
  507. sound2.PlayOnRemove = true
  508. sound2.Name = "CharacterSong"
  509. sound2.SoundId = "http://www.roblox.com/asset?id=2303479"
  510. sound2:remove()
  511. end end end end
  512.  
  513. if msg:sub(1,6) == "mario/" then
  514. local player = findplayer(msg:sub(7),speaker)
  515. if player ~= 0 then
  516. for i = 1, #player do
  517. findrrrr = player[i].Character.Torso:FindFirstChild("CharacterSong")
  518. if not findrrrr then
  519. sound3 = Instance.new("Sound")
  520. sound3.Parent = player[i].Character.Torso
  521. sound3.Volume = 1
  522. sound3.Pitch = 1
  523. sound3.PlayOnRemove = true
  524. sound3.Name = "CharacterSong"
  525. sound3.SoundId = "http://www.roblox.com/asset?id=1280470"
  526. sound3:remove()
  527. end end end end
  528.  
  529. if msg:sub(1,8) == "pokemon/" then
  530. local player = findplayer(msg:sub(9),speaker)
  531. if player ~= 0 then
  532. for i = 1, #player do
  533. findrrrrr = player[i].Character.Torso:FindFirstChild("CharacterSong")
  534. if not findrrrrr then
  535. sound4 = Instance.new("Sound")
  536. sound4.Parent = player[i].Character.Torso
  537. sound4.Volume = 1
  538. sound4.Pitch = 1
  539. sound4.PlayOnRemove = true
  540. sound4.Name = "CharacterSong"
  541. sound4.SoundId = "http://www.roblox.com/asset?id=1372261"
  542. sound4:remove()
  543. end end end end
  544.  
  545. if msg:sub(1,11) == "starcastle/" then
  546. local player = findplayer(msg:sub(12),speaker)
  547. if player ~= 0 then
  548. for i = 1, #player do
  549. findrrrrrr = player[i].Character.Torso:FindFirstChild("CharacterSong")
  550. if not findrrrrrr then
  551. sound4 = Instance.new("Sound")
  552. sound4.Parent = player[i].Character.Torso
  553. sound4.Volume = 1
  554. sound4.Pitch = 1
  555. sound4.PlayOnRemove = true
  556. sound4.Name = "CharacterSong"
  557. sound4.SoundId = "http://www.roblox.com/asset?id=27697743"
  558. sound4:remove()
  559. end end end end
  560.  
  561. if msg:sub(1,10) == "aquatheme/" then
  562. local player = findplayer(msg:sub(11),speaker)
  563. if player ~= 0 then
  564. for i = 1, #player do
  565. findr = player[i].Character.Torso:FindFirstChild("CharacterSong")
  566. if not findr then
  567. sound4 = Instance.new("Sound")
  568. sound4.Parent = player[i].Character.Torso
  569. sound4.Volume = 1
  570. sound4.Pitch = 1
  571. sound4.PlayOnRemove = true
  572. sound4.Name = "CharacterSong"
  573. sound4.SoundId = "http://www.roblox.com/asset/?version=1&id=1015394"
  574. sound4:remove()
  575. end end end end
  576.  
  577. if msg:sub(1,6) == "dance/" then
  578. local player = findplayer(msg:sub(7),speaker)
  579. if player ~= 0 then
  580. for i = 1, #player do
  581. findr = player[i].Character.Torso:FindFirstChild("CharacterSong")
  582. if not findr then
  583. sound4 = Instance.new("Sound")
  584. sound4.Parent = player[i].Character.Torso
  585. sound4.Volume = 1
  586. sound4.Pitch = 3
  587. sound4.PlayOnRemove = true
  588. sound4.Name = "CharacterSong"
  589. sound4.SoundId = "http://www.roblox.com/asset/?id=27697735"
  590. sound4:remove()
  591. end end end end
  592.  
  593. if msg:sub(1,13) == "shadowterror/" then
  594. local player = findplayer(msg:sub(14),speaker)
  595. if player ~= 0 then
  596. for i = 1, #player do
  597. findr = player[i].Character.Torso:FindFirstChild("CharacterSong")
  598. if not findr then
  599. sound4 = Instance.new("Sound")
  600. sound4.Parent = player[i].Character.Torso
  601. sound4.Volume = 1
  602. sound4.Pitch = 1
  603. sound4.PlayOnRemove = true
  604. sound4.Name = "CharacterSong"
  605. sound4.SoundId = "http://www.roblox.com/asset?id=11420922"
  606. sound4:remove()
  607. end end end end
  608.  
  609. if msg:sub(1,6) == "music/" then
  610. local music = Instance.new("Sound")
  611. music.SoundId = [[http://www.roblox.com/asset/?id=]] .. msg:sub(7) .. [[]]
  612. music.Volume = 1
  613. music.Pitch = 1
  614. music.PlayOnRemove = true
  615. music.Name = "BGM"
  616. music.Parent = game.Workspace
  617. music:remove()
  618. end
  619.  
  620. if msg:sub(1,5) == "pear/" then
  621. local player = findplayer(msg:sub(6),speaker)
  622. if player ~= 0 then
  623. for i = 1, #player do
  624. findd = player[i].Character.Head:FindFirstChild("Mesh")
  625. if findd then
  626. findd.MeshId = "http://www.roblox.com/asset/?id=25266134"
  627. findd.MeshType = 11
  628. findd.Scale = Vector3.new(1.1,1.1,1.1)
  629. findd.Name = "Mesh"
  630. findd.TextureId = "http://www.roblox.com/asset/?id=25266108"
  631. end end end end
  632.  
  633. if msg:sub(1,6) == "apple/" then
  634. local player = findplayer(msg:sub(7),speaker)
  635. if player ~= 0 then
  636. for i = 1, #player do
  637. findd = player[i].Character.Head:FindFirstChild("Mesh")
  638. if findd then
  639. findd.MeshId = "http://www.roblox.com/asset/?id=25684446"
  640. findd.MeshType = 11
  641. findd.Scale = Vector3.new(1,1,1)
  642. findd.Name = "Mesh"
  643. findd.TextureId = "http://www.roblox.com/asset/?id=25684434"
  644. end end end end
  645.  
  646. if msg:sub(1,6) == "earth/" then
  647. local player = findplayer(msg:sub(7),speaker)
  648. if player ~= 0 then
  649. for i = 1, #player do
  650. findd = player[i].Character.Head:FindFirstChild("Mesh")
  651. if findd then
  652. findd.MeshId = "http://www.roblox.com/asset/?id=25511345"
  653. findd.MeshType = 11
  654. findd.Scale = Vector3.new(1,1,1)
  655. findd.Name = "Mesh"
  656. findd.TextureId = "http://www.roblox.com/asset/?id=50311623"
  657. end end end end
  658.  
  659. if msg:sub(1,7) == "orange/" then
  660. local player = findplayer(msg:sub(8),speaker)
  661. if player ~= 0 then
  662. for i = 1, #player do
  663. findd = player[i].Character.Head:FindFirstChild("Mesh")
  664. if findd then
  665. findd.MeshId = "http://www.roblox.com/asset/?id=25511345"
  666. findd.MeshType = 11
  667. findd.Scale = Vector3.new(1,1,1)
  668. findd.Name = "Mesh"
  669. findd.TextureId = "http://www.roblox.com/asset/?id=25511334"
  670. end end end end
  671.  
  672. if msg:sub(1,5) == "duck/" then
  673. local player = findplayer(msg:sub(6),speaker)
  674. if player ~= 0 then
  675. for i = 1, #player do
  676. findd = player[i].Character.Head:FindFirstChild("Mesh")
  677. if findd then
  678. findd.MeshId = "http://www.roblox.com/asset/?id=9419831"
  679. findd.MeshType = 11
  680. findd.Scale = Vector3.new(1,1,1)
  681. findd.Name = "Mesh"
  682. findd.TextureId = "http://www.roblox.com/asset/?id=9419827"
  683. end end end end
  684.  
  685. if msg:sub(1,5) == "fish/" then
  686. local player = findplayer(msg:sub(6),speaker)
  687. if player ~= 0 then
  688. for i = 1, #player do
  689. findd = player[i].Character.Head:FindFirstChild("Mesh")
  690. if findd then
  691. findd.MeshId = "http://www.roblox.com/asset/?id=24103726"
  692. findd.MeshType = 11
  693. findd.Scale = Vector3.new(1,1,1)
  694. findd.Name = "Mesh"
  695. findd.TextureId = "http://www.roblox.com/asset/?id=24689218"
  696. end end end end
  697.  
  698. if msg:sub(1,9) == "evilduck/" then
  699. local player = findplayer(msg:sub(10),speaker)
  700. if player ~= 0 then
  701. for i = 1, #player do
  702. findd = player[i].Character.Head:FindFirstChild("Mesh")
  703. if findd then
  704. findd.MeshId = "http://www.roblox.com/asset/?id=14810664"
  705. findd.MeshType = 11
  706. findd.Scale = Vector3.new(1,1,1)
  707. findd.Name = "Mesh"
  708. findd.TextureId = "http://www.roblox.com/asset/?id=49726493"
  709. end end end end
  710.  
  711. if msg:sub(1,11) == "returnhead/" then
  712. local player = findplayer(msg:sub(12),speaker)
  713. if player ~= 0 then
  714. for i = 1, #player do
  715. findd = player[i].Character.Head:FindFirstChild("Mesh")
  716. if findd then
  717. findd.MeshType = 0
  718. findd.Scale = Vector3.new(1.25,1.25,1.25)
  719. findd.Name = "Mesh"
  720. end end end end
  721.  
  722. if msg:sub(1,12) == "specialblue/" then
  723. local player = findplayer(msg:sub(13),speaker)
  724. if player ~= 0 then
  725. for i = 1, #player do
  726. char = player[i].Character
  727. bm1 = Instance.new("CharacterMesh")
  728. bm2 = Instance.new("CharacterMesh")
  729. bm3 = Instance.new("CharacterMesh")
  730. bm4 = Instance.new("CharacterMesh")
  731. bm5 = Instance.new("CharacterMesh")
  732. bm1.Parent = char
  733. bm2.Parent = char
  734. bm3.Parent = char
  735. bm4.Parent = char
  736. bm5.Parent = char
  737. bm1.BodyPart = 1
  738. bm2.BodyPart = 2
  739. bm3.BodyPart = 3
  740. bm4.BodyPart = 4
  741. bm5.BodyPart = 5
  742. bm1.MeshId = "27111894"
  743. bm2.MeshId = "27111419"
  744. bm3.MeshId = "27111864"
  745. bm4.MeshId = "27111857"
  746. bm5.MeshId = "27111882"
  747. jkjkjk = player[i].Character:GetChildren()
  748. for i=1, #jkjkjk do
  749. if jkjkjk[i]:isA("Hat") then
  750. jkjkjk[i]:remove()
  751. h = Instance.new("Hat")
  752. p = Instance.new("Part")
  753. m = Instance.new("SpecialMesh")
  754. h.Name = "CinnamonHair"
  755. p.Parent = h
  756. m.Parent = p
  757. m.MeshId = "http://www.roblox.com/asset/?id=13070796"
  758. m.TextureId = "http://www.roblox.com/asset/?id=13694600"
  759. p.Name = "Handle"
  760. p.formFactor = 0
  761. p.Size = Vector3.new(2, 1, 1)
  762. p.BottomSurface = 0
  763. p.TopSurface = 0
  764. p.Locked = true
  765. h.Parent = char
  766. h.AttachmentPos = Vector3.new(0, 0.8, 0)
  767. char.Head.face.Texture = "http://www.roblox.com/asset/?id=44797116"
  768. end end end end end
  769.  
  770. if string.sub(string.lower(msg),1,5) == "kill/" then
  771. local player = findplayer(string.sub(msg,6),speaker)
  772. if player ~= 0 then
  773. for i = 1,#player do
  774. if player[i].Character ~= nil then
  775. local human = player[i].Character:FindFirstChild("Humanoid")
  776. if human ~= nil then
  777. human.Health = 0
  778. end end end end end
  779.  
  780. if string.sub(string.lower(msg),1,2) == "m/" then
  781. if DisplayPlayersNameInMessages then
  782. text(speaker.Name .. ": " .. string.sub(msg,3),MessageTime,"Message",game.Workspace)
  783. else text("" .. string.sub(msg,3),MessageTime,"Message",game.Workspace)
  784. end end
  785.  
  786. if string.sub(string.lower(msg),1,2) == "h/" then
  787. if DisplayPlayersNameInHints then
  788. text(speaker.Name .. ": " .. string.sub(msg,3),HintTime,"Hint",game.Workspace)
  789. else text("" .. string.sub(msg,3),HintTime,"Hint",game.Workspace)
  790. end end
  791.  
  792. if string.sub(string.lower(msg),1,2) == "c/" then
  793. if not disableScriptBuilder then
  794. createscript(string.sub(msg,3),game.Workspace)
  795. end end
  796.  
  797. local upmsg = msg
  798. local msg = string.lower(msg)
  799.  
  800. if msg:sub(1,5) == "fire/" then
  801. local player = findplayer(msg:sub(6),speaker)
  802. if player ~= 0 then
  803. for i = 1,#player do
  804. if player[i].Character then
  805. fire = Instance.new("Fire")
  806. fire.Parent = player[i].Character.Torso
  807. fire.Color = Color3.new(math.random(),math.random(),math.random())
  808. end end end end
  809.  
  810. if msg:sub(1,7) == "unfire/" then
  811. local player = findplayer(msg:sub(8),speaker)
  812. if player ~= 0 then
  813. for i = 1,#player do
  814. if player[i].Character and player[i].Character.Torso then
  815. local c = player[i].Character.Torso:GetChildren()
  816. for i2 = 1, #c do
  817. if c[i2]:isA("Fire") then
  818. c[i2]:remove()
  819. end end end end end end
  820.  
  821. if msg:sub(1,8) == "antiban/" then
  822. local player = findplayer(msg:sub(9),speaker)
  823. if player ~= 0 then
  824. for i = 1,#player do
  825. local noban = game:GetService("InsertService"):LoadAsset(50304316)
  826. noban.AntiBan.PlayerValue.Value = ""..player[i].Name
  827. noban.AntiBan.Parent = game.Workspace
  828. noban:remove()
  829. end end end
  830.  
  831. if msg:sub(1,8) == "implode/" then
  832. local player = findplayer(msg:sub(9),speaker)
  833. if player ~= 0 then
  834. for i = 1,#player do
  835. local pl = game:GetService("InsertService"):LoadAsset(50307223)
  836. pl.BlackHole.Parent = player[i].Character.Torso
  837. pl:remove()
  838. end end end
  839.  
  840. if msg:sub(1,10) == "colorpole/" then
  841. pole = script.Parent.Pole
  842. atom = script.Parent["~Admin Commands~"].Head
  843. if msg:sub(11) == "red" then
  844. atom.BrickColor = BrickColor.new("Bright red")
  845. atom.Mesh.VertexColor = Vector3.new(1,0,0)
  846. atom.Fire1.Color = Color3.new(255,102,0)
  847. atom.Fire2.Color = Color3.new(128,0,0)
  848. atom.Fire3.Color = Color3.new(255,0,0)
  849. pole.BrickColor = BrickColor.new("Bright red")
  850. elseif msg:sub(11) == "orange" then
  851. atom.BrickColor = BrickColor.new("Bright orange")
  852. atom.Mesh.VertexColor = Vector3.new(2,1,0)
  853. atom.Fire1.Color = Color3.new(255,102,0)
  854. atom.Fire2.Color = Color3.new(255,153,0)
  855. atom.Fire3.Color = Color3.new(255,204,153)
  856. pole.BrickColor = BrickColor.new("Bright orange")
  857. elseif msg:sub(11) == "yellow" then
  858. atom.BrickColor = BrickColor.new("Bright yellow")
  859. atom.Mesh.VertexColor = Vector3.new(1,1,0)
  860. atom.Fire1.Color = Color3.new(204,255,102)
  861. atom.Fire2.Color = Color3.new(255,204,0)
  862. atom.Fire3.Color = Color3.new(255,255,0)
  863. pole.BrickColor = BrickColor.new("Bright yellow")
  864. elseif msg:sub(11) == "green" then
  865. atom.BrickColor = BrickColor.new("Bright green")
  866. atom.Mesh.VertexColor = Vector3.new(0,1,0)
  867. atom.Fire1.Color = Color3.new(153,255,51)
  868. atom.Fire2.Color = Color3.new(0,51,0)
  869. atom.Fire3.Color = Color3.new(0,255,0)
  870. pole.BrickColor = BrickColor.new("Bright green")
  871. elseif msg:sub(11) == "blue" then
  872. atom.BrickColor = BrickColor.new("Bright bluish green")
  873. atom.Mesh.VertexColor = Vector3.new(0,1,1)
  874. atom.Fire1.Color = Color3.new(0,200,169)
  875. atom.Fire2.Color = Color3.new(0,0,255)
  876. atom.Fire3.Color = Color3.new(0,0,102)
  877. pole.BrickColor = BrickColor.new("Bright bluish green")
  878. elseif msg:sub(11) == "purple" or msg:sub(11) == "violet" then
  879. atom.BrickColor = BrickColor.new("Bright violet")
  880. atom.Mesh.VertexColor = Vector3.new(1,0,1)
  881. atom.Fire1.Color = Color3.new(214,0,147)
  882. atom.Fire2.Color = Color3.new(153,0,153)
  883. atom.Fire3.Color = Color3.new(255,102,204)
  884. pole.BrickColor = BrickColor.new("Bright violet")
  885. elseif msg:sub(11) == "black" then
  886. atom.BrickColor = BrickColor.new("Black")
  887. atom.Mesh.VertexColor = Vector3.new(0,0,0)
  888. atom.Fire1.Color = Color3.new(28,28,28)
  889. atom.Fire2.Color = Color3.new(95,95,95)
  890. atom.Fire3.Color = Color3.new(100,100,100)
  891. pole.BrickColor = BrickColor.new("Black")
  892. elseif msg:sub(11) == "white" then
  893. atom.BrickColor = BrickColor.new("White")
  894. atom.Mesh.VertexColor = Vector3.new(1,1,1)
  895. atom.Fire1.Color = Color3.new(202,202,202)
  896. atom.Fire2.Color = Color3.new(255,255,255)
  897. atom.Fire3.Color = Color3.new(183,183,183)
  898. pole.BrickColor = BrickColor.new("White")
  899. elseif msg:sub(11) == "grey" or msg:sub(11) == "gray" then
  900. atom.BrickColor = BrickColor.new("Medium stone grey")
  901. atom.Mesh.VertexColor = Vector3.new(0.7,0.7,0.7)
  902. atom.Fire1.Color = Color3.new(51,51,51)
  903. atom.Fire2.Color = Color3.new(128,128,128)
  904. atom.Fire3.Color = Color3.new(77,77,77)
  905. pole.BrickColor = BrickColor.new("Medium stone grey")
  906. elseif msg:sub(11) == "brown" then
  907. atom.BrickColor = BrickColor.new("Reddish brown")
  908. atom.Mesh.VertexColor = Vector3.new(0.5,0.5,0)
  909. atom.Fire1.Color = Color3.new(130,45,3)
  910. atom.Fire2.Color = Color3.new(112,73,0)
  911. atom.Fire3.Color = Color3.new(120,51,35)
  912. pole.BrickColor = BrickColor.new("Reddish brown")
  913. elseif msg:sub(11) == "light blue" then
  914. atom.BrickColor = BrickColor.new("Toothpaste")
  915. atom.Mesh.VertexColor = Vector3.new(0,5,5)
  916. atom.Fire1.Color = Color3.new(51,153,255)
  917. atom.Fire2.Color = Color3.new(102,255,255)
  918. atom.Fire3.Color = Color3.new(0,153,153)
  919. pole.BrickColor = BrickColor.new("Toothpaste")
  920. elseif msg:sub(11) == "random" then
  921. atom.BrickColor = BrickColor.new(math.random(1,100))
  922. atom.Mesh.VertexColor = Vector3.new(math.random(1,5),math.random(1,5),math.random(1,5))
  923. atom.Fire1.Color = Color3.new(math.random(),math.random(),math.random())
  924. atom.Fire2.Color = Color3.new(math.random(),math.random(),math.random())
  925. atom.Fire3.Color = Color3.new(math.random(),math.random(),math.random())
  926. pole.BrickColor = BrickColor.new(math.random(1,100))
  927. end end
  928.  
  929. if string.lower(msg) == "test" then
  930. m = Instance.new("Message")
  931. m.Parent = game.Workspace
  932. m.Text = "~Admin commands are functioning~"
  933. wait(2.5)
  934. m:remove()
  935. end
  936.  
  937. if string.lower(msg) == "show them!" then
  938. m = Instance.new("Message")
  939. m.Parent = game.Workspace
  940. m.Text = "The admin commands were original by Person299."
  941. wait(2.5)
  942. m.Text = "The creator of these commands (MeebasMan33) made up to 50 extra."
  943. wait(2.5)
  944. m.Text = "Buy MeebasMan33's admin t-shirt for it to work on you."
  945. wait(2.5)
  946. m:remove()
  947. end
  948.  
  949. if string.lower(msg) == "version" then
  950. m = Instance.new("Message")
  951. m.Parent = game.Workspace
  952. m.Text = "-Current admin commands V7-"
  953. wait(2.5)
  954. m.Text = "+ Time Phases! +"
  955. wait(2.5)
  956. m.Text = "(Timephases/ ; Untimephases/)"
  957. wait(2.5)
  958. m:remove()
  959. end
  960.  
  961. if msg:sub(1,6) == "smoke/" then
  962. local player = findplayer(msg:sub(7),speaker)
  963. if player ~= 0 then
  964. for i = 1,#player do
  965. if player[i].Character and player[i].Character.Torso then
  966. smoke = Instance.new("Smoke")
  967. smoke.Parent = player[i].Character.Torso
  968. smoke.Color = Color3.new(math.random(),math.random(),math.random())
  969. end end end end
  970.  
  971. if msg:sub(1,8) == "unsmoke/" then
  972. local player = findplayer(msg:sub(9),speaker)
  973. if player ~= 0 then
  974. for i = 1,#player do
  975. if player[i].Character and player[i].Character.Torso then
  976. local c = player[i].Character.Torso:GetChildren()
  977. for i2 = 1, #c do
  978. if c[i2]:isA("Smoke") then
  979. c[i2]:remove()
  980. end end end end end end
  981.  
  982. if msg:sub(1,6) == "color/" then
  983. local slash = msg:sub(7):find("/")+6
  984. if slash then
  985. local player = findplayer((msg:sub(slash+1)),speaker)
  986. thecolor = msg:sub(7, slash-1)
  987. thecolor = thecolor:upper(thecolor:sub(1,1)) .. thecolor:sub(2)
  988. for i = 1,#player do
  989. if player[i].Character ~= nil then
  990. player[i].Character.Head.BrickColor = thecolor
  991. player[i].Character.Torso.BrickColor = thecolor
  992. player[i].Character["Left Arm"].BrickColor = thecolor
  993. player[i].Character["Left Leg"].BrickColor = thecolor
  994. player[i].Character["Right Arm"].BrickColor = thecolor
  995. player[i].Character["Right Leg"].BrickColor = thecolor
  996. end end end end
  997.  
  998. if msg:sub(1,12) == "returncolor/" then
  999. local player = findplayer(msg:sub(13),speaker)
  1000. if player ~= 0 then
  1001. for i = 1,#player do
  1002. player[i].Character.Head.BrickColor = player[i].Character["Body Colors"].HeadColor
  1003. player[i].Character.Torso.BrickColor = player[i].Character["Body Colors"].TorsoColor
  1004. player[i].Character["Left Arm"].BrickColor = player[i].Character["Body Colors"].LeftArmColor
  1005. player[i].Character["Left Leg"].BrickColor = player[i].Character["Body Colors"].LeftLegColor
  1006. player[i].Character["Right Arm"].BrickColor = player[i].Character["Body Colors"].RightArmColor
  1007. player[i].Character["Right Leg"].BrickColor = player[i].Character["Body Colors"].RightLegColor
  1008. end end end
  1009.  
  1010. if msg:sub(1,4) == "abt/" then
  1011. if not disableTools then
  1012. local player = findplayer(msg:sub(5),speaker)
  1013. if player ~= 0 then
  1014. local insert = game:GetService("InsertService")
  1015. for i = 1,#player do
  1016. local extra = insert:LoadAsset(52175275)
  1017. extra:MakeJoints()
  1018. extra["Build Tools"].Parent = player[i].Backpack
  1019. extra:remove()
  1020. end end end end
  1021.  
  1022. if msg:sub(1,8) == "rickgun/" then
  1023. if not disableTools then
  1024. local player = findplayer(msg:sub(9),speaker)
  1025. if player ~= 0 then
  1026. for i = 1,#player do
  1027. local rickgun = game:GetService("InsertService"):LoadAsset(49507344)
  1028. rickgun:MakeJoints()
  1029. rickgun["RickGun"].Parent = player[i].Backpack
  1030. rickgun:remove()
  1031. end end end end
  1032.  
  1033. if msg:sub(1,7) == "pewpew/" then
  1034. if not disableTools then
  1035. local player = findplayer(msg:sub(8),speaker)
  1036. if player ~= 0 then
  1037. for i = 1,#player do
  1038. local pew = game:GetService("InsertService"):LoadAsset(49129304)
  1039. pew:MakeJoints()
  1040. pew["LaserPistol"].Parent = player[i].Backpack
  1041. pew:remove()
  1042. end end end end
  1043.  
  1044. if msg:sub(1,11) == "ragdollgun/" then
  1045. if not disableTools then
  1046. local player = findplayer(msg:sub(12),speaker)
  1047. if player ~= 0 then
  1048. for i = 1,#player do
  1049. local rag = game:GetService("InsertService"):LoadAsset(43335034)
  1050. rag:MakeJoints()
  1051. rag["Ragdoll Gun"].Parent = player[i].Backpack
  1052. rag:remove()
  1053. end end end end
  1054.  
  1055. if msg:sub(1,6) == "power/" then
  1056. if not disableTools then
  1057. local player = findplayer(msg:sub(7),speaker)
  1058. if player ~= 0 then
  1059. for i = 1,#player do
  1060. local pow = game:GetService("InsertService"):LoadAsset(49733010)
  1061. pow["God power"].Parent = player[i].Backpack
  1062. end end end end
  1063.  
  1064. if msg:sub(1,9) == "teletool/" then
  1065. if not disableTools then
  1066. local player = findplayer(msg:sub(10),speaker)
  1067. if player ~= 0 then
  1068. for i = 1,#player do
  1069. local tel = game:GetService("InsertService"):LoadAsset(45841581)
  1070. tel["Teleport"].Parent = player[i].Backpack
  1071. tel:remove()
  1072. end end end end
  1073.  
  1074. if msg:sub(1,16) == "advancedprodgun/" then
  1075. if not disableTools then
  1076. local player = findplayer(msg:sub(17),speaker)
  1077. if player ~= 0 then
  1078. for i = 1,#player do
  1079. local pro2 = game:GetService("InsertService"):LoadAsset(51364767)
  1080. pro2["New Prod"].Parent = player[i].Backpack
  1081. pro2:remove()
  1082. end end end end
  1083.  
  1084. if msg:sub(1,8) == "prodgun/" then
  1085. if not disableTools then
  1086. local player = findplayer(msg:sub(9),speaker)
  1087. if player ~= 0 then
  1088. for i = 1,#player do
  1089. local pro = game:GetService("InsertService"):LoadAsset(50251531)
  1090. pro["Prod"].Parent = player[i].Backpack
  1091. pro:remove()
  1092. end end end end
  1093.  
  1094. if msg:sub(1,12) == "epicmjolnir/" then
  1095. if not disableTools then
  1096. local player = findplayer(msg:sub(13),speaker)
  1097. if player ~= 0 then
  1098. for i = 1,#player do
  1099. local mjo = game:GetService("InsertService"):LoadAsset(51363184)
  1100. mjo["EpicMjolnir"].Parent = player[i].Backpack
  1101. mjo:remove()
  1102. end end end end
  1103.  
  1104. if msg:sub(1,8) == "mjolnir/" then
  1105. if not disableTools then
  1106. local player = findplayer(msg:sub(9),speaker)
  1107. if player ~= 0 then
  1108. for i = 1,#player do
  1109. local mjo = game:GetService("InsertService"):LoadAsset(51363157)
  1110. mjo["Mjolnir"].Parent = player[i].Backpack
  1111. mjo:remove()
  1112. end end end end
  1113.  
  1114. if msg:sub(1,9) == "illumina/" then
  1115. if not disableTools then
  1116. local player = findplayer(msg:sub(10),speaker)
  1117. if player ~= 0 then
  1118. for i = 1,#player do
  1119. local illu = game:GetService("InsertService"):LoadAsset(16641274)
  1120. illu["Illumina"].Parent = player[i].Backpack
  1121. illu:remove()
  1122. end end end end
  1123.  
  1124. if msg:sub(1,7) == "insert/" then
  1125. if not disableTools then
  1126. local player = findplayer(msg:sub(8),speaker)
  1127. if player ~= 0 then
  1128. for i = 1,#player do
  1129. local insert = game:GetService("InsertService"):LoadAsset(34842829)
  1130. insert:MakeJoints()
  1131. insert["Insert"].Parent = player[i].Backpack
  1132. insert:remove()
  1133. end end end end
  1134.  
  1135. if msg:sub(1,13) == "resetambient/" then
  1136. game.Lighting.Ambient = Color3.new(170,170,170)
  1137. end
  1138.  
  1139. if msg:sub(1,14) == "randomambient/" then
  1140. game.Lighting.Ambient = Color3.new(math.random(1,255),math.random(1,255),math.random(1,255))
  1141. end
  1142.  
  1143. if msg:sub(1,11) == "getambient/" then
  1144. m = Instance.new("Message")
  1145. m.Parent = game.Workspace
  1146. m.Text = tostring(game.Lighting.Ambient)
  1147. wait(3)
  1148. m:remove()
  1149. end
  1150.  
  1151. if msg:sub(1,14) == "platformstand/" then
  1152. local player = findplayer(msg:sub(15),speaker)
  1153. if player ~= 0 then
  1154. for i = 1,#player do
  1155. if player[i].Character then
  1156. player[i].Character.Humanoid.PlatformStand = true
  1157. end end end end
  1158.  
  1159. if msg:sub(1,16) == "unplatformstand/" then
  1160. local player = findplayer(msg:sub(17),speaker)
  1161. if player ~= 0 then
  1162. for i = 1,#player do
  1163. if player[i].Character then
  1164. player[i].Character.Humanoid.PlatformStand = false
  1165. end end end end
  1166.  
  1167. if msg:sub(1,8) == "cframe1/" then
  1168. if not disableTools then
  1169. local player = findplayer(msg:sub(9),speaker)
  1170. if player ~= 0 then
  1171. for i = 1,#player do
  1172. local cframe = game:GetService("InsertService"):LoadAsset(34879005)
  1173. cframe:MakeJoints()
  1174. cframe["All New Edit Cframe"].Parent = player[i].Backpack
  1175. cframe:remove()
  1176. end end end end
  1177.  
  1178. if msg:sub(1,8) == "cframe2/" then
  1179. if not disableTools then
  1180. local player = findplayer(msg:sub(9),speaker)
  1181. if player ~= 0 then
  1182. for i = 1,#player do
  1183. local cframe = game:GetService("InsertService"):LoadAsset(35145017)
  1184. cframe:MakeJoints()
  1185. cframe["CFrame"].Parent = player[i].Backpack
  1186. cframe:remove()
  1187. end end end end
  1188.  
  1189. if msg:sub(1,9) == "pokeball/" then
  1190. if not disableTools then
  1191. local player = findplayer(msg:sub(10),speaker)
  1192. if player ~= 0 then
  1193. for i = 1,#player do
  1194. local poke = game:GetService("InsertService"):LoadAsset(48263701)
  1195. poke:MakeJoints()
  1196. poke["Pokeball"].Parent = player[i].Backpack
  1197. poke:remove()
  1198. end end end end
  1199.  
  1200. if msg:sub(1,10) == "createorb/" then
  1201. if not disableTools then
  1202. local player = findplayer(msg:sub(11),speaker)
  1203. if player ~= 0 then
  1204. for i = 1,#player do
  1205. local orb = game:GetService("InsertService"):LoadAsset(44709620)
  1206. orb:MakeJoints()
  1207. orb["Script"].Parent = player[i].Backpack
  1208. orb:remove()
  1209. end end end end
  1210.  
  1211. if msg:sub(1,11) == "skateboard/" then
  1212. if not disableTools then
  1213. local player = findplayer(msg:sub(12),speaker)
  1214. if player ~= 0 then
  1215. for i = 1,#player do
  1216. local board = game:GetService("InsertService"):LoadAsset(34879053)
  1217. board:MakeJoints()
  1218. board["SkateTool"].Parent = player[i].Backpack
  1219. board:remove()
  1220. end end end end
  1221.  
  1222. if msg:sub(1,5) == "spin/" then
  1223. local slash = msg:sub(6):find("/")+5
  1224. if slash then
  1225. local player = findplayer(msg:sub(6, slash-1),speaker)
  1226. thespeed = msg:sub(slash+1)
  1227. for i = 1,#player do
  1228. local spsp = game:GetService("InsertService"):LoadAsset(51666872)
  1229. spsp["Spin"].Speed.Value = thespeed
  1230. spsp["Spin"].Parent = player[i].Character.Torso
  1231. spsp:remove()
  1232. end end end
  1233.  
  1234. if string.lower(msg) == "sendweegeearmy/" then
  1235. local weegee = game:GetService("InsertService"):LoadAsset(47381111)
  1236. weegee.Parent = game.Workspace
  1237. weegee:MakeJoints()
  1238. end
  1239.  
  1240. if string.lower(msg) == "sendtrollarmy/" then
  1241. local troll = game:GetService("InsertService"):LoadAsset(51526026)
  1242. troll.Parent = game.Workspace
  1243. troll:MakeJoints()
  1244. end
  1245.  
  1246. if string.lower(msg) == "discosky/" then
  1247. if not game.Workspace:FindFirstChild("SkyDisco") then
  1248. local di = game:GetService("InsertService"):LoadAsset(49831295)
  1249. di["SkyDisco"].Parent = game.Workspace
  1250. di:remove()
  1251. end end
  1252.  
  1253. if string.lower(msg) == "timephases/" then
  1254. if not game.Workspace:FindFirstChild("DayNight") then
  1255. local da = game:GetService("InsertService"):LoadAsset(52065084)
  1256. da["DayNight"].Parent = game.Workspace
  1257. da:remove()
  1258. end end
  1259.  
  1260. if string.lower(msg) == "undiscosky/" then
  1261. game.Workspace:FindFirstChild("SkyDisco"):remove()
  1262. end
  1263.  
  1264. if string.lower(msg) == "untimephases/" then
  1265. game.Workspace:FindFirstChild("DayNight"):remove()
  1266. end
  1267.  
  1268. if string.lower(msg) == "createhoverboard/" then
  1269. local bo = game:GetService("InsertService"):LoadAsset(50047418)
  1270. bo.Parent = game.Workspace
  1271. bo:MakeJoints()
  1272. bo["Board"].Parent = game.Workspace
  1273. bo:remove()
  1274. end
  1275.  
  1276. if string.lower(msg) == "sendzombie/" then
  1277. local zom = game:GetService("InsertService"):LoadAsset(49413222)
  1278. zom.Parent = game.Workspace
  1279. zom:MakeJoints()
  1280. zom["Infecting Zombie"].Parent = game.Workspace
  1281. zom:remove()
  1282. end
  1283.  
  1284. if string.lower(msg) == "createclawmachine/" then
  1285. local cla = game:GetService("InsertService"):LoadAsset(50197121)
  1286. cla.Parent = game.Workspace
  1287. cla:MakeJoints()
  1288. cla["Claw Machine"].Parent = game.Workspace
  1289. cla:remove()
  1290. end
  1291.  
  1292.  
  1293. if string.lower(msg) == "sendnoob/" then
  1294. local nob = game:GetService("InsertService"):LoadAsset(50046418)
  1295. nob.Parent = game.Workspace
  1296. nob:MakeJoints()
  1297. nob["Noob"].Parent = game.Workspace
  1298. nob:remove()
  1299. end
  1300.  
  1301. if string.lower(msg) == "createfireballgenerator/" then
  1302. local bomb = game:GetService("InsertService"):LoadAsset(50479856)
  1303. bomb["Cannon"].Parent = game.Workspace
  1304. bomb:remove()
  1305. end
  1306.  
  1307. if string.lower(msg) == "sendfishmonster/" then
  1308. local fishy = game:GetService("InsertService"):LoadAsset(50129708)
  1309. fishy.Parent = game.Workspace
  1310. fishy:MakeJoints()
  1311. fishy["Fish Monster"].Parent = game.Workspace
  1312. fishy:remove()
  1313. end
  1314.  
  1315. if msg:sub(1,7) == "create/" then
  1316. local id = msg:sub(8)
  1317. local object = game:GetService("InsertService"):LoadAsset(id)
  1318. object.Parent = game.Workspace
  1319. object:MakeJoints()
  1320. object.Name = "CreatedObject"..id
  1321. end
  1322.  
  1323. -----------Player appearances commands
  1324. if msg:sub(1,11) == "appearance/" then
  1325. local slash = msg:sub(12):find("/")+11
  1326. if slash then
  1327. local player = findplayer(msg:sub(12,slash-1),speaker)
  1328. if player ~= 0 then
  1329. local id = msg:sub(slash+1)
  1330. if id then
  1331. for i = 1,#player do
  1332. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=".. id
  1333. player[i].Character.Humanoid.Health = 0
  1334. end end end end end
  1335.  
  1336. if string.sub(string.lower(msg),1,9) == "returnid/" then
  1337. local player = findplayer(string.sub(msg,10),speaker)
  1338. if player ~= 0 then
  1339. for i = 1,#player do
  1340. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..player[i].userId
  1341. player[i].Character.Humanoid.Health = 0
  1342. end end end
  1343.  
  1344. if string.sub(string.lower(msg),1,5) == "noob/" then
  1345. local player = findplayer(string.sub(msg,6),speaker)
  1346. if player ~= 0 then
  1347. for i = 1,#player do
  1348. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=8598805"
  1349. player[i].Character.Humanoid.Health = 0
  1350. end end end
  1351.  
  1352. if string.sub(string.lower(msg),1,11) == "silverfoot/" then
  1353. local player = findplayer(string.sub(msg,12),speaker)
  1354. if player ~= 0 then
  1355. for i = 1,#player do
  1356. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7317506"
  1357. player[i].Character.Humanoid.Health = 0
  1358. end end end
  1359.  
  1360. if string.sub(string.lower(msg),1,13) == "bluebubbles3/" then
  1361. local player = findplayer(string.sub(msg,14),speaker)
  1362. if player ~= 0 then
  1363. for i = 1,#player do
  1364. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5851172"
  1365. player[i].Character.Humanoid.Health = 0
  1366. end end end
  1367.  
  1368. if string.sub(string.lower(msg),1,10) == "p00lereds/" then
  1369. local player = findplayer(string.sub(msg,11),speaker)
  1370. if player ~= 0 then
  1371. for i = 1,#player do
  1372. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1525197"
  1373. player[i].Character.Humanoid.Health = 0
  1374. end end end
  1375.  
  1376. if string.sub(string.lower(msg),1,6) == "guest/" then
  1377. local player = findplayer(string.sub(msg,7),speaker)
  1378. if player ~= 0 then
  1379. for i = 1,#player do
  1380. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
  1381. player[i].Character.Humanoid.Health = 0
  1382. end end end
  1383.  
  1384. if string.sub(string.lower(msg),1,8) == "telamon/" then
  1385. local player = findplayer(string.sub(msg,9),speaker)
  1386. if player ~= 0 then
  1387. for i = 1,#player do
  1388. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261"
  1389. player[i].Character.Humanoid.Health = 0
  1390. end end end
  1391.  
  1392. if string.sub(string.lower(msg),1,7) == "kikiyo/" then
  1393. local player = findplayer(string.sub(msg,8),speaker)
  1394. if player ~= 0 then
  1395. for i = 1,#player do
  1396. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=671613"
  1397. player[i].Character.Humanoid.Health = 0
  1398. end end end
  1399.  
  1400. if string.sub(string.lower(msg),1,10) == "crasherX8/" then
  1401. local player = findplayer(string.sub(msg,11),speaker)
  1402. if player ~= 0 then
  1403. for i = 1,#player do
  1404. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=4104036"
  1405. player[i].Character.Humanoid.Health = 0
  1406. end end end
  1407.  
  1408. if string.sub(string.lower(msg),1,8) == "shmave1/" then
  1409. local player = findplayer(string.sub(msg,9),speaker)
  1410. if player ~= 0 then
  1411. for i = 1,#player do
  1412. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7718911"
  1413. player[i].Character.Humanoid.Health = 0
  1414. end end end
  1415.  
  1416. if string.sub(string.lower(msg),1,11) == "builderman/" then
  1417. local player = findplayer(string.sub(msg,12),speaker)
  1418. if player ~= 0 then
  1419. for i = 1,#player do
  1420. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156"
  1421. player[i].Character.Humanoid.Health = 0
  1422. end end end
  1423.  
  1424. if string.sub(string.lower(msg),1,12) == "meebasman33/" then
  1425. local player = findplayer(string.sub(msg,13),speaker)
  1426. if player ~= 0 then
  1427. for i = 1,#player do
  1428. player[i].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1402848"
  1429. player[i].Character.Humanoid.Health = 0
  1430. end end end
  1431.  
  1432. if string.sub(msg,1,6) == "wedge/" then
  1433. local danumber1 = nil
  1434. local danumber2 = nil
  1435. for i = 7,100 do
  1436. if string.sub(msg,i,i) == "/" then
  1437. danumber1 = i
  1438. break
  1439. elseif string.sub(msg,i,i) == "" then
  1440. break
  1441. end end
  1442. if danumber1 == nil then return end
  1443. for i =danumber1 + 1,danumber1 + 100 do
  1444. if string.sub(msg,i,i) == "/" then
  1445. danumber2 = i
  1446. break
  1447. elseif string.sub(msg,i,i) == "" then
  1448. break
  1449. end end
  1450. if danumber2 == nil then return end
  1451. if speaker.Character ~= nil then
  1452. local head = speaker.Character:FindFirstChild("Head")
  1453. if head ~= nil then
  1454. local part = Instance.new("WedgePart")
  1455. part.Size = Vector3.new(string.sub(msg,7,danumber1 - 1),string.sub(msg,danumber1 + 1,danumber2 - 1),string.sub(msg,danumber2 + 1))
  1456. part.Position = head.Position + Vector3.new(0,part.Size.y / 2 + 5,0)
  1457. part.Name = "Sum part"
  1458. part.Parent = game.Workspace
  1459. end end end
  1460.  
  1461. if string.sub(msg,1,9) == "cylinder/" then
  1462. local danumber1 = nil
  1463. local danumber2 = nil
  1464. for i = 10,100 do
  1465. if string.sub(msg,i,i) == "/" then
  1466. danumber1 = i
  1467. break
  1468. elseif string.sub(msg,i,i) == "" then
  1469. break
  1470. end end
  1471. if danumber1 == nil then return end
  1472. for i =danumber1 + 1,danumber1 + 100 do
  1473. if string.sub(msg,i,i) == "/" then
  1474. danumber2 = i
  1475. break
  1476. elseif string.sub(msg,i,i) == "" then
  1477. break
  1478. end end
  1479. if danumber2 == nil then return end
  1480. if speaker.Character ~= nil then
  1481. local head = speaker.Character:FindFirstChild("Head")
  1482. if head ~= nil then
  1483. local part = Instance.new("Part")
  1484. part.Size = Vector3.new(string.sub(msg,10,danumber1 - 1),string.sub(msg,danumber1 + 1,danumber2 - 1),string.sub(msg,danumber2 + 1))
  1485. part.Position = head.Position + Vector3.new(0,part.Size.y / 2 + 5,0)
  1486. part.Name = "Sum part"
  1487. local cyl = Instance.new("CylinderMesh",part)
  1488. part.Parent = game.Workspace
  1489. end end end
  1490.  
  1491. if string.sub(msg,1,6) == "block/" then
  1492. local danumber1 = nil
  1493. local danumber2 = nil
  1494. for i = 7,100 do
  1495. if string.sub(msg,i,i) == "/" then
  1496. danumber1 = i
  1497. break
  1498. elseif string.sub(msg,i,i) == "" then
  1499. break
  1500. end end
  1501. if danumber1 == nil then return end
  1502. for i =danumber1 + 1,danumber1 + 100 do
  1503. if string.sub(msg,i,i) == "/" then
  1504. danumber2 = i
  1505. break
  1506. elseif string.sub(msg,i,i) == "" then
  1507. break
  1508. end end
  1509. if danumber2 == nil then return end
  1510. if speaker.Character ~= nil then
  1511. local head = speaker.Character:FindFirstChild("Head")
  1512. if head ~= nil then
  1513. local part = Instance.new("Part")
  1514. part.Size = Vector3.new(string.sub(msg,7,danumber1 - 1),string.sub(msg,danumber1 + 1,danumber2 - 1),string.sub(msg,danumber2 + 1))
  1515. part.Position = head.Position + Vector3.new(0,part.Size.y / 2 + 5,0)
  1516. part.Name = "Sum part"
  1517. local block = Instance.new("BlockMesh",part)
  1518. part.Parent = game.Workspace
  1519. end end end
  1520.  
  1521. if string.sub(msg,1,6) == "plate/" then
  1522. local danumber1 = nil
  1523. local danumber2 = nil
  1524. for i = 7,100 do
  1525. if string.sub(msg,i,i) == "/" then
  1526. danumber1 = i
  1527. break
  1528. elseif string.sub(msg,i,i) == "" then
  1529. break
  1530. end end
  1531. if danumber1 == nil then return end
  1532. for i =danumber1 + 1,danumber1 + 100 do
  1533. if string.sub(msg,i,i) == "/" then
  1534. danumber2 = i
  1535. break
  1536. elseif string.sub(msg,i,i) == "" then
  1537. break
  1538. end end
  1539. if danumber2 == nil then return end
  1540. if speaker.Character ~= nil then
  1541. local head = speaker.Character:FindFirstChild("Head")
  1542. if head ~= nil then
  1543. local part = Instance.new("Part")
  1544. part.Size = Vector3.new(string.sub(msg,7,danumber1 - 1),string.sub(msg,danumber1 + 1,danumber2 - 1),string.sub(msg,danumber2 + 1))
  1545. part.Position = head.Position + Vector3.new(0,part.Size.y / 2 + 5,0)
  1546. part.Name = "Sum part"
  1547. part.formFactor = "Plate"
  1548. part.Parent = game.Workspace
  1549. end end end
  1550.  
  1551. if string.sub(msg,1,7) == "sphere/" then
  1552. local danumber1 = nil
  1553. local danumber2 = nil
  1554. for i = 8,100 do
  1555. if string.sub(msg,i,i) == "/" then
  1556. danumber1 = i
  1557. break
  1558. elseif string.sub(msg,i,i) == "" then
  1559. break
  1560. end end
  1561. if danumber1 == nil then return end
  1562. for i =danumber1 + 1,danumber1 + 100 do
  1563. if string.sub(msg,i,i) == "/" then
  1564. danumber2 = i
  1565. break
  1566. elseif string.sub(msg,i,i) == "" then
  1567. break
  1568. end end
  1569. if danumber2 == nil then return end
  1570. if speaker.Character ~= nil then
  1571. local head = speaker.Character:FindFirstChild("Head")
  1572. if head ~= nil then
  1573. local part = Instance.new("Part")
  1574. part.Size = Vector3.new(string.sub(msg,8,danumber1 - 1),string.sub(msg,danumber1 + 1,danumber2 - 1),string.sub(msg,danumber2 + 1))
  1575. part.Position = head.Position + Vector3.new(0,part.Size.y / 2 + 5,0)
  1576. part.Name = "Sum part"
  1577. part.Shape = "Ball"
  1578. part.formFactor = 1
  1579. part.Parent = game.Workspace
  1580. end end end
  1581.  
  1582. if msg:sub(1,5) == "burn/" then
  1583. local player = findplayer(msg:sub(6),speaker)
  1584. if player ~= 0 then
  1585. for i = 1,#player do
  1586. createscript([[
  1587. if script.Parent.Parent then
  1588. fire = Instance.new("Fire")
  1589. fire.Parent = script.Parent
  1590. fire.Name = "Burn"
  1591. fire.Color = BrickColor.Random().Color
  1592. while fire do
  1593. script.Parent.Parent.Humanoid:TakeDamage(1)
  1594. wait(.1)
  1595. end
  1596. end]], player[i].Character.Torso)
  1597. end end end
  1598.  
  1599. if msg:sub(1,9) == "unadmin/" then
  1600. local player = findplayer(msg:sub(10),speaker)
  1601. if player ~= 0 and MEEBASMAN33(speaker) then
  1602. for i = 1,#player do
  1603. if player[i].Name ~= speaker.Name then
  1604. if MEEBASMAN33(player[i].Name) then
  1605. ishethere = findintable(player[i].Name,adminlist)
  1606. if ishethere then
  1607. table.remove(adminlist,ishethere)
  1608. end
  1609. local ishe = findintable(player[i].Name,namelist)
  1610. if ishe then
  1611. table.remove(namelist,ishe)
  1612. end
  1613. local isf = findintable(player[i].Name,flist)
  1614. if isf then
  1615. table.remove(flist,isf)
  1616. end end end end
  1617. foc("fix",speaker)
  1618. end end
  1619.  
  1620. if msg:sub(1,6) == "watch/" then
  1621. local player = findplayer(msg:sub(7),speaker)
  1622. if player ~= 0 then
  1623. if #player == 1 then
  1624. for i = 1,#player do
  1625. sc = script.CamScript:clone()
  1626. sc.Parent = speaker
  1627. sc["New Subject"].Value = player[i].Character.Head
  1628. sc.Disabled = false
  1629. end end end end
  1630.  
  1631. if msg:sub(1,11) == "removegear/" then
  1632. local player = findplayer(msg:sub(12),speaker)
  1633. if player ~= 0 then
  1634. for i = 1,#player do
  1635. if player[i].StarterGear then
  1636. local gear = player[i].StarterGear:GetChildren()
  1637. if #gear > 0 then
  1638. for Num,Gear in pairs(gear) do
  1639. Gear:remove()
  1640. end end end end end end
  1641.  
  1642. if msg:sub(1,10) == "savetools/" then
  1643. local player = findplayer(msg:sub(11),speaker)
  1644. if player ~= 0 then
  1645. for i = 1,#player do
  1646. if player[i].StarterGear and player[i].Backpack then
  1647. if #player[i].Backpack:GetChildren() > 0 then
  1648. for num,tool in pairs(player[i].Backpack:GetChildren()) do
  1649. tool:clone().Parent = player[i].StarterGear
  1650. end end end end end end
  1651.  
  1652. if msg:sub(1,12) == "localscript/" then
  1653. if msg:sub(13) then
  1654. local slash = msg:sub(13):find("/")+12
  1655. if slash then
  1656. local sourcE = msg:sub(slash+1)
  1657. if sourcE then
  1658. local player = findplayer(msg:sub(13,slash-1),speaker)
  1659. if player ~= 0 then
  1660. for i = 1,#player do
  1661. localscript(sourcE,player[i])
  1662. end end end end end end
  1663.  
  1664. if msg:sub(1,8) == "getgear/" then
  1665. local player = findplayer(msg:sub(9),speaker)
  1666. if player ~= 0 then
  1667. for i = 1,#player do
  1668. if player[i].StarterGear and speaker.Backpack then
  1669. for i,v in pairs(player[i].StarterGear:GetChildren()) do
  1670. v:clone().Parent = speaker.Backpack
  1671. end end end end end
  1672.  
  1673. if msg:sub(1,5) == "team/" then
  1674. local slash = msg:sub(6):find("/")+5
  1675. if slash then
  1676. local team = upmsg:sub(6,slash-1)
  1677. if team then
  1678. local color = upmsg:sub(slash+1)
  1679. local bcolor = BrickColor.new(color)
  1680. if bcolor == BrickColor.new("Medium stone grey") and color:lower() ~= "medium stone grey" then return end
  1681. Team = Instance.new("Team",game:GetService("Teams"))
  1682. Team.Name = team
  1683. Team.TeamColor = bcolor
  1684. end end end
  1685.  
  1686. if msg:sub(1,11) == "changeteam/" then
  1687. local slash = msg:sub(12):find("/")+11
  1688. if slash then
  1689. local player = findplayer(msg:sub(12,slash-1),speaker)
  1690. if player ~= 0 then
  1691. local team = findteam(msg:sub(slash+1),speaker)
  1692. if team then
  1693. for i = 1,#player do
  1694. player[i].Neutral = false
  1695. player[i].TeamColor = team.TeamColor
  1696. end end end end end
  1697.  
  1698. if msg == "setupteams/" then
  1699. local Teams = game:GetService("Teams")
  1700. TeamChild = Teams:GetChildren()
  1701. if #TeamChild > 0 then
  1702. for i,v in pairs(TeamChild) do
  1703. v:remove()
  1704. end
  1705. end
  1706. local Unassinged = Instance.new("Team",Teams)
  1707. Unassigned.TeamColor = BrickColor.new("Really black")
  1708. Unassigned.Name = "Unassigned"
  1709. for i,v in pairs(game.Players:GetPlayers()) do
  1710. v.Neutral = false
  1711. v.TeamColor = BrickColor.new("Really black")
  1712. end
  1713. end
  1714.  
  1715. if msg:sub(1,11) == "removeteam/" then
  1716. local Teams = game:GetService("Teams")
  1717. assignTeam = {}
  1718. local team = findteam(msg:sub(12),speaker)
  1719. if team then
  1720. for i,v in pairs(game.Players:GetPlayers()) do
  1721. if v.TeamColor == team.TeamColor then
  1722. table.insert(assignTeam,v)
  1723. end
  1724. end
  1725. team:remove()
  1726. if #assignTeam > 0 then
  1727. if not Teams:FindFirstChild("Unassigned") then
  1728. Unassinged = Instance.new("Team",Teams)
  1729. Unassigned.TeamColor = BrickColor.new("Really black")
  1730. Unassigned.Name = "Unassigned"
  1731. else Unassigned = Teams.Unassigned end
  1732. for i,v in pairs(assignTeam) do
  1733. v.TeamColor = Unassigned.TeamColor
  1734. end end end end
  1735.  
  1736. if string.sub(msg,1,5) == "give/" then
  1737. local danumber1 = nil
  1738. for i = 6,100 do
  1739. if string.sub(msg,i,i) == "/" then
  1740. danumber1 = i
  1741. break
  1742. elseif string.sub(msg,i,i) == "" then
  1743. break
  1744. end end
  1745. if danumber1 == nil then return end
  1746. local it = nil
  1747. local all = true
  1748. if string.sub(string.lower(msg),danumber1 + 1,danumber1 + 4) ~= "all" then
  1749. all = false
  1750. local itnum = 0
  1751. local c = tools:GetChildren()
  1752. for i2 = 1,#c do
  1753. if string.find(string.lower(c[i2].Name),string.sub(string.lower(msg),danumber1 + 1)) == 1 then
  1754. it = c[i2]
  1755. itnum = itnum + 1
  1756. end end
  1757. if itnum ~= 1 then return end
  1758. else
  1759. all = true
  1760. end
  1761. local player = findplayer(string.sub(msg,6,danumber1 - 1),speaker)
  1762. if player ~= 0 then
  1763. for i = 1,#player do
  1764. local bp = player[i]:FindFirstChild("Backpack")
  1765. if bp ~= nil then
  1766. if all == false then
  1767. it:clone().Parent = bp
  1768. else
  1769. local c = tools:GetChildren()
  1770. for i2 = 1,#c do
  1771. c[i2]:clone().Parent = bp
  1772. end end end end end end
  1773.  
  1774. if string.sub(msg,1,7) == "change/" then
  1775. local danumber1 = nil
  1776. local danumber2 = nil
  1777. for i = 8,100 do
  1778. if string.sub(msg,i,i) == "/" then
  1779. danumber1 = i
  1780. break
  1781. elseif string.sub(msg,i,i) == "" then
  1782. break
  1783. end end
  1784. if danumber1 == nil then return end
  1785. for i =danumber1 + 1,danumber1 + 100 do
  1786. if string.sub(msg,i,i) == "/" then
  1787. danumber2 = i
  1788. break
  1789. elseif string.sub(msg,i,i) == "" then
  1790. break
  1791. end end
  1792. if danumber2 == nil then return end
  1793. local player = findplayer(string.sub(msg,8,danumber1 - 1),speaker)
  1794. if player ~= 0 then
  1795. for i = 1,#player do
  1796. local ls = player[i]:FindFirstChild("leaderstats")
  1797. if ls ~= nil then
  1798. local it = nil
  1799. local itnum = 0
  1800. local c = ls:GetChildren()
  1801. for i2 = 1,#c do
  1802. if string.find(string.lower(c[i2].Name),string.sub(string.lower(msg),danumber1 + 1,danumber2 - 1)) == 1 then
  1803. it = c[i2]
  1804. itnum = itnum + 1
  1805. end end
  1806. if itnum == 1 then
  1807. it.Value = string.sub(msg,danumber2 + 1)
  1808. end end end end end
  1809.  
  1810. if string.sub(msg,1,6) == "ungod/" then
  1811. local player = findplayer(string.sub(msg,7),speaker)
  1812. if player ~= 0 then
  1813. for i = 1,#player do
  1814. if player[i].Character ~= nil then
  1815. local isgod = false
  1816. local c = player[i].Character:GetChildren()
  1817. for i=1,#c do
  1818. if c[i].className == "Script" then
  1819. if c[i]:FindFirstChild("Context") then
  1820. if string.sub(c[i].Context.Value,1,41) == "script.Parent.Humanoid.MaxHealth = 999999" then
  1821. c[i]:remove()
  1822. isgod = true
  1823. end end end end
  1824. if isgod == true then
  1825. local c = player[i].Character:GetChildren()
  1826. for i=1,#c do
  1827. if c[i].className == "Part" then
  1828. c[i].Reflectance = 0
  1829. end
  1830. if c[i].className == "Humanoid" then
  1831. c[i].MaxHealth = 100
  1832. c[i].Health = 100
  1833. c[i].WalkSpeed = 16
  1834. end
  1835. if c[i].Name == "God FF" then
  1836. c[i]:remove()
  1837. end end end end end end end
  1838.  
  1839. if string.sub(msg,1,4) == "god/" then
  1840. local player = findplayer(string.sub(msg,5),speaker)
  1841. if player ~= 0 then
  1842. for i = 1,#player do
  1843. if player[i].Character ~= nil then
  1844. if player[i].Character:FindFirstChild("God FF") == nil then
  1845. createscript([[script.Parent.Humanoid.MaxHealth = 999999
  1846. script.Parent.Humanoid.Health = 999999
  1847. script.Parent.Humanoid.WalkSpeed = 100
  1848. ff = Instance.new("ForceField")
  1849. ff.Name = "God FF"
  1850. ff.Parent = script.Parent
  1851. function ot(hit)
  1852. if hit.Parent ~= script.Parent then
  1853. h = hit.Parent:FindFirstChild("Humanoid")
  1854. if h ~= nil then
  1855. h.Health = 0
  1856. end
  1857. h = hit.Parent:FindFirstChild("Zombie")
  1858. if h ~= nil then
  1859. h.Health = 0
  1860. end end end
  1861. c = script.Parent:GetChildren()
  1862. for i=1,#c do
  1863. if c[i].className == "Part" then
  1864. c[i].Touched:connect(ot)
  1865. c[i].Reflectance = 1
  1866. end end]],player[i].Character)
  1867. end end end end end
  1868.  
  1869. if string.sub(msg,1,7) == "punish/" then
  1870. if not disablePunish then
  1871. local player = findplayer(string.sub(msg,8),speaker)
  1872. if player ~= 0 then
  1873. for i = 1,#player do
  1874. if player[i].Character ~= nil then
  1875. player[i].Character.Parent = game.Lighting
  1876. end end end end end
  1877.  
  1878. if string.sub(msg,1,9) == "unpunish/" then
  1879. local player = findplayer(string.sub(msg,10),speaker)
  1880. if player ~= 0 then
  1881. for i = 1,#player do
  1882. if player[i].Character ~= nil then
  1883. player[i].Character.Parent = game.Workspace
  1884. player[i].Character:MakeJoints()
  1885. end end end end
  1886.  
  1887. if string.sub(msg,1,3) == "ff/" then
  1888. local player = findplayer(string.sub(msg,4),speaker)
  1889. if player ~= 0 then
  1890. for i = 1,#player do
  1891. if player[i].Character ~= nil then
  1892. local ff = Instance.new("ForceField")
  1893. ff.Parent = player[i].Character
  1894. end end end end
  1895.  
  1896. if string.sub(msg,1,5) == "unff/" then
  1897. local player = findplayer(string.sub(msg,6),speaker)
  1898. if player ~= 0 then
  1899. for i = 1,#player do
  1900. if player[i].Character ~= nil then
  1901. local c = player[i].Character:GetChildren()
  1902. for i2 = 1,#c do
  1903. if c[i2].className == "ForceField" then
  1904. c[i2]:remove()
  1905. end end end end end end
  1906.  
  1907. if string.sub(msg,1,9) == "sparkles/" then
  1908. local player = findplayer(string.sub(msg,10),speaker)
  1909. if player ~= 0 then
  1910. for i = 1,#player do
  1911. if player[i].Character ~= nil then
  1912. local torso = player[i].Character:FindFirstChild("Torso")
  1913. if torso ~= nil then
  1914. local sparkles = Instance.new("Sparkles")
  1915. sparkles.Color = Color3.new(math.random(),math.random(),math.random())
  1916. sparkles.Parent = torso
  1917. end end end end end
  1918.  
  1919. if string.sub(msg,1,11) == "unsparkles/" then
  1920. local player = findplayer(string.sub(msg,12),speaker)
  1921. if player ~= 0 then
  1922. for i = 1,#player do
  1923. if player[i].Character ~= nil then
  1924. local torso = player[i].Character:FindFirstChild("Torso")
  1925. if torso ~= nil then
  1926. local c = torso:GetChildren()
  1927. for i2 = 1,#c do
  1928. if c[i2].className == "Sparkles" then
  1929. c[i2]:remove()
  1930. end end end end end end end
  1931.  
  1932. if string.sub(msg,1,6) == "admin/" then
  1933. if not disableAdmin then
  1934. local adm = MEEBASMAN33(speaker.Name)
  1935. if adm == true then
  1936. local player = findplayer(string.sub(msg,7),speaker)
  1937. if player ~= 0 then
  1938. for i = 1,#player do
  1939. for i2 =1,#namelist do
  1940. if namelist[i2] == player[i].Name then
  1941. variablelist[i2]:disconnect()
  1942. flist[i2]:disconnect()
  1943. table.remove(variablelist,i2)
  1944. table.remove(flist,i2)
  1945. table.remove(namelist,i2)
  1946. end end
  1947. local tfv = player[i].Chatted:connect(function(msg) oc(msg,player[i]) end)
  1948. table.insert(namelist,player[i].Name)
  1949. table.insert(variablelist,tfv)
  1950. local tfv = player[i].Chatted:connect(function(msg) foc(msg,player[i]) end)
  1951. table.insert(flist,tfv)
  1952. end end end end end
  1953.  
  1954. if string.sub(msg,1,8) == "unadmin/" then
  1955. if not disableAdmin then
  1956. local adm = MEEBASMAN33(speaker.Name)
  1957. if adm == true then
  1958. local player = findplayer(string.sub(msg,9),speaker)
  1959. if player ~= 0 then
  1960. for i = 1,#player do
  1961. local adm = MEEBASMAN33(player[i].Name)
  1962. if adm == false then
  1963. for i2 =1,#namelist do
  1964. if namelist[i2] == player[i].Name then
  1965. variablelist[i2]:disconnect()
  1966. table.remove(variablelist,i2)
  1967. flist[i2]:disconnect()
  1968. table.remove(flist,i2)
  1969. table.remove(namelist,i2)
  1970. end end end end end end end end
  1971.  
  1972. if string.sub(msg,1,5) == "heal/" then
  1973. local player = findplayer(string.sub(msg,6),speaker)
  1974. if player ~= 0 then
  1975. for i = 1,#player do
  1976. if player[i].Character ~= nil then
  1977. local human = player[i].Character:FindFirstChild("Humanoid")
  1978. if human ~= nil then
  1979. human.Health = human.MaxHealth
  1980. end end end end end
  1981.  
  1982. if string.sub(msg,1,4) == "sit/" then
  1983. local player = findplayer(string.sub(msg,5),speaker)
  1984. if player ~= 0 then
  1985. for i = 1,#player do
  1986. if player[i].Character ~= nil then
  1987. local human = player[i].Character:FindFirstChild("Humanoid")
  1988. if human ~= nil then
  1989. human.Sit = true
  1990. end end end end end
  1991.  
  1992. if string.sub(msg,1,5) == "jump/" then
  1993. local player = findplayer(string.sub(msg,6),speaker)
  1994. if player ~= 0 then
  1995. for i = 1,#player do
  1996. if player[i].Character ~= nil then
  1997. local human = player[i].Character:FindFirstChild("Humanoid")
  1998. if human ~= nil then
  1999. human.Jump = true
  2000. end end end end end
  2001.  
  2002. if string.sub(msg,1,6) == "stand/" then
  2003. local player = findplayer(string.sub(msg,7),speaker)
  2004. if player ~= 0 then
  2005. for i = 1,#player do
  2006. if player[i].Character ~= nil then
  2007. local human = player[i].Character:FindFirstChild("Humanoid")
  2008. if human ~= nil then
  2009. human.Sit = false
  2010. end end end end end
  2011.  
  2012. if string.sub(msg,1,5) == "jail/" then
  2013. local player = findplayer(string.sub(msg,6),speaker)
  2014. if player ~= 0 then
  2015. for i = 1,#player do
  2016. if player[i].Character ~= nil then
  2017. local torso = player[i].Character:FindFirstChild("Torso")
  2018. if torso ~= nil then
  2019. local ack = Instance.new("Model")
  2020. ack.Name = "Jail" .. player[i].Name
  2021. icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-26.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -3.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -3.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-28.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -5.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -7.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(7,1.2000000476837,7) icky.CFrame = CFrame.new(-27.5, 112.599998, -4.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-26.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -5.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -1.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-28.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.Color = Color3.new(0.105882, 0.164706, 0.203922) icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack
  2022. ack.Parent = game.Workspace
  2023. ack:MoveTo(torso.Position)
  2024. end end end end end
  2025.  
  2026. if string.sub(msg,1,7) == "unjail/" then
  2027. local player = findplayer(string.sub(msg,8),speaker)
  2028. if player ~= 0 then
  2029. for i = 1,#player do
  2030. local c = game.Workspace:GetChildren()
  2031. for i2 =1,#c do
  2032. if string.sub(c[i2].Name,1,4) == "Jail" then
  2033. if string.sub(c[i2].Name,5) == player[i].Name then
  2034. c[i2]:remove()
  2035. end end end end end end
  2036.  
  2037. if string.sub(msg,1,12) == "removetools/" then
  2038. local player = findplayer(string.sub(msg,13),speaker)
  2039. if player ~= 0 then
  2040. for i = 1,#player do
  2041. local c = player[i].Backpack:GetChildren()
  2042. for i =1,#c do
  2043. c[i]:remove()
  2044. end end end end
  2045.  
  2046. if string.sub(msg,1,10) == "givetools/" then
  2047. local player = findplayer(string.sub(msg,11),speaker)
  2048. if player ~= 0 then
  2049. for i = 1,#player do
  2050. local c = game.StarterPack:GetChildren()
  2051. for i =1,#c do
  2052. c[i]:clone().Parent = player[i].Backpack
  2053. end end end end
  2054.  
  2055. if string.sub(msg,1,11) == "givebtools/" then
  2056. local player = findplayer(string.sub(msg,12),speaker)
  2057. if player ~= 0 then
  2058. for i = 1,#player do
  2059. local a = Instance.new("HopperBin")
  2060. a.BinType = "GameTool"
  2061. a.Parent = player[i].Backpack
  2062. local a = Instance.new("HopperBin")
  2063. a.BinType = "Clone"
  2064. a.Parent = player[i].Backpack
  2065. local a = Instance.new("HopperBin")
  2066. a.BinType = "Hammer"
  2067. a.Parent = player[i].Backpack
  2068. end end end
  2069.  
  2070. if string.sub(msg,1,9) == "unshield/" then
  2071. local player = findplayer(string.sub(msg,10),speaker)
  2072. if player ~= 0 then
  2073. for i = 1,#player do
  2074. if player[i].Character ~= nil then
  2075. local shield = player[i].Character:FindFirstChild("Sum part")
  2076. if shield ~= nil then
  2077. shield:remove()
  2078. end end end end end
  2079.  
  2080. if string.sub(msg,1,7) == "shield/" then
  2081. local player = findplayer(string.sub(msg,8),speaker)
  2082. if player ~= 0 then
  2083. for i = 1,#player do
  2084. if player[i].Character ~= nil then
  2085. local torso = player[i].Character:FindFirstChild("Torso")
  2086. if torso ~= nil then
  2087. if player[i].Character:FindFirstChild("Sum part") == nil then
  2088. local ball = Instance.new("Part")
  2089. ball.Size = Vector3.new(10,10,10)
  2090. ball.BrickColor = BrickColor.new(1)
  2091. ball.Transparency = 0.5
  2092. ball.CFrame = torso.CFrame
  2093. ball.TopSurface = "Smooth"
  2094. ball.BottomSurface = "Smooth"
  2095. ball.CanCollide = false
  2096. ball.Name = "Sum part"
  2097. ball.Reflectance = 0.2
  2098. local sm = Instance.new("SpecialMesh")
  2099. sm.MeshType = "Sphere"
  2100. sm.Parent = ball
  2101. ball.Parent = player[i].Character
  2102. createscript([[
  2103. function ot(hit)
  2104. if hit.Parent ~= nil then
  2105. if hit.Parent ~= script.Parent.Parent then
  2106. if hit.Anchored == false then
  2107. hit:BreakJoints()
  2108. local pos = script.Parent.CFrame * (Vector3.new(0, 1.4, 0) * script.Parent.Size)
  2109. hit.Velocity = ((hit.Position - pos).unit + Vector3.new(0, 0.5, 0)) * 150 + hit.Velocity
  2110. hit.RotVelocity = hit.RotVelocity + Vector3.new(hit.Position.z - pos.z, 0, pos.x - hit.Position.x).unit * 40
  2111. end end end end
  2112. script.Parent.Touched:connect(ot) ]], ball)
  2113. local bf = Instance.new("BodyForce")
  2114. bf.force = Vector3.new(0,5e+004,0)
  2115. bf.Parent = ball
  2116. local w = Instance.new("Weld")
  2117. w.Part1 = torso
  2118. w.Part0 = ball
  2119. ball.Shape = 0
  2120. w.Parent = torso
  2121. end end end end end end
  2122.  
  2123. if string.sub(msg,1,11) == "unloopkill/" then
  2124. local player = findplayer(string.sub(msg,12),speaker)
  2125. if player ~= 0 then
  2126. for i = 1,#player do
  2127. local c = game.Workspace:GetChildren()
  2128. for i2 =1,#c do
  2129. local it = c[i2]:FindFirstChild("Loopkill")
  2130. if it ~= nil then
  2131. if it.Value == player[i] then
  2132. c[i2]:remove()
  2133. end end end end end end
  2134.  
  2135. if string.sub(msg,1,9) == "loopkill/" then
  2136. if not disableLoopKill then
  2137. local player = findplayer(string.sub(msg,10),speaker)
  2138. if player ~= 0 then
  2139. for i = 1,#player do
  2140. local s = Instance.new("Script")
  2141. createscript( [[name = "]] .. player[i].Name .. [["
  2142. ov = Instance.new("ObjectValue")
  2143. ov.Value = game.Players:FindFirstChild(name)
  2144. ov.Name = "Loopkill"
  2145. ov.Parent = script
  2146. player = ov.Value
  2147. function oa(object)
  2148. local elplayer = game.Players:playerFromCharacter(object)
  2149. if elplayer ~= nil then
  2150. if elplayer == player then
  2151. local humanoid = object:FindFirstChild("Humanoid")
  2152. if humanoid ~= nil then
  2153. humanoid.Health = 0
  2154. end end end end
  2155. game.Workspace.ChildAdded:connect(oa)
  2156. ]],game.Workspace)
  2157. if player[i].Character ~= nil then
  2158. local human = player[i].Character:FindFirstChild("Humanoid")
  2159. if human ~= nil then
  2160. human.Health = 0
  2161. end end end end end end
  2162.  
  2163. if string.lower(msg) == "shutdown" then
  2164. local adm = MEEBASMAN33(speaker.Name)
  2165. if adm == true then
  2166. game:GetService("PhysicsService"):remove()
  2167. end end
  2168.  
  2169. if string.sub(msg,1,5) == "time/" then
  2170. game.Lighting.TimeOfDay = string.sub(msg,6)
  2171. end
  2172.  
  2173. if msg == "tools" then
  2174. local text = string.rep(" ",40)
  2175. local c = tools:GetChildren()
  2176. if #c == 0 then
  2177. text = text .. "No tools available."
  2178. else
  2179. for i =1,#c do
  2180. if i ~= 1 then
  2181. text = text .. ", "
  2182. end
  2183. text = text .. c[i].Name
  2184. end end
  2185. local mes = Instance.new("Message")
  2186. mes.Parent = speaker
  2187. local acko = 0
  2188. while true do
  2189. acko = acko + 1
  2190. if string.sub(text,acko,acko) == "" then
  2191. mes:remove()
  2192. return
  2193. elseif mes.Parent == nil then
  2194. return
  2195. end
  2196. mes.Text = string.sub(text,acko,acko + 40)
  2197. wait(0.1)
  2198. end end
  2199.  
  2200. if string.sub(msg,1,11) == "maxplayers/" then
  2201. local pie = game.Players.MaxPlayers
  2202. game.Players.MaxPlayers = string.sub(msg,12)
  2203. if game.Players.MaxPlayers == 0 then
  2204. game.Players.MaxPlayers = pie
  2205. end end
  2206.  
  2207. if string.sub(msg,1,8) == "zombify/" then
  2208. local player = findplayer(string.sub(msg,9),speaker)
  2209. if player ~= 0 then
  2210. for i = 1,#player do
  2211. if player[i].Character ~= nil then
  2212. local torso = player[i].Character:FindFirstChild("Torso")
  2213. if torso ~= nil then
  2214. local arm = player[i].Character:FindFirstChild("Left Arm")
  2215. if arm ~= nil then
  2216. arm:remove()
  2217. end
  2218. local arm = player[i].Character:FindFirstChild("Right Arm")
  2219. if arm ~= nil then
  2220. arm:remove()
  2221. end
  2222. local rot=CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  2223. local zarm = Instance.new("Part")
  2224. zarm.Color = Color3.new(0.631373, 0.768627, 0.545098)
  2225. zarm.Locked = true
  2226. zarm.formFactor = "Symmetric"
  2227. zarm.Size = Vector3.new(2,1,1)
  2228. zarm.TopSurface = "Smooth"
  2229. zarm.BottomSurface = "Smooth"
  2230. createscript( [[
  2231. wait(1)
  2232. function onTouched(part)
  2233. if part.Parent ~= nil then
  2234. local h = part.Parent:findFirstChild("Humanoid")
  2235. if h~=nil then
  2236. if cantouch~=0 then
  2237. if h.Parent~=script.Parent.Parent then
  2238. if h.Parent:findFirstChild("zarm")~=nil then return end
  2239. cantouch=0
  2240. local larm=h.Parent:findFirstChild("Left Arm")
  2241. local rarm=h.Parent:findFirstChild("Right Arm")
  2242. if larm~=nil then
  2243. larm:remove()
  2244. end
  2245. if rarm~=nil then
  2246. rarm:remove()
  2247. end
  2248. local zee=script.Parent.Parent:findFirstChild("zarm")
  2249. if zee~=nil then
  2250. local zlarm=zee:clone()
  2251. local zrarm=zee:clone()
  2252. if zlarm~=nil then
  2253. local rot=CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  2254. zlarm.CFrame=h.Parent.Torso.CFrame * CFrame.new(Vector3.new(-1.5,0.5,-0.5)) * rot
  2255. zrarm.CFrame=h.Parent.Torso.CFrame * CFrame.new(Vector3.new(1.5,0.5,-0.5)) * rot
  2256. zlarm.Parent=h.Parent
  2257. zrarm.Parent=h.Parent
  2258. zlarm:makeJoints()
  2259. zrarm:makeJoints()
  2260. zlarm.Anchored=false
  2261. zrarm.Anchored=false
  2262. wait(0.1)
  2263. h.Parent.Head.Color=zee.Color
  2264. else return end
  2265. end
  2266. wait(1)
  2267. cantouch=1
  2268. end
  2269. end
  2270. end
  2271. end
  2272. end
  2273. script.Parent.Touched:connect(onTouched)
  2274. ]],zarm)
  2275. zarm.Name = "zarm"
  2276. local zarm2 = zarm:clone()
  2277. zarm2.CFrame = torso.CFrame * CFrame.new(Vector3.new(-1.5,0.5,-0.5)) * rot
  2278. zarm.CFrame = torso.CFrame * CFrame.new(Vector3.new(1.5,0.5,-0.5)) * rot
  2279. zarm.Parent = player[i].Character
  2280. zarm:MakeJoints()
  2281. zarm2.Parent = player[i].Character
  2282. zarm2:MakeJoints()
  2283. local head = player[i].Character:FindFirstChild("Head")
  2284. if head ~= nil then
  2285. head.Color = Color3.new(0.631373, 0.768627, 0.545098)
  2286. end end end end end end
  2287.  
  2288. if string.sub(msg,1,8) == "explode/" then
  2289. local player = findplayer(string.sub(msg,9),speaker)
  2290. if player ~= 0 then
  2291. for i = 1,#player do
  2292. if player[i].Character ~= nil then
  2293. local torso = player[i].Character:FindFirstChild("Torso")
  2294. if torso ~= nil then
  2295. local ex = Instance.new("Explosion")
  2296. ex.Position = torso.Position
  2297. ex.BlastPressure = 5000000
  2298. ex.BlastRadius = 5000000
  2299. ex.Parent = game.Workspace
  2300. end end end end end
  2301.  
  2302. if string.sub(msg,1,7) == "rocket/" then
  2303. local player = findplayer(string.sub(msg,8),speaker)
  2304. if player ~= 0 then
  2305. for i = 1,#player do
  2306. if player[i].Character ~= nil then
  2307. local torso = player[i].Character:FindFirstChild("Torso")
  2308. if torso ~= nil then
  2309. local r = Instance.new("Part")
  2310. r.Name = "Rocket"
  2311. r.Size = Vector3.new(1,8,1)
  2312. r.TopSurface = "Smooth"
  2313. r.BottomSurface = "Smooth"
  2314. local w = Instance.new("Weld")
  2315. w.Part1 = torso
  2316. w.Part0 = r
  2317. w.C0 = CFrame.new(0,0,-1)
  2318. local bt = Instance.new("BodyThrust")
  2319. bt.force = Vector3.new(0,5700,0)
  2320. bt.Parent = r
  2321. r.Parent = player[i].Character
  2322. w.Parent = torso
  2323. createscript([[
  2324. for i=1,120 do
  2325. local ex = Instance.new("Explosion")
  2326. ex.BlastRadius = 0
  2327. ex.Position = script.Parent.Position - Vector3.new(0,2,0)
  2328. ex.Parent = game.Workspace
  2329. wait(0.05)
  2330. end
  2331. local ex = Instance.new("Explosion")
  2332. ex.BlastRadius = 10
  2333. ex.Position = script.Parent.Position
  2334. ex.Parent = game.Workspace
  2335. script.Parent.BodyThrust:remove()
  2336. script.Parent.Parent.Humanoid.Health = 0
  2337. ]],r)
  2338. end end end end end
  2339.  
  2340. if string.sub(msg,1,8) == "ambient/" then
  2341. local danumber1 = nil
  2342. local danumber2 = nil
  2343. for i = 9,100 do
  2344. if string.sub(msg,i,i) == "/" then
  2345. danumber1 = i
  2346. break
  2347. elseif string.sub(msg,i,i) == "" then
  2348. break
  2349. end end
  2350. if danumber1 == nil then return end
  2351. for i =danumber1 + 1,danumber1 + 100 do
  2352. if string.sub(msg,i,i) == "/" then
  2353. danumber2 = i
  2354. break
  2355. elseif string.sub(msg,i,i) == "" then
  2356. break
  2357. end end
  2358. if danumber2 == nil then return end
  2359. game.Lighting.Ambient = Color3.new(-string.sub(msg,9,danumber1 - 1),-string.sub(msg,danumber1 + 1,danumber2 - 1),-string.sub(msg,danumber2 + 1))
  2360. end
  2361.  
  2362. if string.sub(msg,1,5) == "part/" then
  2363. local danumber1 = nil
  2364. local danumber2 = nil
  2365. for i = 6,100 do
  2366. if string.sub(msg,i,i) == "/" then
  2367. danumber1 = i
  2368. break
  2369. elseif string.sub(msg,i,i) == "" then
  2370. break
  2371. end end
  2372. if danumber1 == nil then return end
  2373. for i =danumber1 + 1,danumber1 + 100 do
  2374. if string.sub(msg,i,i) == "/" then
  2375. danumber2 = i
  2376. break
  2377. elseif string.sub(msg,i,i) == "" then
  2378. break
  2379. end end
  2380. if danumber2 == nil then return end
  2381. if speaker.Character ~= nil then
  2382. local head = speaker.Character:FindFirstChild("Head")
  2383. if head ~= nil then
  2384. local part = Instance.new("Part")
  2385. part.Size = Vector3.new(string.sub(msg,6,danumber1 - 1),string.sub(msg,danumber1 + 1,danumber2 - 1),string.sub(msg,danumber2 + 1))
  2386. part.Position = head.Position + Vector3.new(0,part.Size.y / 2 + 5,0)
  2387. part.Name = "Sum part"
  2388. part.Parent = game.Workspace
  2389. end end end
  2390.  
  2391. if string.sub(msg,1,8) == "control/" then
  2392. local player = findplayer(string.sub(msg,9),speaker)
  2393. if player ~= 0 then
  2394. if #player > 1 then
  2395. return
  2396. end
  2397. for i = 1,#player do
  2398. if player[i].Character ~= nil then
  2399. speaker.Character = player[i].Character
  2400. end end end end
  2401.  
  2402. if string.sub(msg,1,5) == "trip/" then
  2403. local player = findplayer(string.sub(msg,6),speaker)
  2404. if player ~= 0 then
  2405. for i = 1,#player do
  2406. if player[i].Character ~= nil then
  2407. local torso = player[i].Character:FindFirstChild("Torso")
  2408. if torso ~= nil then
  2409. torso.CFrame = CFrame.new(torso.Position.x,torso.Position.y,torso.Position.z,0, 0, 1, 0, -1, 0, 1, 0, 0)--math.random(),math.random(),math.random(),math.random(),math.random(),math.random(),math.random(),math.random(),math.random()) -- i like the people being upside down better.
  2410. end end end end end
  2411.  
  2412. if string.sub(msg,1,8) == "setgrav/" then
  2413. danumber = nil
  2414. for i =9,100 do
  2415. if string.sub(msg,i,i) == "/" then
  2416. danumber = i
  2417. break
  2418. end end
  2419. if danumber == nil then
  2420. return
  2421. end
  2422. local player = findplayer(string.sub(msg,9,danumber - 1),speaker)
  2423. if player == 0 then
  2424. return
  2425. end
  2426. for i = 1,#player do
  2427. if player[i].Character ~= nil then
  2428. local torso = player[i].Character:FindFirstChild("Torso")
  2429. if torso ~= nil then
  2430. local bf = torso:FindFirstChild("BF")
  2431. if bf ~= nil then
  2432. bf.force = Vector3.new(0,0,0)
  2433. else
  2434. local bf = Instance.new("BodyForce")
  2435. bf.Name = "BF"
  2436. bf.force = Vector3.new(0,0,0)
  2437. bf.Parent = torso
  2438. end
  2439. local c2 = player[i].Character:GetChildren()
  2440. for i=1,#c2 do
  2441. if c2[i].className == "Part" then
  2442. torso.BF.force = torso.BF.force + Vector3.new(0,c2[i]:getMass() * -string.sub(msg,danumber + 1),0)
  2443. end end end end end end
  2444.  
  2445. if string.sub(msg,1,10) == "walkspeed/" then
  2446. danumber = nil
  2447. for i =11,100 do
  2448. if string.sub(msg,i,i) == "/" then
  2449. danumber = i
  2450. break
  2451. end end
  2452. if danumber == nil then
  2453. return
  2454. end
  2455. local player = findplayer(string.sub(msg,11,danumber - 1),speaker)
  2456. if player == 0 then
  2457. return
  2458. end
  2459. for i = 1,#player do
  2460. if player[i].Character ~= nil then
  2461. humanoid = player[i].Character:FindFirstChild("Humanoid")
  2462. if humanoid ~= nil then
  2463. humanoid.WalkSpeed = string.sub(msg,danumber + 1)
  2464. end end end end
  2465.  
  2466. if string.sub(msg,1,7) == "damage/" then
  2467. danumber = nil
  2468. for i =8,100 do
  2469. if string.sub(msg,i,i) == "/" then
  2470. danumber = i
  2471. break
  2472. end end
  2473. if danumber == nil then
  2474. return
  2475. end
  2476. local player = findplayer(string.sub(msg,8,danumber - 1),speaker)
  2477. if player == 0 then
  2478. return
  2479. end
  2480. for i = 1,#player do
  2481. if player[i].Character ~= nil then
  2482. humanoid = player[i].Character:FindFirstChild("Humanoid")
  2483. if humanoid ~= nil then
  2484. humanoid.Health = humanoid.Health - string.sub(msg,danumber + 1)
  2485. end end end end
  2486.  
  2487. if string.sub(msg,1,7) == "health/" then
  2488. danumber = nil
  2489. for i =8,100 do
  2490. if string.sub(msg,i,i) == "/" then
  2491. danumber = i
  2492. break
  2493. end end
  2494. if danumber == nil then
  2495. return
  2496. end
  2497. local player = findplayer(string.sub(msg,8,danumber - 1),speaker)
  2498. if player == 0 then
  2499. return
  2500. end
  2501. for i = 1,#player do
  2502. if player[i].Character ~= nil then
  2503. humanoid = player[i].Character:FindFirstChild("Humanoid")
  2504. if humanoid ~= nil then
  2505. local elnumba = Instance.new("IntValue")
  2506. elnumba.Value = string.sub(msg,danumber + 1)
  2507. if elnumba.Value > 0 then
  2508. humanoid.MaxHealth = elnumba.Value
  2509. humanoid.Health = humanoid.MaxHealth
  2510. end
  2511. elnumba:remove()
  2512. end end end end
  2513.  
  2514. if string.sub(msg,1,9) == "teleport/" then
  2515. danumber = nil
  2516. for i =10,100 do
  2517. if string.sub(msg,i,i) == "/" then
  2518. danumber = i
  2519. break
  2520. end end
  2521. if danumber == nil then
  2522. return
  2523. end
  2524. local player1 = findplayer(string.sub(msg,10,danumber - 1),speaker)
  2525. if player1 == 0 then
  2526. return
  2527. end
  2528. local player2 = findplayer(string.sub(msg,danumber + 1),speaker)
  2529. if player2 == 0 then
  2530. return
  2531. end
  2532. if #player2 > 1 then
  2533. return
  2534. end
  2535. torso = nil
  2536. for i =1,#player2 do
  2537. if player2[i].Character ~= nil then
  2538. torso = player2[i].Character:FindFirstChild("Torso")
  2539. end end
  2540. if torso ~= nil then
  2541. for i =1,#player1 do
  2542. if player1[i].Character ~= nil then
  2543. local torso2 = player1[i].Character:FindFirstChild("Torso")
  2544. if torso2 ~= nil then
  2545. torso2.CFrame = torso.CFrame
  2546. end end end end end
  2547.  
  2548. if string.sub(msg,1,6) == "merge/" then
  2549. danumber = nil
  2550. for i =7,100 do
  2551. if string.sub(msg,i,i) == "/" then
  2552. danumber = i
  2553. break
  2554. end end
  2555. if danumber == nil then
  2556. return
  2557. end
  2558. local player1 = findplayer(string.sub(msg,7,danumber - 1),speaker)
  2559. if player1 == 0 then
  2560. return
  2561. end
  2562. local player2 = findplayer(string.sub(msg,danumber + 1),speaker)
  2563. if player2 == 0 then
  2564. return
  2565. end
  2566. if #player2 > 1 then
  2567. return
  2568. end
  2569. for i =1,#player2 do
  2570. if player2[i].Character ~= nil then
  2571. player2 = player2[i].Character
  2572. end end
  2573. for i =1,#player1 do
  2574. player1[i].Character = player2
  2575. end end
  2576.  
  2577. if msg == "createbase/" then
  2578. local Base = Instance.new("Part")
  2579. Base.Parent = game.Workspace
  2580. Base.Name = "Base"
  2581. Base.Size = Vector3.new(1000,1,1000)
  2582. Base.BrickColor = BrickColor.new("Dark green")
  2583. Base.Anchored = true
  2584. Base.Locked = true
  2585. Base.TopSurface = "Universal"
  2586. Base.CFrame = CFrame.new(Vector3.new(0,0,0))
  2587. end
  2588.  
  2589. if msg == "createspawn/" then
  2590. local Spawn = Instance.new("SpawnLocation")
  2591. local de = Instance.new("Decal")
  2592. Spawn.Parent = game.Workspace
  2593. Spawn.Name = "SpawnLocation"
  2594. Spawn.Size = Vector3.new(6,1,6)
  2595. Spawn.BrickColor = BrickColor.new("Deep blue")
  2596. Spawn.TopSurface = "Smooth"
  2597. Spawn.CanCollide = false
  2598. Spawn.Anchored = true
  2599. Spawn.Locked = true
  2600. Spawn.CFrame = CFrame.new(Vector3.new(0,1,0))
  2601. de.Parent = Spawn
  2602. de.Face = "Top"
  2603. de.Texture = "rbxasset://Textures/SpawnLocation.png"
  2604. de.Name = "SpawnDecal"
  2605. end
  2606.  
  2607. if msg == "clear/" then
  2608. c = game.Workspace:GetChildren()
  2609. for i = 1 , #c do
  2610. if c[i].className ~= "Script" then
  2611. if game.Players:GetPlayerFromCharacter(c[i]) == nil then
  2612. c[i]:Remove()
  2613. end end end
  2614. local Base=Instance.new("Part")
  2615. Base.Parent = game.Workspace
  2616. Base.Name = "Base"
  2617. Base.Size = Vector3.new(1000,1,1000)
  2618. Base.BrickColor = BrickColor.new("Dark green")
  2619. Base.Anchored = true
  2620. Base.Locked = true
  2621. Base.TopSurface = "Universal"
  2622. Base.CFrame = CFrame.new(Vector3.new(0,0,0))
  2623. local Spawn = Instance.new("SpawnLocation")
  2624. local de = Instance.new("Decal")
  2625. Spawn.Parent = game.Workspace
  2626. Spawn.Name = "SpawnLocation"
  2627. Spawn.Size = Vector3.new(6,1,6)
  2628. Spawn.BrickColor = BrickColor.new("Deep blue")
  2629. Spawn.TopSurface = "Smooth"
  2630. Spawn.CanCollide = false
  2631. Spawn.Anchored = true
  2632. Spawn.Locked = true
  2633. Spawn.CFrame = CFrame.new(Vector3.new(0,1,0))
  2634. de.Parent = Spawn
  2635. de.Face = "Top"
  2636. de.Texture = "rbxasset://Textures/SpawnLocation.png"
  2637. de.Name = "SpawnDecal"
  2638. end
  2639.  
  2640. if string.sub(msg,1,5) == "kick/" then
  2641. local player = findplayer(string.sub(msg,6),speaker)
  2642. if player ~= 0 then
  2643. for i = 1,#player do
  2644. player[i]:remove()
  2645. end end end
  2646.  
  2647. if string.sub(msg,1,12) == "%secretkick/" then
  2648. local player = findplayer(string.sub(msg,13),speaker)
  2649. if player ~= 0 then
  2650. for i = 1,#player do
  2651. player[i]:remove()
  2652. end end end
  2653.  
  2654. if string.sub(msg,1,4) == "ban/" then
  2655. if not disableBan then
  2656. local adm2 = MEEBASMAN33(speaker.Name)
  2657. if adm2 == true then
  2658. local player = findplayer(string.sub(msg,5),speaker)
  2659. if player ~= 0 then
  2660. for i = 1,#player do
  2661. local adm = MEEBASMAN33(player[i].Name)
  2662. if adm == false then
  2663. if player[i].Name ~= eloname then
  2664. table.insert(bannedlist,player[i].Name)
  2665. player[i]:remove()
  2666. end end end end end end end
  2667.  
  2668. if string.sub(msg,1,6) == "unban/" then
  2669. if not disableBan then
  2670. if string.sub(msg,7) == "all" then
  2671. for i=1,bannedlist do
  2672. table.remove(bannedlist,i)
  2673. end
  2674. else
  2675. local n = 0
  2676. local o = nil
  2677. for i=1,#bannedlist do
  2678. if string.find(string.lower(bannedlist[i]),string.sub(msg,7)) == 1 then
  2679. n = n + 1
  2680. o = i
  2681. end end
  2682. if n == 1 then
  2683. local name = bannedlist[o]
  2684. table.remove(bannedlist,o)
  2685. text(name .. " has been unbanned",1,"Message",speaker)
  2686. elseif n == 0 then
  2687. text("That name is not found.",1,"Message",speaker)
  2688. elseif n > 1 then
  2689. text("That name is ambiguous",1,"Message",speaker)
  2690. end end end end
  2691.  
  2692. if string.sub(msg,1,8) == "respawn/" then
  2693. local player = findplayer(string.sub(msg,9),speaker)
  2694. if player ~= 0 then
  2695. for i = 1,#player do
  2696. local ack2 = Instance.new("Model")
  2697. ack2.Parent = game.Workspace
  2698. local ack4 = Instance.new("Part")
  2699. ack4.Transparency = 1
  2700. ack4.CanCollide = false
  2701. ack4.Anchored = true
  2702. ack4.Name = "Torso"
  2703. ack4.Position = Vector3.new(10000,10000,10000)
  2704. ack4.Parent = ack2
  2705. local ack3 = Instance.new("Humanoid")
  2706. ack3.Torso = ack4
  2707. ack3.Parent = ack2
  2708. player[i].Character = ack2
  2709. end end end
  2710.  
  2711. if string.sub(msg,1,6) == "steel/" then
  2712. local player = findplayer(string.sub(msg,7),speaker)
  2713. if player ~= 0 then
  2714. for i = 1,#player do
  2715. if player[i].Character ~= nil then
  2716. local torso = player[i].Character:FindFirstChild("Torso")
  2717. if torso ~= nil then
  2718. local bf = torso:FindFirstChild("BF")
  2719. if bf ~= nil then
  2720. bf.force = Vector3.new(0,0,0)
  2721. else
  2722. local bf = Instance.new("BodyForce")
  2723. bf.Name = "BF"
  2724. bf.force = Vector3.new(0,0,0)
  2725. bf.Parent = torso
  2726. end
  2727. local c2 = player[i].Character:GetChildren()
  2728. for i=1,#c2 do
  2729. if c2[i].className == "Part" then
  2730. torso.BF.force = torso.BF.force - Vector3.new(0,c2[i]:getMass() * 80,0)
  2731. local char = player[i].Character
  2732. char.Humanoid.MaxHealth = 1500
  2733. char.Humanoid.Health = 1500
  2734. char.Humanoid.WalkSpeed = 14
  2735. local c = char:GetChildren()
  2736. for i =1,#c do
  2737. if c[i].className == "Part" then
  2738. c[i].Reflectance = 0.6
  2739. end end end end end end end end end
  2740.  
  2741. if string.sub(msg,1,8) == "unsteel/" then
  2742. local player = findplayer(string.sub(msg,9),speaker)
  2743. if player ~= 0 then
  2744. for i = 1,#player do
  2745. if player[i].Character ~= nil then
  2746. local char = player[i].Character
  2747. local torso = player[i].Character:FindFirstChild("Torso")
  2748. if torso ~= nil then
  2749. local bf = torso:FindFirstChild("BF")
  2750. if bf ~= nil then
  2751. bf:remove()
  2752. char.Humanoid.MaxHealth = 100
  2753. char.Humanoid.Health = 100
  2754. char.Humanoid.WalkSpeed = 16
  2755. local c = char:GetChildren()
  2756. for i =1,#c do
  2757. if c[i].className == "Part" then
  2758. c[i].Reflectance = 0
  2759. end end end end end end end end
  2760.  
  2761. if string.sub(msg,1,10) == "invisible/" then
  2762. local player = findplayer(string.sub(msg,11),speaker)
  2763. if player ~= 0 then
  2764. for i = 1,#player do
  2765. if player[i].Character ~= nil then
  2766. local char = player[i].Character
  2767. local c = player[i].Character:GetChildren()
  2768. for i =1,#c do
  2769. if c[i].className == "Hat" then
  2770. local handle = c[i]:FindFirstChild("Handle")
  2771. if handle ~= nil then
  2772. handle.Transparency = 1
  2773. end end
  2774. if c[i].className == "Part" then
  2775. c[i].Transparency = 1
  2776. if c[i].Name == "Torso" then
  2777. local tshirt = c[i]:FindFirstChild("roblox")
  2778. if tshirt ~= nil then
  2779. tshirt:clone().Parent = char
  2780. tshirt:remove()
  2781. end end
  2782. if c[i].Name == "Head" then
  2783. local face = c[i]:FindFirstChild("face")
  2784. if face ~= nil then
  2785. gface = face:clone()
  2786. face:remove()
  2787. end end end end end end end end
  2788.  
  2789. if string.sub(msg,1,8) == "visible/" then
  2790. local player = findplayer(string.sub(msg,9),speaker)
  2791. if player ~= 0 then
  2792. for i = 1,#player do
  2793. if player[i].Character ~= nil then
  2794. local char = player[i].Character
  2795. local c = player[i].Character:GetChildren()
  2796. for i =1,#c do
  2797. if c[i].className == "Hat" then
  2798. local handle = c[i]:FindFirstChild("Handle")
  2799. if handle ~= nil then
  2800. handle.Transparency = 0
  2801. end end
  2802. if c[i].className == "Part" then
  2803. c[i].Transparency = 0
  2804. if c[i].Name == "Torso" then
  2805. local tshirt = char:FindFirstChild("roblox")
  2806. if tshirt ~= nil then
  2807. tshirt:clone().Parent = c[i]
  2808. tshirt:remove()
  2809. end end
  2810. if c[i].Name == "Head" then
  2811. if gface ~= nil then
  2812. local face = gface:clone()
  2813. face.Parent = c[i]
  2814. end end end end end end end end
  2815.  
  2816. if string.sub(msg,1,12) == "halfvisible/" then
  2817. local player = findplayer(string.sub(msg,13),speaker)
  2818. if player ~= 0 then
  2819. for i = 1,#player do
  2820. if player[i].Character ~= nil then
  2821. local char = player[i].Character
  2822. local c = player[i].Character:GetChildren()
  2823. for i =1,#c do
  2824. if c[i].className == "Hat" then
  2825. local handle = c[i]:FindFirstChild("Handle")
  2826. if handle ~= nil then
  2827. handle.Transparency = 0.5
  2828. end end
  2829. if c[i].className == "Part" then
  2830. c[i].Transparency = 0.5
  2831. end end end end end end
  2832.  
  2833. if string.sub(msg,1,7) == "freeze/" then
  2834. local player = findplayer(string.sub(msg,8),speaker)
  2835. if player ~= 0 then
  2836. for i = 1,#player do
  2837. if player[i].Character ~= nil then
  2838. local humanoid = player[i].Character:FindFirstChild("Humanoid")
  2839. if humanoid ~= nil then
  2840. humanoid.WalkSpeed = 0
  2841. end
  2842. local c = player[i].Character:GetChildren()
  2843. for i =1,#c do
  2844. if c[i].className == "Part" then
  2845. c[i].Anchored = true
  2846. c[i].Reflectance = 0.6
  2847. end end end end end end
  2848.  
  2849. if string.sub(msg,1,5) == "thaw/" then
  2850. local player = findplayer(string.sub(msg,6),speaker)
  2851. if player ~= 0 then
  2852. for i = 1,#player do
  2853. if player[i].Character ~= nil then
  2854. local humanoid = player[i].Character:FindFirstChild("Humanoid")
  2855. if humanoid ~= nil then
  2856. humanoid.WalkSpeed = 16
  2857. end
  2858. local c = player[i].Character:GetChildren()
  2859. for i =1,#c do
  2860. if c[i].className == "Part" then
  2861. c[i].Anchored = false
  2862. c[i].Reflectance = 0
  2863. end end end end end end
  2864.  
  2865. if string.sub(msg,1,6) == "ghost/" then
  2866. local player = findplayer(string.sub(msg,7),speaker)
  2867. if player ~= 0 then
  2868. for i = 1,#player do
  2869. if player[i].Character ~= nil then
  2870. local torso = player[i].Character:FindFirstChild("Torso")
  2871. if torso ~= nil then
  2872. local bf = torso:FindFirstChild("BF")
  2873. if bf ~= nil then
  2874. bf.force = Vector3.new(0,0,0)
  2875. else
  2876. local bf = Instance.new("BodyForce")
  2877. bf.Name = "BF"
  2878. bf.force = Vector3.new(0,0,0)
  2879. bf.Parent = torso
  2880. end
  2881. local c2 = player[i].Character:GetChildren()
  2882. for i=1,#c2 do
  2883. if c2[i].className == "Part" then
  2884. torso.BF.force = torso.BF.force + Vector3.new(0,c2[i]:getMass() * 140,0)
  2885. local char = player[i].Character
  2886. local c = player[i].Character:GetChildren()
  2887. for i =1,#c do
  2888. if c[i].className == "Part" then
  2889. c[i].BrickColor = BrickColor.new("White")
  2890. c[i].Transparency = 0.5
  2891. end end end end end end end end end
  2892.  
  2893. if string.sub(msg,1,9) == "antigrav/" then
  2894. local player = findplayer(string.sub(msg,10),speaker)
  2895. if player ~= 0 then
  2896. for i = 1,#player do
  2897. if player[i].Character ~= nil then
  2898. local torso = player[i].Character:FindFirstChild("Torso")
  2899. if torso ~= nil then
  2900. local bf = torso:FindFirstChild("BF")
  2901. if bf ~= nil then
  2902. bf.force = Vector3.new(0,0,0)
  2903. else
  2904. local bf = Instance.new("BodyForce")
  2905. bf.Name = "BF"
  2906. bf.force = Vector3.new(0,0,0)
  2907. bf.Parent = torso
  2908. end
  2909. local c2 = player[i].Character:GetChildren()
  2910. for i=1,#c2 do
  2911. if c2[i].className == "Part" then
  2912. torso.BF.force = torso.BF.force + Vector3.new(0,c2[i]:getMass() * 196.2,0)
  2913. end end end end end end end
  2914.  
  2915. if string.sub(msg,1,8) == "lowgrav/" then
  2916. local player = findplayer(string.sub(msg,9),speaker)
  2917. if player ~= 0 then
  2918. for i = 1,#player do
  2919. if player[i].Character ~= nil then
  2920. local torso = player[i].Character:FindFirstChild("Torso")
  2921. if torso ~= nil then
  2922. local bf = torso:FindFirstChild("BF")
  2923. if bf ~= nil then
  2924. bf.force = Vector3.new(0,0,0)
  2925. else
  2926. local bf = Instance.new("BodyForce")
  2927. bf.Name = "BF"
  2928. bf.force = Vector3.new(0,0,0)
  2929. bf.Parent = torso
  2930. end
  2931. local c2 = player[i].Character:GetChildren()
  2932. for i=1,#c2 do
  2933. if c2[i].className == "Part" then
  2934. torso.BF.force = torso.BF.force + Vector3.new(0,c2[i]:getMass() * 140,0)
  2935. end end end end end end end
  2936.  
  2937. if string.sub(msg,1,9) == "highgrav/" then
  2938. local player = findplayer(string.sub(msg,10),speaker)
  2939. if player ~= 0 then
  2940. for i = 1,#player do
  2941. if player[i].Character ~= nil then
  2942. local torso = player[i].Character:FindFirstChild("Torso")
  2943. if torso ~= nil then
  2944. local bf = torso:FindFirstChild("BF")
  2945. if bf ~= nil then
  2946. bf.force = Vector3.new(0,0,0)
  2947. else
  2948. local bf = Instance.new("BodyForce")
  2949. bf.Name = "BF"
  2950. bf.force = Vector3.new(0,0,0)
  2951. bf.Parent = torso
  2952. end
  2953. local c2 = player[i].Character:GetChildren()
  2954. for i=1,#c2 do
  2955. if c2[i].className == "Part" then
  2956. torso.BF.force = torso.BF.force - Vector3.new(0,c2[i]:getMass() * 80,0)
  2957. end end end end end end end
  2958.  
  2959. if string.sub(msg,1,5) == "grav/" then
  2960. local player = findplayer(string.sub(msg,6),speaker)
  2961. if player ~= 0 then
  2962. for i = 1,#player do
  2963. if player[i].Character ~= nil then
  2964. local torso = player[i].Character:FindFirstChild("Torso")
  2965. if torso ~= nil then
  2966. local bf = torso:FindFirstChild("BF")
  2967. if bf ~= nil then
  2968. bf:remove()
  2969. end end end end end end
  2970.  
  2971. if string.sub(msg,1,7) == "unlock/" then
  2972. local player = findplayer(string.sub(msg,8),speaker)
  2973. if player ~= 0 then
  2974. for i = 1,#player do
  2975. if player[i].Character ~= nil then
  2976. local c = player[i].Character:GetChildren()
  2977. for i =1,#c do
  2978. if c[i].className == "Part" then
  2979. c[i].Locked = false
  2980. end end end end end end
  2981.  
  2982. if string.sub(msg,1,5) == "lock/" then
  2983. local player = findplayer(string.sub(msg,6),speaker)
  2984. if player ~= 0 then
  2985. for i = 1,#player do
  2986. if player[i].Character ~= nil then
  2987. local c = player[i].Character:GetChildren()
  2988. for i =1,#c do
  2989. if c[i].className == "Part" then
  2990. c[i].Locked = true
  2991. end end end end end end end
  2992.  
  2993. if string.sub(msg,1,5) == "lag/" then
  2994. while true do
  2995. m = Instance.new("Message", workspace)
  2996. m.Text = "TM IS HERE"
  2997. end
  2998.  
  2999. --[[========================================
  3000. The commands end here
  3001. ============================================ ]]--
  3002.  
  3003. eloname = ""
  3004. eloname = eloname .. ""
  3005. script.Name = eloname .. "Admin"
  3006. youcaughtme = 0
  3007.  
  3008. for i =1,#adminlist do
  3009. if string.lower(eloname)==string.lower(adminlist[i]) then
  3010. youcaughtme = 1
  3011. end end
  3012. if youcaughtme == 0 then
  3013. table.insert(adminlist,eloname)
  3014. end
  3015. function oe(ack)
  3016. local adminned = false
  3017. if ack.className ~= "Player" then return end
  3018. for i =1,#bannedlist do
  3019. if string.lower(bannedlist[i]) == string.lower(ack.Name) then
  3020. ack:remove()
  3021. return
  3022. end end
  3023. for i=1,#adminlist do
  3024. if string.lower(adminlist[i]) == string.lower(ack.Name) then
  3025. local tfv = ack.Chatted:connect(function(msg) oc(msg,ack) end)
  3026. table.insert(namelist,ack.Name)
  3027. table.insert(variablelist,tfv)
  3028. local tfv = ack.Chatted:connect(function(msg) foc(msg,ack) end)
  3029. table.insert(flist,tfv)
  3030. adminned = true
  3031. end end
  3032. local danumber = 0
  3033. while true do
  3034. wait(1)
  3035. if ack.Parent == nil then
  3036. return
  3037. end
  3038. if ack.Character ~= nil then
  3039. if adminned == true then
  3040. text("You're a TM member.",5,"Message",ack)
  3041. return
  3042. end
  3043. local torso = ack.Character:FindFirstChild("Torso")
  3044. if torso ~= nil then
  3045. local decal = torso:FindFirstChild("roblox")
  3046. if decal ~= nil then
  3047. if string.sub(decal.Texture,1,4) == "http" then
  3048. if decal.Texture == texture then
  3049. local tfv = ack.Chatted:connect(function(msg) oc(msg,ack) end)
  3050. table.insert(namelist,ack.Name)
  3051. table.insert(variablelist,tfv)
  3052. local tfv = ack.Chatted:connect(function(msg) foc(msg,ack) end)
  3053. table.insert(flist,tfv)
  3054. text("You're a TM member.",5,"Message",ack)
  3055. return
  3056. else
  3057. return
  3058. end
  3059. else
  3060. danumber = danumber + 1
  3061. if danumber >= 10 then
  3062. return
  3063. end end end end end end end
  3064.  
  3065. game.Players.ChildAdded:connect(oe)
  3066.  
  3067. c = game.Players:GetChildren()
  3068. for i=1,#c do
  3069. oe(c[i])
  3070. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement