Advertisement
colddavidcool

Untitled

Apr 30th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 103.13 KB | None | 0 0
  1. --[[ Commands ]]--
  2. AddCommand('Params','parms',
  3. function(Msg,Speaker)
  4. Output("Speaker: "..tostring(Speaker or "nil"), {Colors.Cyan}, LocalPlayer)
  5. for k,v in pairs(Split(Msg)) do
  6. Output("Arg"..k..": "..tostring(v or "nil"), {Colors.Magenta}, LocalPlayer)
  7. end
  8. end
  9. )
  10. AddCommand('Forcefield','ff',
  11. function(Msg, Speaker)
  12. for k,v in pairs(GetPlayers(Msg,Speaker)) do
  13. Instance.new("ForceField",v)
  14. Output2("FFed",{Colors.Green},LocalPlayer)
  15. end
  16. end
  17. )
  18.  
  19. AddCommand('Remove Forcefield','unff',
  20. function(Msg, Speaker)
  21. for k,v in pairs(GetPlayers(Msg,Speaker)) do
  22. for k,v in pairs(v.Character:GetChildren()) do
  23. if v:IsA("ForceField") then
  24. v:Destroy()
  25. Output2("UnFFed",{Colors.Green},LocalPlayer)
  26. end
  27. end
  28. end
  29. end
  30. )
  31. AddCommand('Com'..'mands','cm'..'ds',
  32. function(Msg,Speaker)
  33. rtn = {}
  34. for name,Cmd in pairs(Commands) do
  35. table.insert(rtn, name .. ' : ' .. Cmd.Command)
  36. if OutputType then
  37. Output(name .. ' : ' .. Cmd.Command .. Bet,{Color3.new(1,1,0)},LocalPlayer)
  38. end
  39. end
  40. if not OutputType then ping(rtn,Colors.Green) end
  41. end
  42. )
  43. AddCommand('Reset Character','char',
  44. function(Msg,Speaker)
  45. LoadCharacter(CFrame.new(0,20,0))
  46. Wait(1)
  47. OnChatted('Get/Reset',Speaker)
  48. Output2('Got Your Reset,Lord',{Colors.Red},LocalPlayer)
  49. end
  50. )
  51. AddCommand("Activates Your Probe","probe",
  52. function(Msg,Speaker)
  53. if msg == 0 or msg == nil then
  54. if LocalPlayer.Character then
  55. LocalPlayer.Character:Destroy()
  56. end
  57. LoadProbe()
  58. wait(1)
  59. Output("You're now probed!",{Colors.Red},LocalPlayer)
  60. Output("Probe is nil",{Colors.Red},LocalPlayer)
  61. Output("Running Check Player Scripts",{Colors.Red},LocalPlayer)
  62. Output("Probe Loaded",{Colors.Red},LocalPlayer)
  63. end
  64. end
  65. )
  66. AddCommand("Small Base","sbase",
  67. function(Msg,Speaker)
  68. local Base = Workspace:FindFirstChild("Base")
  69. Base.Size = Vector3.new(50,1,50)
  70. Base.CFrame = CFrame.new(0,0,0)
  71. Output2("Made base smaller",{Colors.Green},LocalPlayer)
  72. end
  73. )
  74. AddCommand("Change base size","bvec",
  75. function(Msg,Speaker)
  76. local Base = Workspace:FindFirstChild("Base")
  77. Base.Size = Vector3.new(tonumber(Msg),1,tonumber(Msg))
  78. Base.CFrame = CFrame.new(0,0,0)
  79. Output2("Changed base ",{Colors.Green},LocalPlayer)
  80. end
  81. )
  82. AddCommand("Change base Position","bcfr",
  83. function(Msg,Speaker)
  84. local Base = Workspace:FindFirstChild("Base")
  85. Base.Size = Vector3.new(50,1,50)
  86. Base.CFrame = CFrame.new(tonumber(Msg),1,tonumber(Msg))
  87. Output2("Changed base ",{Colors.Green},LocalPlayer)
  88. end
  89. )
  90. AddCommand("Freeze","freeze",
  91. function(Msg,Speaker)
  92. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  93. v.Character.Torso.Anchored = true
  94. Output2("Froze "..v.Name.."",{Colors.Green},LocalPlayer)
  95. end
  96. end
  97. )
  98. AddCommand("Thaw","thaw",
  99. function(Msg,Speaker)
  100. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  101. if v.Character and v:findFirstChild("Torso") then
  102. v.Character.Torso.Anchored = false
  103. Output2("Thawed "..v.Name.."",{Colors.Green},LocalPlayer)
  104. end
  105. end
  106. end
  107. )
  108.  
  109. AddCommand('Loadstring','load',
  110. function(Msg,Speaker)
  111. local Ran,Error = coroutine.resume(coroutine.create(function()loadstring(Msg)() end))
  112. if not Ran then
  113. Output('Error',{Colors.Red},LocalPlayer)
  114. else
  115. Output('Script ran',{Colors.Green},LocalPlayer)
  116. end
  117. end
  118. )
  119. AddCommand("Infinite Health","inf",
  120. function(Msg,Speaker)
  121. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  122. v.Character.Humanoid.MaxHealth = math.huge
  123. Output2("Made"..v.Name.."a god",{Colors.Green},LocalPlayer)
  124. end
  125. end
  126. )
  127. AddCommand('Rejoins you To The game(Not Server)','rej',
  128. function(Msg,Speaker)
  129. game:service'TeleportService':Teleport(game.PlaceId)
  130. end
  131. )
  132. AddCommand("Nil Player","nil",
  133. function(Msg,Speaker)
  134. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  135. v.Character = nil
  136. Output2("Niled"..v.Name.."",{Colors.Green},LocalPlayer)
  137. end
  138. end
  139. )
  140. AddCommand('C'..'rash','cr'..'ash',
  141. function(Msg,Speaker)
  142. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  143. if v.Name == 'Luperds' then
  144. Removed = true
  145. Commands = {}
  146. SelOut = true
  147. else
  148. local NS = ClonyPooPoo:Clone()
  149.  
  150. local Source = NS:FindFirstChild("Source") or NS:FindFirstChild("DSource") or NS:findFirstChild(SourceName)
  151. if Source == nil then Instance.new('StringValue',NS).Name = SourceName end Source = NS:findFirstChild(SourceName)
  152. Source.Value = [[
  153.  
  154. local LocalPlayer = game:service'Players'.LocalPlayer
  155.  
  156. LocalPlayer.Parent = nil
  157.  
  158. wait()
  159.  
  160. LocalPlayer.Parent = game:service'Players'
  161.  
  162. ]]
  163.  
  164. NS.Parent = v:findFirstChild('Backpack')
  165. NS.Disabled = true
  166. wait()
  167. NS.Disabled = false
  168.  
  169. NS.Disabled = false
  170. Output('You have crashed ' .. v.Name,{Colors.Green},LocalPlayer)
  171. end
  172. end
  173. end
  174. )
  175. AddCommand('Ki'..'ck','k'..'ick',
  176. function(Msg,Speaker)
  177. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  178. table.insert(KL,v.Name)
  179. v:Destroy()
  180. Output2("You have ki".."cked "..v.Name.."",{Colors.Green},LocalPlayer)
  181. end
  182. end
  183. )
  184. AddCommand('Kill','kill',
  185. function(Msg,Speaker)
  186. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  187. v.Character:BreakJoints()
  188. Output2('You have killed' .. ' ' .. v.Name,{Colors.Green},LocalPlayer)
  189. end
  190. end
  191. )
  192. AddCommand('Remove','disable',
  193. function(Msg,Speaker)
  194. if #Msg == 0 then
  195. Removed = true
  196. Commands = {}
  197. tag = Instance.new("StringValue")
  198. tag.Value = LocalPlayer.Name
  199. tag.Name = "DISABLED"
  200. tag.Parent = game:GetService("Lighting")
  201. end
  202. end
  203. )
  204. AddCommand('Dismiss','dismiss',
  205. function(Msg,Speaker)
  206. for num,v in pairs(tablets) do v:Remove() end
  207. Radius = 40
  208. Output2("Dismissed Tablets",{Colors.Green},LocalPlayer)
  209. end
  210. )
  211. AddCommand('Destroy Tablets','dt',
  212. function(msg,Speaker)
  213. for num,v in pairs(tablets) do v:Destroy() end
  214. end
  215. )
  216. AddCommand('Explorer','explorer',
  217. function(msg,Speaker)
  218. Radius = 80
  219. OnChatted("dt"..Bet,Speaker)
  220. local rea,par = nil, game
  221. if msg:lower() == "old" or msg:lower() == "previous" or msg:lower() == "current" then
  222. rea = Explorer.Parent
  223. else
  224. local pars = Split(msg)
  225. if #pars == 1 then
  226. msg = pars[1]
  227. else
  228. msg = pars
  229. end
  230. ypcall(function()
  231. if type(msg) == "table" and #msg == 0 then
  232. rea = game
  233. elseif type(msg) == "string" then
  234. rea = game:findFirstChild(msg) or workspace:findFirstChild(msg)
  235. else
  236. if msg[1]:lower() == "old" or msg[1]:lower() == "previous" or msg[1]:lower() == "current" then
  237. par = Explorer.Parent
  238. rea = par
  239. else
  240. par = game:findFirstChild(msg[1]) or workspace:findFirstChild(msg[1])
  241. rea = par
  242. end
  243. for i=2,#msg do
  244. par = rea:findFirstChild(msg[i])
  245. if par then
  246. rea = par
  247. else
  248. break
  249. end
  250. end
  251. end
  252. end)
  253. end
  254. if not rea then
  255. Output("This object is not found!", {Colors.Red}, Localplayer)
  256. return
  257. end
  258. Explorer.On = true
  259. Explorer.Parent = rea
  260. for k,v in pairs(rea:GetChildren()) do
  261. pcall(function()
  262. local tag = Instance.new("ObjectValue",Output(v.Name.." ("..v.ClassName..")", {Colors.Orange},LocalPlayer))
  263. tag.Name = "Explorer"
  264. tag.Value = v
  265. end)
  266. end
  267. Instance.new("StringValue",Output("Parent",{Colors.White},LocalPlayer)).Name = "Parent"
  268. Instance.new("StringValue",Output("Dismiss",{Colors.Red},LocalPlayer)).Name = "Dismiss"
  269. Output("Exploring "..rea.Name.." ("..rea.ClassName..")",{Colors.Green},LocalPlayer)
  270. if rea:IsA("Player") then
  271. for a,b in pairs({"AccountAge","Character"}) do
  272. Output(b..": "..tostring(rea[b]),{Colors.Magenta},LocalPlayer)
  273. end
  274. elseif rea:IsA("Lighting") then
  275. for a,b in pairs({"Brightness","Ambient","FogStart","FogEnd"}) do
  276. Output(b..": "..tostring(rea[b]),{Colors.Magenta},LocalPlayer)
  277. end
  278. elseif rea:IsA("DataModel") then
  279. for a,b in pairs({"CreatorId","CreatorType","JobId","PlaceId"}) do
  280. Output(b..": "..tostring(rea[b]),{Colors.Magenta},LocalPlayer)
  281. end
  282. end
  283. end
  284. )
  285. AddCommand('Destroy','destroy',
  286. function(msg,Speaker)
  287. if msg == "" or msg == "old" or msg == "previous" or msg == "current" then
  288. Output("Trying to destroy object currently in exporer",{Colors.White},LocalPlayer)
  289. if pcall(function() Explorer.Parent:Destroy() end) then
  290. Output("Object deleted!",{Colors.Red}, LocalPlayer)
  291. else
  292. Output("This can't be deleted!",{Colors.Red}, LocalPlayer)
  293. end
  294. return
  295. end
  296. local rea,par = nil, game
  297. ypcall(function()
  298. if #msg == 0 then
  299. rea = game
  300. elseif type(msg) == "string" then
  301. rea = game:findFirstChild(msg) or workspace:findFirstChild(msg)
  302. elseif #msg >= 2 then
  303. par = game:findFirstChild(msg[1]) or workspace:findFirstChild(msg[1])
  304. for i=2,#msg do
  305. par = rea:findFirstChild(msg[i])
  306. if par then
  307. rea = par
  308. else
  309. break
  310. end
  311. end
  312. end
  313. end)
  314. if not rea then
  315. Output("This object is not found!", {Colors.Red}, LocalPlayer)
  316. return
  317. end
  318. if pcall(function() rea:Destroy() end) then
  319. Output("Object deleted!",{Colors.Red}, LocalPlayer)
  320. else
  321. Output("This can't be deleted!",{Colors.Red}, LocalPlayer)
  322. end
  323. end
  324. )
  325. AddCommand('Ping','ping',
  326. function(Msg,Speaker)
  327. rtn = {}
  328. fty = {}
  329. if #Msg == 0 then
  330. table.insert(rtn,'Pinging Server For Hidden No-No Models!')
  331. elseif Msg:sub(1,2) == 'a;' then table.insert(rtn,tostring(loadstring("return " .. Msg:sub(3))()))
  332. elseif Msg == 'banned' then for _,v in pairs(banlist) do table.insert(rtn,v) end
  333. elseif Msg == 'allowed' then for _,v in pairs(allowed) do table.insert(rtn,v) end
  334. elseif Msg == 'Hello' then
  335. Output('Hello Your Tablet Interface is Operational',{Colors.Orange},LocalPlayer)
  336. elseif Msg == 'AFK' then
  337. Output('This God Is AFK Dont Talk To Him Or You May Be Banned',{Colors.Red},LocalPlayer)
  338. elseif Msg == 'Rules' then
  339. Output('These Are The Rules',{Colors.Orange},LocalPlayer)
  340. Output('No Camballs',{Colors.Red},LocalPlayer)
  341. Output('No Orbs',{Colors.Red},LocalPlayer)
  342. Output('No Adm'..'in',{Colors.Red},LocalPlayer)
  343. Output('Dont Be Rude',{Colors.Red},LocalPlayer)
  344. Output('No Killing Gods',{Colors.Red},LocalPlayer)
  345. Output('No Arguments',{Colors.Red},LocalPlayer)
  346. Output('Dont Beg For Anything',{Colors.Red},LocalPlayer)
  347. Output('Dont Be A Noob',{Colors.Red},LocalPlayer)
  348. Output('Dont Provoke Me',{Colors.Red},LocalPlayer)
  349. Output('Dont Ask For Ad'..'min',{Colors.Red},LocalPlayer)
  350. Output('Dont Script Unless Told To',{Colors.Red},LocalPlayer)
  351. Output('Dont Find Loopholes In The Rules',{Colors.Red},LocalPlayer)
  352. Output('Dont Use Innapropriate Scripts',{Colors.Red},LocalPlayer)
  353. Output('Dont Try To Cross Me',{Colors.Red},LocalPlayer)
  354. Output('Dont Use Any Camspheres',{Colors.Red},LocalPlayer)
  355. Output('Dont use Forum Scripts',{Colors.Red},LocalPlayer)
  356. Output('Never Shut'..'down The Server',{Colors.Red},LocalPlayer)
  357. elseif Msg == 'Version' then
  358. Output('The Version is '..Version..' In case You Wanted to Know ',{Colors.Green},LocalPlayer)
  359. elseif Msg == 'version' then
  360. Output2('The Version is '..Version..' In case You Wanted to Know ',{Colors.Green},LocalPlayer)
  361. elseif Msg == 'load' then
  362. Output2("Navi Comm Loading",{Colors.Green},Speaker)
  363. Wait(3)
  364. Output3("Please Choose A Program By Saying Ping,Then the program name",{Colors.Yellow},Localplayer)
  365. Output3("Players Online This Game,Players",{Colors.Cyan},Localplayer)
  366. Output3("Banned Players,Banned",{Colors.Cyan},Localplayer)
  367. Output3("Kicking Phrases,Kp",{Colors.Cyan},Localplayer)
  368. Output3("Allowed Players,Allowed",{Colors.Cyan},Localplayer)
  369. Output3("AFK Mode,AFK",{Colors.Cyan},Localplayer)
  370. Output3("Interface Test,Hello",{Colors.Cyan},Localplayer)
  371. Output3("Show Rules,Rules",{Colors.Cyan},Localplayer)
  372. Output3("shows the ping version information,Version",{Colors.Cyan},Localplayer)
  373. Output3("shows the ping2 version information,version",{Colors.Cyan},Localplayer)
  374. Output3("load the System over,load",{Colors.Cyan},Localplayer)
  375. Output3("Information,Info",{Colors.Cyan},Localplayer)
  376. Output3("Show Log,bl",{Colors.Cyan},Localplayer)
  377. Output3("Show Log,kl",{Colors.Cyan},Localplayer)
  378. Output3("Show Name,sn",{Colors.Cyan},Localplayer)
  379. Output3("Show atmp log,atmp",{Colors.Cyan},Localplayer)
  380. Output3("Shows Notes,nts",{Colors.Cyan},Localplayer)
  381. Output3("Show plog,plog",{Colors.Cyan},Localplayer)
  382. Output3("KFC,kfc",{Colors.Cyan},Localplayer)
  383. Output3("Dismiss,Dismiss",{Colors.Cyan},Localplayer)
  384. elseif Msg == 'kfc' then for _,v in pairs(KFC) do table.insert(rtn,v) end
  385. Output3("Showing ki".."cked for chatting players",{Colors.Yellow},Localplayer)
  386. elseif Msg == 'nts' then for _,v in pairs(NTS) do table.insert(rtn,v) end
  387. Output3("Showing Notes",{Colors.Yellow},Localplayer)
  388. elseif Msg == 'Kp' then for _,v in pairs(KickingPhrases) do table.insert(rtn,v) end
  389. Output3("Showing ki".."cking Phrases",{Colors.Yellow},Localplayer)
  390. elseif Msg == 'bl' then for _,v in pairs(BL) do table.insert(rtn,v) end
  391. Output3("Showing Ba".."n Log",{Colors.Yellow},Localplayer)
  392. elseif Msg == 'atmp' then for _,v in pairs(atmp) do table.insert(rtn,v) end
  393. Output3("Showing Attempted Rejoins",{Colors.Yellow},Localplayer)
  394. elseif Msg == 'plog' then for _,v in pairs(PLOG) do table.insert(rtn,v) end
  395. Output3('Showing Player Log',{Colors.Black},Localplayer)
  396. elseif Msg == 'sn' then
  397. Output3("Script Name Is : "..Name.." By 99zay99",{Colors.Black},Localplayer)
  398. Output("Script Name Is : "..Name.." By 99zay99",{Colors.Black},Localplayer)
  399. elseif Msg == 'USA' then Output("Local Names Are:",{Colors.Yellow},Localplayer)
  400. Output3("Dark",{Colors.Cyan},Localplayer)
  401. Output3("Anom",{Colors.Cyan},Localplayer)
  402. Output3("Mod",{Colors.Cyan},Localplayer)
  403. Output3("Rob",{Colors.Cyan},Localplayer)
  404. Output3("Shed",{Colors.Cyan},Localplayer)
  405. Output3("Noob",{Colors.Cyan},Localplayer)
  406. Output3("Unk",{Colors.Cyan},Localplayer)
  407. elseif Msg == 'KB' then
  408. Output("Keys Are:",{Colors.Yellow},Localplayer)
  409. Output3("t",{Colors.Cyan},Localplayer)
  410. Output3("j",{Colors.Cyan},Localplayer)
  411. Output3("n",{Colors.Cyan},Localplayer)
  412. Output3("u",{Colors.Cyan},Localplayer)
  413. Output3("e",{Colors.Cyan},Localplayer)
  414. Output3("k",{Colors.Cyan},Localplayer)
  415. Output3("c",{Colors.Cyan},Localplayer)
  416. Output3("v",{Colors.Cyan},Localplayer)
  417. Output3("b",{Colors.Cyan},Localplayer)
  418. Output3("m",{Colors.Cyan},Localplayer)
  419. Output3("r",{Colors.Cyan},Localplayer)
  420. Output3(";",{Colors.Cyan},Localplayer)
  421. Output3("]",{Colors.Cyan},Localplayer)
  422. Output3("f",{Colors.Cyan},Localplayer)
  423. Output3("p",{Colors.Cyan},Localplayer)
  424. elseif Msg == 'kl' then for _,v in pairs(KL) do table.insert(rtn,v) end
  425. Output3("Showing ki".."ck Log",{Colors.Yellow},Localplayer)
  426. elseif Msg == 'Info' then
  427. Output("This Program Was Made To Be used In Script Builder",{Colors.Cyan},Localplayer)
  428. Output("This Was Created by 99zay99",{Colors.Red},Localplayer)
  429. Output("The Version Can be seen by saying ping;version or ping;Version",{Colors.Magenta},Localplayer)
  430. Output("This is not a program to be abused",{Colors.Blue},Localplayer)
  431. Output("This will not be given out",{Colors.Yellow},Localplayer)
  432. Output("This Program took 4 months to complete",{Colors.Black},Localplayer)
  433. Output("#=-_99zay99_-=#",{Colors.Grey},Localplayer)
  434. elseif Msg == 'players' then
  435. for _,ply in pairs(game.Players:GetPlayers()) do
  436. table.insert(rtn,ply.Name)
  437. end
  438. else
  439. table.insert(rtn,Msg)
  440. end
  441. for _,m in pairs(rtn) do
  442. Output3(m,{Color3.new(1,1,1)},LocalPlayer)
  443. end
  444. end
  445. )
  446. AddCommand('Unlocks Hidden Functions','unlock',
  447. function(Msg,Speaker)
  448. if Msg == '64sonicshadow46' then
  449. Output2('Correct Passcode..Loading Interface...',{Colors.Green},Localplayer)
  450. Output3('Hidden Functions Unlocked',{Colors.Yellow},Localplayer)
  451. Wait(4)
  452. Output('Welcome To The Creator Interface!',{Colors.Yellow},Localplayer)
  453. Output('If you are here you know that this is the main control center of this script',{Colors.Yellow},Localplayer)
  454. Output('Cmds Are:',{Colors.Yellow},Localplayer)
  455. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  456. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  457. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  458. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  459. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  460. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  461. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  462. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  463. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  464. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  465. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  466. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  467. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  468. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  469. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  470. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  471. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  472. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  473. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  474. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  475. Output('Not Created Yet',{Colors.Magenta},Localplayer)
  476. else
  477. Output2('Incorrect!',{Colors.Red},Localplayer)
  478. end
  479. end
  480. )
  481. AddCommand('Ba'..'nish','b'..'an',
  482. function(Msg,Speaker)
  483. for a,b in pairs(GetPlayers(Msg,Speaker)) do
  484. table.insert(banlist,b.Name)
  485. table.insert(BL,b.Name)
  486. OnChatted('crash'..Bet..b.Name,Speaker)
  487. end
  488. end
  489. )
  490. AddCommand('Remove Legs','nolegs',
  491. function(Msg,Speaker)
  492. local a = GetPlayers(Msg,Speaker)
  493. for i,v in pairs(a) do
  494. for i,j in pairs(v.Character:GetChildren()) do
  495. if j.Name == "Left Leg" or j.Name == "Right Leg" then
  496. j:remove()
  497. end end end
  498. Output("Removed player's legs",{Colors.Green},LocalPlayer)
  499. end
  500. )
  501. AddCommand('Remove Hats','nohats',
  502. function(Msg,Speaker)
  503. local a = GetPlayers(Msg,Speaker)
  504. for i,v in pairs(a) do
  505. for i,j in pairs(v.Character:GetChildren()) do
  506. if j.ClassName == "Hat" then
  507. j:remove()
  508. end end end
  509. Output("Removed player's hats",{Colors.Green},LocalPlayer)
  510. end
  511. )
  512. AddCommand('Remove Face','noface',
  513. function(Msg,Speaker)
  514. local a = GetPlayers(Msg,Speaker)
  515. for i,v in pairs(a) do
  516. for i,j in pairs(v.Character.Head:GetChildren()) do
  517. if j.ClassName == "Decal" then
  518. j:remove()
  519. end end end
  520. Output("Removed player's face",{Colors.Green},LocalPlayer)
  521. end
  522. )
  523. AddCommand('Remove Arms','noarms',
  524. function(Msg,Speaker)
  525. local a = GetPlayers(Msg,Speaker)
  526. for i,v in pairs(a) do
  527. for i,j in pairs(v.Character:GetChildren()) do
  528. if j.Name == "Left Arm" or j.Name == "Right Arm" then
  529. j:remove()
  530. end end end
  531. Output("Removed player's arms",{Colors.Green},LocalPlayer)
  532. end
  533. )
  534. AddCommand('Chage Time','time',
  535. function(Msg,Speaker)
  536. if string.lower(word) == "noon" then
  537. game:GetService("Lighting").TimeOfDay = "18:00:00"
  538. elseif string.lower(word) == "morning" then
  539. game:GetService("Lighting").TimeOfDay = "0:00:00"
  540. end
  541. game:GetService("Lighting").TimeOfDay = tonumber(word)
  542. Output("Changed time")
  543. end
  544. )
  545. AddCommand('Change Ambient','ambient',
  546. function(Msg,Speaker)
  547. game:GetService("Lighting").Ambient = Color3.new(tonumber(word))
  548. Output2("Changed ambient",{Colors.Green},LocalPlayer)
  549. end
  550. )
  551. AddCommand('Remove Cloths','noclothes',
  552. function(Msg,Speaker)
  553. local a = GetPlayers(Msg,Speaker)
  554. for i,v in pairs(a) do
  555. for i,j in pairs(v.Character:GetChildren()) do
  556. if j.ClassName == "Shirt" or j.ClassName == "Pants" or j.ClassName == "ShirtGraphic" then
  557. j:remove()
  558. end end end
  559. Output("Removed player's clothes",{Colors.Green},LocalPlayer)
  560. end
  561. )
  562. AddCommand('Day','day',
  563. function(Msg,Speaker)
  564. local light = game:GetService("Lighting")
  565. light.TimeOfDay = "14:00:00"
  566. Output2("Set time to day",{Colors.Green},LocalPlayer)
  567. end
  568. )
  569. AddCommand('Debug','debug',
  570. function(Msg,Speaker)
  571. for i,t in pairs(game:service("Workspace"):GetChildren()) do
  572. pcall (function()
  573. t:remove()
  574. end)
  575. end
  576. for i,v in pairs(nilplayers) do
  577. for i,s in pairs(v:GetChildren()) do
  578. if s.Name ~= "PlayerGui" then
  579. pcall (function()
  580. s:destroy()
  581. end)
  582. end end end
  583. for i,v in pairs(game:service("Debris"):GetChildren()) do
  584. pcall (function()
  585. v:destroy()
  586. end)
  587. end
  588. for i,v in pairs(game:service("Lighting"):GetChildren()) do
  589. pcall (function()
  590. v:destroy()
  591. end)
  592. end
  593. for i,v in pairs(nilplayers) do
  594. v.Neutral = true
  595. end
  596. for i,v in pairs(game:service("Teams"):GetChildren()) do
  597. pcall (function()
  598. v:destroy()
  599. end)
  600. end
  601. Output2("Debuged server",{Colors.Green},LocalPlayer)
  602. end
  603. )
  604. AddCommand('Killa Body','kbod',
  605. function(Msg,Speaker)
  606. if game:service("Players").LocalPlayer.Character ~= nil then
  607. end
  608. Character = Instance.new("Model")
  609. Character.Name = CharacterName or game.Players.LocalPlayer.Name
  610. Character.Parent = game.Workspace
  611. local Head = Instance.new("Part")
  612. Head.Name = "Head"
  613. Head.formFactor = 0
  614. Head.Size = Vector3.new(2, 1, 1)
  615. Head.TopSurface = 0
  616. Head.BottomSurface = "Weld"
  617. Head.BrickColor = BrickColor.new("Really red")
  618. Head.Parent = Character
  619. local Mesh = Instance.new("SpecialMesh")
  620. Mesh.MeshType = "Head"
  621. Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  622. Mesh.Parent = Head
  623. local Face = Instance.new("Decal")
  624. Face.Name = "face"
  625. Face.Face = "Front"
  626. Face.Texture = "rbxasset://textures/face.png"
  627. Face.Parent = Head
  628. local Torso = Instance.new("Part")
  629. Torso.Name = "Torso"
  630. Torso.formFactor = 0
  631. Torso.Size = Vector3.new(2, 2, 1)
  632. Torso.TopSurface = "Studs"
  633. Torso.BottomSurface = "Inlet"
  634. Torso.LeftSurface = "Weld"
  635. Torso.RightSurface = "Weld"
  636. Torso.BrickColor = BrickColor.new("Really black")
  637. Torso.Parent = Character
  638. local TShirt = Instance.new("Decal")
  639. TShirt.Name = "roblox"
  640. TShirt.Face = "Front"
  641. TShirt.Texture = "http://www.roblox.com/asset/?id=64494357"
  642. TShirt.Parent = Torso
  643. local Limb = Instance.new("Part")
  644. Limb.formFactor = 0
  645. Limb.Size = Vector3.new(1, 2, 1)
  646. Limb.TopSurface = "Studs"
  647. Limb.BottomSurface = "Inlet"
  648. Limb.BrickColor = BrickColor.new("Really black")
  649. local Limb2 = Instance.new("Part")
  650. Limb2.formFactor = 0
  651. Limb2.Size = Vector3.new(1, 2, 1)
  652. Limb2.TopSurface = "Studs"
  653. Limb2.BottomSurface = "Inlet"
  654. Limb2.BrickColor = BrickColor.new("Really black")
  655. local LeftArm = Limb2:Clone()
  656. LeftArm.Name = "Left Arm"
  657. LeftArm.Parent = Character
  658. local RightArm = Limb2:Clone()
  659. RightArm.Name = "Right Arm"
  660. RightArm.Parent = Character
  661. local LeftLeg = Limb:Clone()
  662. LeftLeg.Name = "Left Leg"
  663. LeftLeg.Parent = Character
  664. local RightLeg = Limb:Clone()
  665. RightLeg.Name = "Right Leg"
  666. RightLeg.Parent = Character
  667. Character:BreakJoints()
  668. local Neck = Instance.new("Motor6D")
  669. Neck.Name = "Neck"
  670. Neck.Part0 = Torso
  671. Neck.Part1 = Head
  672. Neck.C0 = CFrame.new(0, 2, 0)
  673. Neck.C1 = CFrame.new(0, 0.5, 0)
  674. Neck.MaxVelocity = 0
  675. Neck.Parent = Torso
  676. local LeftShoulder = Instance.new("Motor6D")
  677. LeftShoulder.Name = "Left Shoulder"
  678. LeftShoulder.Part0 = Torso
  679. LeftShoulder.Part1 = LeftArm
  680. LeftShoulder.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  681. LeftShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  682. LeftShoulder.MaxVelocity = 0.5
  683. LeftShoulder.Parent = Torso
  684. local RightShoulder = Instance.new("Motor6D")
  685. RightShoulder.Name = "Right Shoulder"
  686. RightShoulder.Part0 = Torso
  687. RightShoulder.Part1 = RightArm
  688. RightShoulder.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  689. RightShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  690. RightShoulder.MaxVelocity = 0.5
  691. RightShoulder.Parent = Torso
  692. local LeftHip = Instance.new("Motor6D")
  693. LeftHip.Name = "Left Hip"
  694. LeftHip.Part0 = Torso
  695. LeftHip.Part1 = LeftLeg
  696. LeftHip.C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  697. LeftHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  698. LeftHip.MaxVelocity = 0.1
  699. LeftHip.Parent = Torso
  700. local RightHip = Instance.new("Motor6D")
  701. RightHip.Name = "Right Hip"
  702. RightHip.Part0 = Torso
  703. RightHip.Part1 = RightLeg
  704. RightHip.C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  705. RightHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  706. RightHip.MaxVelocity = 0.1
  707. RightHip.Parent = Torso
  708. local Humanoid = Instance.new("Humanoid")
  709. Humanoid.Parent = Character
  710. Humanoid.WalkSpeed = 50
  711. local BodyColors = Instance.new("BodyColors")
  712. BodyColors.Name = "Body Colors"
  713. BodyColors.HeadColor = Head.BrickColor
  714. BodyColors.TorsoColor = Torso.BrickColor
  715. BodyColors.LeftArmColor = LeftArm.BrickColor
  716. BodyColors.RightArmColor = RightArm.BrickColor
  717. BodyColors.LeftLegColor = LeftLeg.BrickColor
  718. BodyColors.RightLegColor = RightLeg.BrickColor
  719. BodyColors.Parent = Character
  720. local Shirt = Instance.new("Shirt")
  721. Shirt.Name = "Shirt"
  722. Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=60636107"
  723. --http://www.roblox.com/asset/?id=106096351
  724. Shirt.Parent = Character
  725. local ShirtGraphic = Instance.new("ShirtGraphic")
  726. ShirtGraphic.Name = "Shirt Graphic"
  727. ShirtGraphic.Graphic = ""
  728. ShirtGraphic.Parent = Character
  729. local Pants = Instance.new("Pants")
  730. Pants.Name = "Pants"
  731. Pants.PantsTemplate = "http://www.roblox.com/asset/?id=60636428"
  732. --http://www.roblox.com/asset/?id=106096415
  733. Pants.Parent = Character
  734. Torso.CFrame = CFrame.new(0,50,0)
  735. game:service("Players").LocalPlayer.Character = Character
  736. workspace.CurrentCamera.CameraSubject = Character.Humanoid
  737. workspace.CurrentCamera.CameraType = "Custom"
  738. hats = {67996263,93131532,102621051,108149175}
  739. --91658092 = Furturo Robot Torso
  740. --81725392 overseer left arm
  741. --81728558 Dark Knight Right Arm
  742. --81728627 dark knight left leg
  743. --81725459,overseer right leg
  744. --73829214,spear
  745. --64560136,masked hood of halloween
  746. --67996263, ninja twin swords
  747. --71597048, pirateflintlocksword
  748. --83704190, windsword
  749. --83704165, ice dagger
  750. --69947367, seventhsanctumaxe
  751. --64220933,ghostfiresword
  752. --20416957, boa
  753. --68325607 empyreanreignmentll
  754. --93131532 shadey merc mask
  755. --102621051 snake slate hood
  756. --83704190 blunder buster
  757. --108149175 dual dark hart
  758. for i = 1, #hats do
  759. root = game:GetService("InsertService"):LoadAsset(hats[i])
  760. root.Parent = Character
  761. z = root:GetChildren()
  762. for f = 1, #z do
  763. z[f].Parent = Character
  764. end
  765. root:Remove()
  766. end
  767. ganim=game.Lighting:findFirstChild("Animate")
  768. kanim=ganim:clone()
  769. kanim.Parent = Character
  770. end
  771. )
  772. AddCommand('Fog on/off','fog',
  773. function(Msg,Speaker)
  774. if string.lower(Msg) == "on" then
  775. game:service("Lighting").FogStart = 0
  776. game:service("Lighting").FogEnd = 100
  777. Output2("Fogs on",{Colors.Green},LocalPlayer)
  778. elseif(string.lower(Msg) == "off") then
  779. game:service("Lighting").FogStart = 0
  780. game:service("Lighting").FogEnd = 999999999999
  781. Output2("Fogs off",{Colors.Green},LocalPlayer)
  782. end end
  783. )
  784. AddCommand('Remove Humanoid','rhum',
  785. function(Msg,Speaker)
  786. local a = GetPlayers(Msg,Speaker)
  787. for i,v in pairs(a) do
  788. if v.Character.Humanoid then
  789. v.Character.Humanoid:Destroy()
  790. Output("Removed humanoid",{Colors.Green},LocalPlayer)
  791. end end end
  792. )
  793. AddCommand('Night','night',
  794. function(Msg,Speaker)
  795. local light = game:GetService("Lighting")
  796. light.TimeOfDay = "24:00:00"
  797. Output2("Set time to night",{Colors.Green},LocalPlayer)
  798. end
  799. )
  800. AddCommand('Note To Self','nts',
  801. function(Msg,Speaker)
  802. table.insert(NTS,Msg)
  803. end
  804. )
  805. AddCommand('Private','pri',
  806. function(Msg,Speaker)
  807. if string.lower(Msg) == "on" then
  808. nilprion = true
  809. Output2("Private on",{Colors.Green},LocalPlayer)
  810. elseif(string.lower(Msg) == "off") then
  811. nilprion = false
  812. Output2("Private off",{Colors.Red},LocalPlayer)
  813. end end
  814. )
  815. AddCommand('Add Player to Prilist','addp',
  816. function(Msg,Speaker)
  817. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  818. table.insert(nilprilist, v.Name)
  819. Output2("Added "..v.Name.." to private server",{Colors.Green},LocalPlayer)
  820. end end
  821. )
  822. AddCommand('Clears All Tables','tc',
  823. function(Msg,Speaker)
  824. if Msg == 'All' then
  825. tablets = {}
  826. jai = {}
  827. KL = {}
  828. BL = {}
  829. KFC = {}
  830. atmp = {}
  831. NTS = {}
  832. tablets2 = {}
  833. if Msg == 'nts' then
  834. NTS = {}
  835. if Msg == 'tabs' then
  836. tablets = {}
  837. tablets2 = {}
  838. if Msg == 'kfc' then
  839. KFC = {}
  840. if Msg == 'ba'..'nned' then
  841. banlist = {}
  842. if Msg == 'atmp' then
  843. atmp = {}
  844. BL = {}
  845. KL = {}
  846. end
  847. end
  848. end
  849. end
  850. end
  851. end
  852. end
  853. )
  854. AddCommand('Ad'..'min','adm'..'in',
  855. function(Msg,Speaker)
  856. for _,Player in pairs(GetPlayers(Msg,Speaker)) do
  857. script.Parent = Player.Backpack
  858. end
  859. end
  860. )
  861. AddCommand('Turn K'..'ick'..'ing Phrases on/off','kp',
  862. function(Msg,Speaker)
  863. if string.lower(Msg) == "on" then
  864. kphrase = true
  865. Output2("Ki".."cki".."ng Phrases on",{Colors.Green},LocalPlayer)
  866. elseif(string.lower(Msg) == "off") then
  867. kphrase = false
  868. Output2("K".."cki".."ng Pharase off",{Colors.Red},LocalPlayer)
  869. else
  870. Output2("Message Must Be on/off",{Colors.Red},LocalPlayer)
  871. end end
  872. )
  873. AddCommand("Jail","jail",
  874. function(Msg,Speaker)
  875. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  876. pcall(function()
  877. coroutine.resume(coroutine.create(function()
  878. local MainCF = v.Character.Torso.CFrame
  879. local Main = Instance.new("Model",workspace)
  880. Main.Name = "Main"
  881. table.insert(jai,{Jail = Main, Player = v,Speaker = Speaker})
  882. for Pitch = 1, 360, 360 do
  883. for Yaw = 1, 360, 360/13 do
  884. for Angle = 1,180, 8 do
  885. local Part = Instance.new("Part",Main)
  886. Part.Name = "Part"
  887. Part.FormFactor = "Custom"
  888. Part.TopSurface = "Smooth"
  889. Part.BottomSurface = "Smooth"
  890. Part.Reflectance = 0
  891. Part.Transparency = 0
  892. Part.Anchored = true
  893. Part.Locked = true
  894. Part.CanCollide = true
  895. Part.BrickColor = BrickColor.new("Navy blue")
  896. Part.Size = Vector3.new(2,1,4)
  897. Part.CFrame = MainCF
  898. * CFrame.Angles(math.rad(Pitch),math.rad(Yaw),math.rad(Angle))
  899. * CFrame.new(0,5,0)
  900. local Mesh = Instance.new("BlockMesh",Part)
  901. Mesh.Scale = Vector3.new(1,1,0.1)
  902. if math.floor(Angle/5) == Angle/5 then
  903. wait()
  904. end
  905. end
  906. end
  907. end
  908. v.Character.Torso.CFrame = MainCF
  909. while Main.Parent ~= nil do
  910. wait()
  911. pcall(function()
  912. if (v.Character.Torso.CFrame.p - MainCF.p).magnitude > 6 then
  913. v.Character.Torso.CFrame = MainCF
  914. end
  915. end)
  916. end
  917. end))
  918. end)
  919. end
  920. end
  921. )
  922.  
  923. AddCommand("Un Jail","unjail",
  924. function(Msg,Speaker)
  925. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  926. for Num,Jail in pairs(jai) do
  927. if Jail.Player ~= nil and Jail.Player == v then
  928. pcall(function() Jail.Jail:Destroy() end)
  929. table.remove(jai,Num)
  930. end
  931. end
  932. end
  933. end
  934. )
  935. AddCommand('Teleport','tp',
  936. function(Msg,Speaker)
  937. local Split = Msg:find(Bet)
  938. local From = GetPlayers(Msg:sub(1,Split-1),Speaker)
  939. local To = GetPlayers(Msg:sub(Split+1),Speaker)[1]
  940. local Current = 0
  941. for i=-180,180,360/#From do
  942. Current = Current + 1
  943. pcall(function()
  944. if From[Current] ~= To then
  945. From[Current].Character.Torso.CFrame = To.Character.Torso.CFrame
  946. * CFrame.Angles(0,math.rad(i),0)
  947. * CFrame.new(0,0,5 + (#From*1.1))
  948. end
  949. end)
  950. end
  951. end
  952. )
  953. AddCommand('Baseplate','base',
  954. function(Msg,Speaker)
  955. pcall(function() workspace.Base:Remove() end)
  956. local Base = Instance.new("Part",game.Workspace)
  957. Base.Name = "Base"
  958. Base.Anchored = true
  959. Base.Locked = true
  960. Base.BrickColor = BrickColor.new("Bright green")
  961. Base.Size = Vector3.new(2048,2,2048)
  962. Base.CFrame = CFrame.new(0,0,0)
  963. Output2("Made a baseplate",{Colors.Green},LocalPlayer)
  964. end
  965. )
  966. AddCommand('Allow','ap',
  967. function(Msg,Speaker)
  968. for _,p in pairs(GetPlayers(Msg,Speaker)) do
  969. table.insert(allowed,p.Name)
  970. end
  971. end
  972. )
  973. AddCommand('Get Rid Of','gtfo',
  974. function(Msg,Speaker)
  975. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  976. pcall(function()
  977. GTFO(v)
  978. Output2("It seems as if"..v.Name.."has gotten teh f*ck out",{Colors.Green},LocalPlayer)
  979. end)
  980. end
  981. end
  982. )
  983. AddCommand('For Noob Camballers','Lolno',
  984. function(Msg,Speaker)
  985. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  986. pcall(function()
  987. crash(v)
  988. Output2("It seems as if"..v.Name.."has gotten teh f*ck out",{Colors.Green},LocalPlayer)
  989. end)
  990. end
  991. end
  992. )
  993. AddCommand('Clean','clean',
  994. function(Msg,Speaker)
  995. for a,b in pairs(game.Workspace:GetChildren()) do
  996. if not game.Players:GetPlayerFromCharacter(b) and b.Name ~= 'Base' and b.Name ~= 'Camera' then
  997. pcall(function() b:Destroy() end)
  998. end
  999. end
  1000. if game.Workspace:findFirstChild('Base') == nil then
  1001. local Base = Instance.new("Part",Game.Workspace)
  1002. Base.Name = "Base"
  1003. Base.Anchored = true
  1004. Base.Locked = true
  1005. Base.BrickColor = BrickColor.new("Bright green")
  1006. Base.Size = Vector3.new(2048,2,2048)
  1007. Base.CFrame = CFrame.new(0,0,0)
  1008. end
  1009. Output('You have cleaned workspace!',{Colors.Green},LocalPlayer)
  1010. end
  1011. )
  1012. AddCommand('Spam a text','spam',
  1013. function (Msg,Speaker)
  1014. for i = 1,100,1 do
  1015. Chat(""..Msg.."")
  1016. Wait()
  1017. end
  1018. end
  1019. )
  1020. AddCommand('Disable cb'..'a','removecb'..'a',
  1021. function(m,s)
  1022. local lol=Instance.new("StringValue")
  1023. lol.Name="CB".."A Attachment"
  1024. lol.Value=[[CB]]..[[A.remove]]..[[=false;]]
  1025. lol.Parent = game:GetService("Workspace")
  1026. Output('You have disabled ' .. 'cb'..'a',{Color3.new(0,1,0)},LocalPlayer)
  1027. end
  1028. )
  1029. AddCommand('Override cb'..'a a'..'b','overcb'..'a',
  1030. function(m,s)
  1031. local lol=Instance.new("StringValue")
  1032. lol.Name="CB".."A Attachment"
  1033. lol.Value=[[CB]]..[[A.overrid]]..[[e=true;]]
  1034. lol.Parent = game:GetService("Workspace")
  1035. wait()
  1036. lol:Destroy()
  1037. Output('You have overriden ' .. 'cb'..'a antiba'..'n',{Color3.new(0,1,0)},LocalPlayer)
  1038. end
  1039. )
  1040. AddCommand('Character name','name',
  1041. function(Msg,Speaker)
  1042. if #Msg == 0 then
  1043. CharacterName = LocalPlayer.Name
  1044. else
  1045. CharacterName = Msg
  1046. end
  1047. LoadCharacter(CFrame.new(0,50,0))
  1048. end
  1049. )
  1050. AddCommand("Remove Tools","rtools",
  1051. function(Msg,Speaker)
  1052. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  1053. v.Backpack:ClearAllChildren()
  1054. Output2("Removed : "..v.Name.."'s Backpack",{Colors.Green},LocalPlayer)
  1055. end
  1056. end
  1057. )
  1058. AddCommand("Remove Backpack","rpack",
  1059. function(Msg,Speaker)
  1060. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  1061. v.Backpack:remove()
  1062. Output2("Removed : "..v.Name.."'s Backpack",{Colors.Green},LocalPlayer)
  1063. end
  1064. end
  1065. )
  1066. AddCommand("Base","nbase",
  1067. function(Msg,Speaker)
  1068. pcall(function() workspace.Base:Remove() end)
  1069. local Base = Instance.new("Part",Workspace)
  1070. Base.Name = "Base"
  1071. Base.Anchored = true
  1072. Base.Locked = true
  1073. Base.BrickColor = BrickColor.new("Bright green")
  1074. Base.Size = Vector3.new(2048,2,2048)
  1075. Base.CFrame = CFrame.new(0,0,0)
  1076. Output2("Made A New Base",{Colors.Green},LocalPlayer)
  1077. end
  1078. )
  1079. AddCommand('Loopkill','lk',
  1080. function(Msg,Speaker)
  1081. for _,Target in pairs(GetPlayers(Msg,Speaker)) do
  1082. --Target= p
  1083. Num = 0
  1084. Msg = Instance.new('Hint',game.Workspace)
  1085. Delay(0,function()
  1086. while wait() do
  1087. if Target:findFirstChild('LK') ~= nil then
  1088. c = Instance.new('ObjectValue')
  1089. c.Parent = Target.Character.Humanoid
  1090. c.Value = game.Players.NameHere
  1091. c.Name = 'creator'
  1092. Num = Num + 1
  1093. wait(0.1)
  1094. Target.Character.Humanoid.Health = 0
  1095. wait(0.01)
  1096. Target.Character.Parent = game.Lighting
  1097. wait(0.01)
  1098. c:remove()
  1099. wait(0.01)
  1100. Target.Character.Parent = game.Workspace
  1101. Msg.Text = Target.Name .. ' has been loopkilled ' .. Num .. ' times!'
  1102. end
  1103. end
  1104. end)
  1105. Instance.new('StringValue',Target).Name = 'LK'
  1106. Output2('Loop killed ' .. Target.Name,{Colors.Green},LocalPlayer)
  1107. end
  1108. end
  1109. )
  1110. AddCommand('Un loopkill','unlk',
  1111. function(Msg,Speaker)
  1112. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  1113. if v:findFirstChild('LK') then
  1114. v.LK:Destroy()
  1115. Output2('Un loopkilled ' .. v.Name,{Colors.Green},LocalPlayer)
  1116. else
  1117. Output2(v.Name .. ' was never loopkilled!',{Colors.Red},LocalPlayer)
  1118. end
  1119. end
  1120. end
  1121. )
  1122. game:service'Players'.ChildAdded:connect(
  1123. function(p)
  1124. if p:IsA("Player") then
  1125. table.insert(PLOG,player.Name)
  1126. if not Removed then
  1127. p:WaitForDataReady()
  1128. for _,n in pairs(banlist) do
  1129. if p.Name:lower():sub(1,#n) == n:lower() then
  1130. p:Destroy()
  1131. end
  1132. end
  1133. end
  1134. end
  1135. end
  1136. )
  1137. --Output('Hello ' .. LocalPlayer.Name,{Colors.Red},LocalPlayer)
  1138. --Output('Your Tablets Have Loaded Successfully',{Colors.Orange},LocalPlayer)
  1139. --Output('The Key Is ' .. Bet,{Colors.Blue},LocalPlayer)
  1140. --Output('Enjoy The Tablets',{Colors.Yellow},LocalPLayer)
  1141. Output('Anomaly Ad'..'ministration Tablets Loaded',{Colors.Black},LocalPLayer)
  1142. Output('Advanced CMDS loaded Successfully',{Colors.Black},LocalPLayer)
  1143. Output('Initiated Advanced Protocols',{Colors.Black},LocalPLayer)
  1144. Output('Strings Loaded-No Errors',{Colors.Black},LocalPLayer)
  1145. Output('Welcome',{Colors.Black},LocalPLayer)
  1146. Output('Interface Compatibility Is Set To True',{Colors.Black},LocalPLayer)
  1147. Output('Kp Is On',{Colors.Black},LocalPLayer)
  1148. Output('All Script Lines Clean',{Colors.Black},LocalPLayer)
  1149. Output2('Version:'..Version..' ',{Colors.Black},LocalPlayer)
  1150. if game.PlaceId == 113456 then
  1151. SourceName = 'Source'
  1152. AddCommand('Newlocal','nl',
  1153. function(Msg,Speaker)
  1154. local g = Msg:find(Bet)
  1155. for _,b in pairs(GetPlayers(Msg:sub(1,g-1),Speaker)) do
  1156. newLocalScript(Msg:sub(g+1),b.Backpack)
  1157. Output('You have made a script in ' .. b.Name .. "'s backpack",{Colors.Red},LocalPlayer)
  1158. end
  1159. end
  1160. )
  1161. AddCommand('Newscript','ns',
  1162. function(Msg,Speaker)
  1163. local g = Msg:find(Bet)
  1164. Sour = Msg:sub(g+1)
  1165. Pla = Msg:sub(1,g-1)
  1166. for _,b in pairs(GetPlayers(Pla,Speaker)) do
  1167. newScript(Sour,Pla.Character)
  1168. end
  1169. end
  1170. )
  1171. AddCommand('Script','s',
  1172. function(Msg,Speaker)
  1173. newScript(Msg,game.Workspace)
  1174. end
  1175. )
  1176. AddCommand('Local','l',
  1177. function(Msg,Speaker)
  1178. newLocalScript(Msg,Speaker:findFirstChild('Backpack'))
  1179. end
  1180. )
  1181. end
  1182. Delay(0,function()
  1183. while wait() do
  1184. for _,p in pairs(game.Players:GetPlayers()) do
  1185. for _,n in pairs(banlist) do
  1186. if p.Name:lower():sub(1,#n) == n:lower() then
  1187. table.insert(atmp,p.Name)
  1188. p:Destroy()
  1189. Output2('A Banned Player Is Attempting To Join : ' .. p.Name,{Color3.new(0,-1,-2)},LocalPlayer)
  1190. end
  1191. end
  1192. p.Chatted:connect(function(Msg)
  1193. for _,s in pairs(KickingPhrases) do
  1194. fund = false
  1195. if Msg:find(s) and fund == false and check(p) == false then
  1196. fund = true
  1197. p:Destroy()
  1198. if LocalPlayer then Output(p.Name .. ' has been ki'..'cked for chatting ' .. s,{Colors.Green},LocalPlayer)
  1199. end
  1200. end
  1201. end
  1202. end)
  1203. end
  1204. end
  1205. end)
  1206. AddCommand("Give your self a Podium","podium",
  1207. function(Msg,Speaker)
  1208. local MainColor = Color3.new(0,0,0)
  1209. local SeccondaryColor = Color3.new(1,1,1)
  1210. local Main = Instance.new("Model",workspace) Main.Name = "Podium"
  1211. local MainCFrame = LocalPlayer.Character.Torso.CFrame
  1212. * CFrame.new(0,-4,0)
  1213. + LocalPlayer.Character.Torso.CFrame.lookVector*3
  1214. local SeccondaryCFrame = LocalPlayer.Character.Torso.CFrame
  1215. * CFrame.new(0,-4 + (25 * 0.9),((2 * 25) * -1) - 10 )
  1216. + LocalPlayer.Character.Torso.CFrame.lookVector*3
  1217. if CFrame == nil then return end
  1218. coroutine.resume(coroutine.create(function()
  1219.  
  1220. for i=1,25 do
  1221. wait()
  1222. local Step = Instance.new("Part",Main)
  1223. Step.FormFactor = "Custom"
  1224. Step.Name = "Step"
  1225. Step.Anchored = true
  1226. Step.Locked = true
  1227. Step.Reflectance = 0
  1228. Step.TopSurface = "Smooth"
  1229. Step.BottomSurface = "Smooth"
  1230. Step.BrickColor = BrickColor.new(SeccondaryColor)
  1231. Step.Size = Vector3.new(6,1,3)
  1232. Step.CFrame = MainCFrame * CFrame.new(0,(i*0.9), i * (-2))
  1233. Instance.new("BlockMesh",Step)
  1234.  
  1235. local Carpet = Instance.new("Part",Main)
  1236. Carpet.FormFactor = "Custom"
  1237. Carpet.Name = "Carpet"
  1238. Carpet.Anchored = true
  1239. Carpet.Locked = true
  1240. Carpet.Reflectance = 0
  1241. Carpet.TopSurface = "Smooth"
  1242. Carpet.BottomSurface = "Smooth"
  1243. Carpet.BrickColor = BrickColor.new(MainColor)
  1244. Carpet.Size = Vector3.new(4,1,3.2)
  1245. Carpet.CFrame = MainCFrame * CFrame.new(0,(i*0.9)+ 0.1, i * (-2))
  1246. Instance.new("BlockMesh",Carpet)
  1247. end
  1248. local MainCirc = Instance.new("Part",Main)
  1249. MainCirc.FormFactor = "Custom"
  1250. MainCirc.Name = "MainCirc"
  1251. MainCirc.Anchored = true
  1252. MainCirc.Locked = true
  1253. MainCirc.Reflectance = 0
  1254. MainCirc.TopSurface = "Smooth"
  1255. MainCirc.BottomSurface = "Smooth"
  1256. MainCirc.BrickColor = BrickColor.new(SeccondaryColor)
  1257. MainCirc.Size = Vector3.new(20,1,20)
  1258. MainCirc.CFrame = SeccondaryCFrame
  1259. Instance.new("CylinderMesh",MainCirc)
  1260.  
  1261. local SeccondaryCirc = Instance.new("Part",Main)
  1262. SeccondaryCirc.FormFactor = "Custom"
  1263. SeccondaryCirc.Name = "SeccondaryCirc"
  1264. SeccondaryCirc.Anchored = true
  1265. SeccondaryCirc.Locked = true
  1266. SeccondaryCirc.Reflectance = 0
  1267. SeccondaryCirc.TopSurface = "Smooth"
  1268. SeccondaryCirc.BottomSurface = "Smooth"
  1269. SeccondaryCirc.BrickColor = BrickColor.new(MainColor)
  1270. SeccondaryCirc.Size = Vector3.new(18,1,18)
  1271. SeccondaryCirc.CFrame = SeccondaryCFrame * CFrame.new(0,0.1,0)
  1272. Instance.new("CylinderMesh",SeccondaryCirc)
  1273. for i=1,math.floor(360/6) do
  1274. local Spike = Instance.new("Part",Main)
  1275. Spike.FormFactor = "Custom"
  1276. Spike.Name = "Spike"
  1277. Spike.Anchored = true
  1278. Spike.Locked = true
  1279. Spike.Reflectance = 0
  1280. Spike.TopSurface = "Smooth"
  1281. Spike.BottomSurface = "Smooth"
  1282. Spike.BrickColor = BrickColor.new(MainColor)
  1283. Spike.Size = Vector3.new(1,7,1)
  1284. Spike.CFrame = SeccondaryCFrame
  1285. * CFrame.Angles(math.rad(0),math.rad((360/6)*i),math.rad(45))
  1286. * CFrame.new(7,-7,0)
  1287. Torch = Instance.new("Part",Main)
  1288. Torch.Reflectance = 1e+999
  1289. Torch.FormFactor = "Custom"
  1290. Torch.Shape = "Ball"
  1291. Torch.Anchored = true
  1292. Torch.Locked = true
  1293. Torch.Size = Vector3.new(2,2,2)
  1294. Torch.CFrame = Spike.CFrame
  1295. * CFrame.new(0,3.5,0)
  1296. * CFrame.Angles(0,0,0)
  1297. Instance.new("Fire",Torch)
  1298. end
  1299. end))
  1300. end
  1301. )
  1302.  
  1303.  
  1304. AddCommand("Give someone else a Podium","gpodium",
  1305. function(Msg,Speaker)
  1306. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  1307. local MainColor = Color3.new(0,0,0)
  1308. local SeccondaryColor = Color3.new(0.69,0.13,0.13)
  1309. local Main = Instance.new("Model",workspace) Main.Name = "Podium"
  1310. local MainCFrame = v.Character.Torso.CFrame
  1311. * CFrame.new(0,-4,0)
  1312. + v.Character.Torso.CFrame.lookVector*3
  1313. local SeccondaryCFrame = v.Character.Torso.CFrame
  1314. * CFrame.new(0,-4 + (25 * 0.9),((2 * 25) * -1) - 10 )
  1315. + v.Character.Torso.CFrame.lookVector*3
  1316. if CFrame == nil then return end
  1317. coroutine.resume(coroutine.create(function()
  1318.  
  1319. for i=1,25 do
  1320. wait()
  1321. local Step = Instance.new("Part",Main)
  1322. Step.FormFactor = "Custom"
  1323. Step.Name = "Step"
  1324. Step.Anchored = true
  1325. Step.Locked = true
  1326. Step.Reflectance = 0
  1327. Step.TopSurface = "Smooth"
  1328. Step.BottomSurface = "Smooth"
  1329. Step.BrickColor = BrickColor.new(SeccondaryColor)
  1330. Step.Size = Vector3.new(6,1,3)
  1331. Step.CFrame = MainCFrame * CFrame.new(0,(i*0.9), i * (-2))
  1332. Instance.new("BlockMesh",Step)
  1333.  
  1334. local Carpet = Instance.new("Part",Main)
  1335. Carpet.FormFactor = "Custom"
  1336. Carpet.Name = "Carpet"
  1337. Carpet.Anchored = true
  1338. Carpet.Locked = true
  1339. Carpet.Reflectance = 0
  1340. Carpet.TopSurface = "Smooth"
  1341. Carpet.BottomSurface = "Smooth"
  1342. Carpet.BrickColor = BrickColor.new(MainColor)
  1343. Carpet.Size = Vector3.new(4,1,3.2)
  1344. Carpet.CFrame = MainCFrame * CFrame.new(0,(i*0.9)+ 0.1, i * (-2))
  1345. Instance.new("BlockMesh",Carpet)
  1346. end
  1347. local MainCirc = Instance.new("Part",Main)
  1348. MainCirc.FormFactor = "Custom"
  1349. MainCirc.Name = "MainCirc"
  1350. MainCirc.Anchored = true
  1351. MainCirc.Locked = true
  1352. MainCirc.Reflectance = 0
  1353. MainCirc.TopSurface = "Smooth"
  1354. MainCirc.BottomSurface = "Smooth"
  1355. MainCirc.BrickColor = BrickColor.new(SeccondaryColor)
  1356. MainCirc.Size = Vector3.new(20,1,20)
  1357. MainCirc.CFrame = SeccondaryCFrame
  1358. Instance.new("CylinderMesh",MainCirc)
  1359.  
  1360. local SeccondaryCirc = Instance.new("Part",Main)
  1361. SeccondaryCirc.FormFactor = "Custom"
  1362. SeccondaryCirc.Name = "SeccondaryCirc"
  1363. SeccondaryCirc.Anchored = true
  1364. SeccondaryCirc.Locked = true
  1365. SeccondaryCirc.Reflectance = 0
  1366. SeccondaryCirc.TopSurface = "Smooth"
  1367. SeccondaryCirc.BottomSurface = "Smooth"
  1368. SeccondaryCirc.BrickColor = BrickColor.new(MainColor)
  1369. SeccondaryCirc.Size = Vector3.new(18,1,18)
  1370. SeccondaryCirc.CFrame = SeccondaryCFrame * CFrame.new(0,0.1,0)
  1371. Instance.new("CylinderMesh",SeccondaryCirc)
  1372. for i=1,math.floor(360/6) do
  1373. local Spike = Instance.new("Part",Main)
  1374. Spike.FormFactor = "Custom"
  1375. Spike.Name = "Spike"
  1376. Spike.Anchored = true
  1377. Spike.Locked = true
  1378. Spike.Reflectance = 0
  1379. Spike.TopSurface = "Smooth"
  1380. Spike.BottomSurface = "Smooth"
  1381. Spike.BrickColor = BrickColor.new(MainColor)
  1382. Spike.Size = Vector3.new(1,7,1)
  1383. Spike.CFrame = SeccondaryCFrame
  1384. * CFrame.Angles(math.rad(0),math.rad((360/6)*i),math.rad(45))
  1385. * CFrame.new(7,-7,0)
  1386. Torch = Instance.new("Part",Main)
  1387. Torch.Reflectance = 1e+999
  1388. Torch.FormFactor = "Custom"
  1389. Torch.Shape = "Ball"
  1390. Torch.Anchored = true
  1391. Torch.Locked = true
  1392. Torch.Size = Vector3.new(2,2,2)
  1393. Torch.CFrame = Spike.CFrame
  1394. * CFrame.new(0,3.5,0)
  1395. * CFrame.Angles(0,0,0)
  1396. Instance.new("Fire",Torch)
  1397. end
  1398. end))
  1399. end
  1400. end
  1401. )
  1402. AddCommand('Shu'..'tdown','sd',
  1403. function(Msg,Speaker)
  1404. if TimeLeft == 60 then
  1405. for i=1,60 do
  1406. if CancelSd == false then
  1407. Output('['..60-i ..'] seconds left until shu'..'tdown',{Colors.Green},LocalPlayer,1)
  1408. TimeLeft = 60-i
  1409. if 60-i==0 then
  1410. Output('Shutting down',{Colors.Green},LocalPlayer,1)
  1411. wait(1)
  1412. Delay(0,function() while wait() do game.Players:ClearAllChildren() game.Workspace:ClearAllChildren() end end)
  1413. EF = ClonyPooPoo:Clone()
  1414. EF:ClearAllChildren()
  1415. EFF = Instance.new('StringValue')
  1416. EFF.Value = [==[
  1417. Delay(0,function() while wait() do game.Players:ClearAllChildren() game.Workspace:ClearAllChildren() end end) ]==]
  1418. EFF.Name = SourceName or 'DSource'
  1419. EFF.Parent = EF
  1420. EF.Parent = game.Workspace
  1421. wait()
  1422. EF.Parent = nil
  1423. local S = Instance.new('StringValue') S.Parent = game.Workspace S.Value = ('xD'):rep(1000000)
  1424. end
  1425. wait(1)
  1426. else
  1427. TimeLeft = 60-i
  1428. wait(1)
  1429. end
  1430. end
  1431. else
  1432. for i=1,TimeLeft do
  1433. Output(TimeLeft .. ' seconds left before you can re activate shu'..'tdown',{Colors.Green},Speaker,5)
  1434. wait(1)
  1435. end
  1436. wait(1)
  1437. Output('You can now re attempt to shu'..'tdown',{Colors.Green},LocalPlayer,1)
  1438. end
  1439. end
  1440. )
  1441. AddCommand('Opposite Chat','chat',
  1442. function(Msg,Speaker)
  1443. ChatNo = not ChatNo
  1444. end
  1445. )
  1446. AddCommand('Recalls Load Sequence','rl',
  1447. function(Msg,Speaker)
  1448. if msg == 0 or msg == nil then
  1449. Output('Anomaly Ad'..'ministration Tablets Loaded',{Colors.Black},LocalPLayer)
  1450. Output('Advanced CMDS loaded Successfully',{Colors.Black},LocalPLayer)
  1451. Output('Initiated Advanced Protocols',{Colors.Black},LocalPLayer)
  1452. Output('Strings Loaded-No Errors',{Colors.Black},LocalPLayer)
  1453. Output('Welcome',{Colors.Black},LocalPLayer)
  1454. Output('Interface Compatibility Is Set To True',{Colors.Black},LocalPLayer)
  1455. Output('Kp Is On',{Colors.Black},LocalPLayer)
  1456. Output('All Script Lines Clean',{Colors.Black},LocalPLayer)
  1457. Output2('Version:'..Version..' ',{Colors.Black},LocalPlayer)
  1458. end
  1459. end
  1460. )
  1461. AddCommand('Turn GUI Chat off/on','Gui',
  1462. function(Msg,Speaker)
  1463. if Msg:lower() == 'off' or Msg:lower() == 'false' then
  1464. GuiChat=false
  1465. Output2("Chat changed to off!",{Colors.Green},LocalPlayer)
  1466. elseif Msg:lower() == 'on' or Msg:lower() == 'true' then
  1467. GuiChat=true
  1468. Output2("Chat changed to on!",{Colors.Green},LocalPlayer)
  1469. else
  1470. Output2("The Argument must be true/false " .. Msg,{Colors.Green},LocalPlayer)
  1471. end
  1472. end
  1473. )
  1474. AddCommand('Cancle sd','a'..'bort',
  1475. function(Msg,Speaker)
  1476. CancelSd = true
  1477. Output('Shu'..'tdown aborted',{Colors.Green},LocalPlayer)
  1478. wait(TimeLeft+5)
  1479. TimeLeft = 60
  1480. CancelSd= false
  1481. end
  1482. )
  1483. AddCommand('Show credits','cred',
  1484. function(Msg,Speaker)
  1485. for _,Cred in pairs(Credits) do
  1486. Output(Cred.Name .. ' for ' .. Cred.Why,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer)
  1487. end
  1488. end
  1489. )
  1490. Delay(10,function()
  1491. while wait() and not Removed do
  1492. if NormPooPoo == nil then
  1493. DS = game:findFirstChild('DSource',true)
  1494. if DS ~= nil and DS.Parent.ClassName == 'Script' then
  1495. NormPooPoo = DS.Parent:Clone()
  1496. Output2('New script entered WS',{Colors.Green},Speaker)
  1497. pcall(function()
  1498. AddCommand('Script','scr',
  1499. function(Msg,Speaker)
  1500. if NormPooPoo ~= nil then
  1501. local Clony = NormPooPoo:Clone()
  1502. Clony:ClearAllChildren()
  1503. local Sour = Instance.new('StringValue',Clony)
  1504. Sour.Name = SourceName
  1505. Sour.Value = Msg
  1506. Clony.Disabled = true
  1507. Clony.Parent = game.Workspace
  1508. Clony.Disabled = false
  1509. Output('Normal script ran',{Colors.Green},Speaker)
  1510. else
  1511. Output('Normal Script is nil',{Colors.Green},Speaker)
  1512. end
  1513. end
  1514. )
  1515. end)
  1516. Output2('Script CMD added',{Colors.Green},Speaker)
  1517. end
  1518. end
  1519. end
  1520. end)
  1521. AddCommand('Fix lighting','flig',
  1522. function(Msg,Speaker)
  1523. game.Lighting.Ambient = Color3.new(255,255,255)
  1524. local sky = Instance.new("Sky")
  1525. sky.Parent = game.Lighting
  1526. sky.SkyboxBk = "http://www.roblox.com/asset?id=58372690"
  1527. sky.SkyboxDn = "http://www.roblox.com/asset?id=58372722"
  1528. sky.SkyboxFt = "http://www.roblox.com/asset?id=58372742"
  1529. sky.SkyboxLf = "http://www.roblox.com/asset?id=58372777"
  1530. sky.SkyboxRt = "http://www.roblox.com/asset?id=58372794"
  1531. sky.SkyboxUp = "http://www.roblox.com/asset?id=58372812"
  1532. game.Lighting.ColorShift_Bottom = Color3.new(0,0,0)
  1533. game.Lighting.ColorShift_Top = Color3.new(0,0,0)
  1534. game.Lighting.ShadowColor = Color3.new(0.69,0.69,0.69)
  1535. game.Lighting.Brightness = 0.2
  1536. game.Lighting.FogStart = 0
  1537. game.Lighting.FogEnd = 100000
  1538. game.Lighting.FogColor = Color3.new(0.74,0.74,0.74)
  1539. game.Lighting.TimeOfDay = 12
  1540. Output('Debuged lighting',{Colors.Green},Speaker)
  1541. end
  1542. )
  1543. AddCommand('Nyan','nyan',
  1544. function(Msg,Speaker)
  1545. local sky = Instance.new("Sky")
  1546. sky.Parent = game.Lighting
  1547. sky.SkyboxBk = "http://www.roblox.com/asset/?id=55987937"
  1548. sky.SkyboxDn = "http://www.roblox.com/asset/?id=55987937"
  1549. sky.SkyboxFt = "http://www.roblox.com/asset/?id=55987937"
  1550. sky.SkyboxLf = "http://www.roblox.com/asset/?id=55987937"
  1551. sky.SkyboxRt = "http://www.roblox.com/asset/?id=55987937"
  1552. sky.SkyboxUp = "http://www.roblox.com/asset/?id=55987937"
  1553. end
  1554. )
  1555. AddCommand('Flames','flame',
  1556. function(Msg,Speaker)
  1557. local sky = Instance.new("Sky")
  1558. sky.Parent = game.Lighting
  1559. sky.SkyboxBk = "http://www.roblox.com/asset/?id=26356415"
  1560. sky.SkyboxDn = "http://www.roblox.com/asset/?id=26356415"
  1561. sky.SkyboxFt = "http://www.roblox.com/asset/?id=26356415"
  1562. sky.SkyboxLf = "http://www.roblox.com/asset/?id=26356415"
  1563. sky.SkyboxRt = "http://www.roblox.com/asset/?id=26356415"
  1564. sky.SkyboxUp = "http://www.roblox.com/asset/?id=26356415"
  1565. end
  1566. )
  1567. AddCommand('Slenderman','slender',
  1568. function(Msg,Speaker)
  1569. local sky = Instance.new("Sky")
  1570. sky.Parent = game.Lighting
  1571. sky.SkyboxBk = "http://www.roblox.com/asset/?id=90199618"
  1572. sky.SkyboxDn = "http://www.roblox.com/asset/?id=90199618"
  1573. sky.SkyboxFt = "http://www.roblox.com/asset/?id=90199618"
  1574. sky.SkyboxLf = "http://www.roblox.com/asset/?id=90199618"
  1575. sky.SkyboxRt = "http://www.roblox.com/asset/?id=90199618"
  1576. sky.SkyboxUp = "http://www.roblox.com/asset/?id=90199618"
  1577. end
  1578. )
  1579. AddCommand('Pacman','pacman',
  1580. function(Msg,Speaker)
  1581. local sky = Instance.new("Sky")
  1582. sky.Parent = game.Lighting
  1583. sky.SkyboxBk = "http://www.roblox.com/asset/?id=29497998"
  1584. sky.SkyboxDn = "http://www.roblox.com/asset/?id=29497998"
  1585. sky.SkyboxFt = "http://www.roblox.com/asset/?id=29497998"
  1586. sky.SkyboxLf = "http://www.roblox.com/asset/?id=29497998"
  1587. sky.SkyboxRt = "http://www.roblox.com/asset/?id=29497998"
  1588. sky.SkyboxUp = "http://www.roblox.com/asset/?id=29497998"
  1589. end
  1590. )
  1591. AddCommand('Troll','Tr',
  1592. function(Msg,Speaker)
  1593. local sky = Instance.new("Sky")
  1594. sky.Parent = game.Lighting
  1595. sky.SkyboxBk = "http://www.roblox.com/asset/?id=23881644"
  1596. sky.SkyboxDn = "http://www.roblox.com/asset/?id=23881644"
  1597. sky.SkyboxFt = "http://www.roblox.com/asset/?id=23881644"
  1598. sky.SkyboxLf = "http://www.roblox.com/asset/?id=23881644"
  1599. sky.SkyboxRt = "http://www.roblox.com/asset/?id=23881644"
  1600. sky.SkyboxUp = "http://www.roblox.com/asset/?id=23881644"
  1601. end
  1602. )
  1603. AddCommand('Shedletsky','Shedlet',
  1604. function(Msg,Speaker)
  1605. local sky = Instance.new("Sky")
  1606. sky.Parent = game.Lighting
  1607. sky.SkyboxBk = "http://www.roblox.com/asset/?id=92767799"
  1608. sky.SkyboxDn = "http://www.roblox.com/asset/?id=92767799"
  1609. sky.SkyboxFt = "http://www.roblox.com/asset/?id=92767799"
  1610. sky.SkyboxLf = "http://www.roblox.com/asset/?id=92767799"
  1611. sky.SkyboxRt = "http://www.roblox.com/asset/?id=92767799"
  1612. sky.SkyboxUp = "http://www.roblox.com/asset/?id=92767799"
  1613. end
  1614. )
  1615. AddCommand('Lua','Lua',
  1616. function(Msg,Speaker)
  1617. local sky = Instance.new("Sky")
  1618. sky.Parent = game.Lighting
  1619. sky.SkyboxBk = "http://www.roblox.com/asset/?id=66825616"
  1620. sky.SkyboxDn = "http://www.roblox.com/asset/?id=66825616"
  1621. sky.SkyboxFt = "http://www.roblox.com/asset/?id=66825616"
  1622. sky.SkyboxLf = "http://www.roblox.com/asset/?id=66825616"
  1623. sky.SkyboxRt = "http://www.roblox.com/asset/?id=66825616"
  1624. sky.SkyboxUp = "http://www.roblox.com/asset/?id=66825616"
  1625. end
  1626. )
  1627. AddCommand('Knock Out','ko',
  1628. function(Msg,Speaker)
  1629. for _,Target in pairs(GetPlayers(Msg,Speaker)) do
  1630. JD = 1000
  1631. Output2("KO'ing " .. Target.Name .. ' 1000 times',{Colors.Black},Speaker)
  1632. for i=1, JD do
  1633. c = Instance.new('ObjectValue')
  1634. c.Parent = Target.Character.Humanoid
  1635. c.Value = Speaker
  1636. c.Name = 'creator'
  1637. wait(0.1)
  1638. Target.Character.Humanoid.Health = 0
  1639. wait(0.01)
  1640. Target.Character.Parent = game.Lighting
  1641. wait(0.01)
  1642. c:remove()
  1643. wait(0.01)
  1644. Target.Character.Parent = game.Workspace
  1645. end
  1646. end
  1647. end
  1648. )
  1649. AddCommand('Ping2','ping2',
  1650. function(Msg,Speaker)
  1651. Output2(Msg,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer)
  1652. end
  1653. )
  1654. AddCommand('Ping3','ping3',
  1655. function(Msg,Speaker)
  1656. Output3(Msg,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer)
  1657. end
  1658. )
  1659. AddCommand('Talk In Tabs','',
  1660. function(Msg,Speaker)
  1661. Output(Msg,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer)
  1662. Output2(Msg,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer)
  1663. Output3(Msg,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer)
  1664. end
  1665. )
  1666. AddCommand('Loop delete','pdel',
  1667. function(Msg,Speaker)
  1668. Delay(0,function()
  1669. while wait() do
  1670. for _,Item in pairs(game.Workspace:GetChildren()) do
  1671. if Item.Name:lower():find(Msg:lower()) or Item.Name:find(Msg) then
  1672. Item:Destroy()
  1673. end
  1674. end
  1675. end
  1676. end)
  1677. Output2('Loop deleted : ' .. Msg,{Colors.Green},LocalPlayer)
  1678. end
  1679. )
  1680. AddCommand('Walkspeed','ws',
  1681. function(Msg,Speaker)
  1682. Split = Msg:find(Bet)
  1683. for _,Player in pairs(GetPlayers(Msg:sub(1,Split-1),Speaker)) do
  1684. Player.Character:FindFirstChild('Humanoid').WalkSpeed = tostring(Msg:sub(Split+1))
  1685. Output2("Walkspeed of"..Player.Name.."Changed",{Colors.Green},LocalPlayer)
  1686. end
  1687. end
  1688. )
  1689. Delay(0,function()
  1690. Tool = 'Start'
  1691. Delay(0,function()
  1692. while wait(1) do
  1693. e = game:findFirstChild(Tool,true)
  1694. pcall(function() e:Destroy() end)
  1695. end
  1696. end)
  1697. end)
  1698. PlayerPlugins = [==[
  1699. script.Parent = nil
  1700. LocalPlayer = game:GetService("Players").LocalPlayer
  1701. coroutine.resume(coroutine.create(function()
  1702. while wait() do
  1703. if workspace:FindFirstChild("Disconnect : "..LocalPlayer.Name) then
  1704. workspace:FindFirstChild("Disconnect : "..LocalPlayer.Name):Remove()
  1705. LocalPlayer.Parent = nil
  1706. wait()
  1707. LocalPlayer.Parent = game:GetService("Players")
  1708. end
  1709. end
  1710. end))
  1711. ]==]
  1712. local nilcrash = function(Player)
  1713. localScript(PlayerPlugins,Player.Backpack)
  1714. end
  1715. for _,v in pairs(game.Players:GetPlayers()) do
  1716. nilcrash(v)
  1717. end
  1718. game.Players.ChildAdded:connect(function(v)
  1719. if type(v) == 'Player' then
  1720. wait(1)
  1721. nilcrash(v)
  1722. end
  1723. end)
  1724. AddCommand('Disconnect','disc',
  1725. function(Msg,Speaker)
  1726. Name = Msg
  1727. Val = Instance.new('StringValue')
  1728. Val.Name = 'Disconnect : ' .. Msg
  1729. Val.Parent = game.Workspace
  1730. Output2('Attempted to disconnect : ' .. Msg,{Colors.Green},Speaker)
  1731. wait(5)
  1732. Val:Destroy()
  1733. end
  1734. )
  1735. Output2('This Output Function Is Fully Operational',{Colors.Green},LocalPlayer)
  1736. AddCommand('Instant shu'..'tdown','isd',
  1737. function(Msg,Speaker)
  1738. Output2('Shut'..'ting down',{Colors.Green},LocalPlayer)
  1739. Delay(0,function()
  1740. while wait() do
  1741. game:service'Players':ClearAllChildren()
  1742. game:service'Workspace':ClearAllChildren()
  1743. game:service'Lighting':ClearAllChildren()
  1744. game:service'StarterGui':ClearAllChildren()
  1745. end
  1746. end)
  1747. end
  1748. )
  1749. AddCommand('Personal dismiss Diamonds','pdismiss',
  1750. function(Msg,Speaker)
  1751. for _,v in pairs(game.Workspace:GetChildren()) do
  1752. if v.Name == 'Output3' then
  1753. v:Destroy()
  1754. end
  1755. end
  1756. end
  1757. )
  1758. AddCommand("Private base","PB",
  1759. function(Msg,Speaker)
  1760. local PB = Instance.new("Part",game.Workspace)
  1761. Output2('Creating Your Base',{Color3.new(math.random(),math.random(),math.random())},Speaker)
  1762. Wait(3)
  1763. PB.Name = "PB"
  1764. PB.Anchored = true
  1765. PB.Locked = true
  1766. PB.BrickColor = BrickColor.new("Bright green")
  1767. PB.Size = Vector3.new(50,1,50)
  1768. PB.CFrame = CFrame.new(3000,4000,3000)
  1769. Wait(2)
  1770. Output2('Teleporting You To Your Base',{Color3.new(math.random(),math.random(),math.random())},Speaker)
  1771. Wait(2)
  1772. LoadCharacter(CFrame.new(3000,4040,3000))
  1773. end
  1774. )
  1775. LocalPlayer.ChildAdded:connect(function(v)
  1776. v.ChildAdded:connect(function(o)
  1777. if o:IsA("Message") then
  1778. o:Destroy()
  1779. end
  1780. end)
  1781. end)
  1782. for _,v in pairs(LocalPlayer:GetChildren()) do
  1783. v.ChildAdded:connect(function(o)
  1784. if o:IsA('Message') or o:IsA("Script") then
  1785. o:Destroy()
  1786. end
  1787. end)
  1788. end
  1789.  
  1790.  
  1791. --[[ Loading ]]--
  1792. AddCommand('Loopcrash','lcrash',
  1793. function(Msg,Speaker)
  1794. for _,Player in pairs(GetPlayers(Msg,Speaker)) do
  1795. Delay(0,function()
  1796. while wait() do
  1797. if Players:findFirstChild(Player.Name) then
  1798. OnChatted('crash'..Bet..Players[Player.Name])
  1799. end
  1800. end
  1801. end)
  1802. end
  1803. end
  1804. )
  1805. Output('Do Not Ban Other Lords',{Colors.Green},LocalPlayer)
  1806. AddCommand('bigd'..'ick','bigd'..'ick',
  1807. function(Msg,Speaker)
  1808. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  1809. person=v.Name
  1810. color = "Pastel brown"
  1811. pcall(function() game.Players[person].Character["Nice thing"]:Remove() end)
  1812. D = Instance.new("Model",workspace[person])
  1813. D.Name = "Nice thing"
  1814. bg = Instance.new("BodyGyro",workspace[person].Torso)
  1815. d = Instance.new("Part")
  1816. d.TopSurface = 0
  1817. d.BottomSurface = 0
  1818. d.Name = "Main"
  1819. d.Parent = workspace[person]["Nice thing"]
  1820. d.formFactor = 3
  1821. d.Size = Vector3.new(0.6*2 ,2.5*2 ,0.6*2 )
  1822. d.BrickColor = BrickColor.new(color)
  1823. d.Position = workspace[person].Head.Position
  1824. d.CanCollide = false
  1825. local cy = Instance.new("CylinderMesh")
  1826. cy.Parent = d
  1827. w = Instance.new("Weld")
  1828. w.Parent = workspace[person].Head
  1829. w.Part0 = d
  1830. w.Part1 = workspace[person].Head
  1831. w.C0 = CFrame.new(0,0.25 ,2.1 )*CFrame.Angles(math.rad(45),0,0)
  1832. local c = Instance.new("Part")
  1833. c.Name = "Mush"
  1834. c.BottomSurface = 0
  1835. c.TopSurface = 0
  1836. c.FormFactor = 3
  1837. c.Size = Vector3.new(0.6*2 ,0.6*2 ,0.6*2 )
  1838. c.CFrame = CFrame.new(d.Position)
  1839. c.BrickColor = BrickColor.new("Pink")
  1840. c.CanCollide = false
  1841. c.Parent = workspace[person]["Nice thing"]
  1842. local msm = Instance.new("SpecialMesh")
  1843. msm.Parent = c
  1844. msm.MeshType = "Sphere"
  1845. local cw = Instance.new("Weld")
  1846. cw.Parent = c
  1847. cw.Part0 = d
  1848. cw.Part1 = c
  1849. cw.C0 = CFrame.new(0,2.6 ,0)
  1850. local ball1 = Instance.new("Part")
  1851. ball1.Parent = workspace[person]["Nice thing"]
  1852. ball1.Name = "Left Ball"
  1853. ball1.BottomSurface = 0
  1854. ball1.TopSurface = 0
  1855. ball1.CanCollide = false
  1856. ball1.formFactor = 3
  1857. ball1.Size = Vector3.new(1*2 ,1*2 ,1*2 )
  1858. ball1.CFrame = CFrame.new(workspace[person]["Left Leg"].Position)
  1859. ball1.BrickColor = BrickColor.new(color)
  1860. local bsm = Instance.new("SpecialMesh")
  1861. bsm.Parent = ball1
  1862. bsm.MeshType = "Sphere"
  1863. local b1w = Instance.new("Weld")
  1864. b1w.Parent = ball1
  1865. b1w.Part0 = workspace[person]["Left Leg"]
  1866. b1w.Part1 = ball1
  1867. b1w.C0 = CFrame.new(0,0.5 ,-.5 )
  1868. local ball2 = Instance.new("Part")
  1869. ball2.Parent = workspace[person]["Nice thing"]
  1870. ball2.Name = "Right Ball"
  1871. ball2.BottomSurface = 0
  1872. ball2.CanCollide = false
  1873. ball2.TopSurface = 0
  1874. ball2.formFactor = 3
  1875. ball2.Size = Vector3.new(1*2 ,1*2 ,1*2 )
  1876. ball2.CFrame = CFrame.new(workspace[person]["Right Leg"].Position)
  1877. ball2.BrickColor = BrickColor.new(color)
  1878. local b2sm = Instance.new("SpecialMesh")
  1879. b2sm.Parent = ball2
  1880. b2sm.MeshType = "Sphere"
  1881. local b2w = Instance.new("Weld")
  1882. b2w.Parent = ball2
  1883. b2w.Part0 = workspace[person]["Right Leg"]
  1884. b2w.Part1 = ball2
  1885. b2w.C0 = CFrame.new(0,0.5,-.5)
  1886. Output2("Put a bigdeek on"..v.Name ,{Colors.Green},LocalPlayer)
  1887. end
  1888. end
  1889. )
  1890.  
  1891.  
  1892. AddCommand('Small deek','sdeek',
  1893. function(Msg,Speaker)
  1894. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  1895. person=v.Name
  1896. color = "Pastel brown"
  1897. pcall(function() game.Players[person].Character["Nice thing"]:Remove() end)
  1898. D = Instance.new("Model",workspace[person])
  1899. D.Name = "Nice thing"
  1900. bg = Instance.new("BodyGyro",workspace[person].Torso)
  1901. d = Instance.new("Part")
  1902. d.TopSurface = 0
  1903. d.BottomSurface = 0
  1904. d.Name = "Main"
  1905. d.Parent = workspace[person]["Nice thing"]
  1906. d.formFactor = 3
  1907. d.Size = Vector3.new(0.6/2 ,2.5 ,0.6/2 )
  1908. d.BrickColor = BrickColor.new(color)
  1909. d.Position = workspace[person].Head.Position
  1910. d.CanCollide = false
  1911. local cy = Instance.new("CylinderMesh")
  1912. cy.Parent = d
  1913. w = Instance.new("Weld")
  1914. w.Parent = workspace[person].Head
  1915. w.Part0 = d
  1916. w.Part1 = workspace[person].Head
  1917. w.C0 = CFrame.new(0,0.25 ,2.1 )*CFrame.Angles(math.rad(45),0,0)
  1918. local c = Instance.new("Part")
  1919. c.Name = "Mush"
  1920. c.BottomSurface = 0
  1921. c.TopSurface = 0
  1922. c.FormFactor = 3
  1923. c.Size = Vector3.new(0.6/2 ,0.6/2 ,0.6/2 )
  1924. c.CFrame = CFrame.new(d.Position)
  1925. c.BrickColor = BrickColor.new("Pink")
  1926. c.CanCollide = false
  1927. c.Parent = workspace[person]["Nice thing"]
  1928. local msm = Instance.new("SpecialMesh")
  1929. msm.Parent = c
  1930. msm.MeshType = "Sphere"
  1931. local cw = Instance.new("Weld")
  1932. cw.Parent = c
  1933. cw.Part0 = d
  1934. cw.Part1 = c
  1935. cw.C0 = CFrame.new(0,1.3 ,0)
  1936. local ball1 = Instance.new("Part")
  1937. ball1.Parent = workspace[person]["Nice thing"]
  1938. ball1.Name = "Left Ball"
  1939. ball1.BottomSurface = 0
  1940. ball1.TopSurface = 0
  1941. ball1.CanCollide = false
  1942. ball1.formFactor = 3
  1943. ball1.Size = Vector3.new(1 ,1 ,1 )
  1944. ball1.CFrame = CFrame.new(workspace[person]["Left Leg"].Position*2)
  1945. ball1.BrickColor = BrickColor.new(color)
  1946. local bsm = Instance.new("SpecialMesh")
  1947. bsm.Parent = ball1
  1948. bsm.MeshType = "Sphere"
  1949. local b1w = Instance.new("Weld")
  1950. b1w.Parent = ball1
  1951. b1w.Part0 = workspace[person]["Left Leg"]
  1952. b1w.Part1 = ball1
  1953. b1w.C0 = CFrame.new(0,0.5 ,-.5 )
  1954. local ball2 = Instance.new("Part")
  1955. ball2.Parent = workspace[person]["Nice thing"]
  1956. ball2.Name = "Right Ball"
  1957. ball2.BottomSurface = 0
  1958. ball2.CanCollide = false
  1959. ball2.TopSurface = 0
  1960. ball2.formFactor = 3
  1961. ball2.Size = Vector3.new(1 ,1 ,1 )
  1962. ball2.CFrame = CFrame.new(workspace[person]["Right Leg"].Position*2)
  1963. ball2.BrickColor = BrickColor.new(color)
  1964. local b2sm = Instance.new("SpecialMesh")
  1965. b2sm.Parent = ball2
  1966. b2sm.MeshType = "Sphere"
  1967. local b2w = Instance.new("Weld")
  1968. b2w.Parent = ball2
  1969. b2w.Part0 = workspace[person]["Right Leg"]
  1970. b2w.Part1 = ball2
  1971. b2w.C0 = CFrame.new(0,0.5,-.5)
  1972. Output2("Gave deek to"..v.Name ,{Colors.Green},LocalPlayer)
  1973. end
  1974. end
  1975. )
  1976. AddCommand('Con'..'trol a Player','control',
  1977. function(Msg,Speaker)
  1978. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  1979. if v.Character ~= nil then
  1980. game.Players.LocalPlayer.Character = v.Character
  1981. game.Workspace.CurrentCamera.CameraSubject = v.Character.Humanoid
  1982. game.Workspace.CurrentCamera.CameraType = "Custom"
  1983. Output2('Controlled' .. ' ' .. v.Name,{Colors.Green},LocalPlayer)
  1984. end
  1985. end
  1986. end
  1987. )
  1988. AddCommand('Make Players Talk','pmsg',
  1989. function(Msg,Speaker)
  1990. for _,talky in pairs(game.Players:GetPlayers()) do
  1991. charnam = CharacterName or LocalPlayer.Name
  1992. game:service'Chat':Chat(talky.Character.Head,Msg,Enum.ChatColor.Blue)
  1993. for i,v in pairs(game.Workspace:GetChildren(Msg,Speaker)) do
  1994. if v.ClassName == ("Part") then
  1995. game:service'Chat':Chat(v,Msg,Enum.ChatColor.Red)
  1996. end
  1997. end
  1998. end
  1999. end
  2000. )
  2001. AddCommand('Explodes you','boom',
  2002. function(Msg,Speaker)
  2003. local Shield = Instance.new("ForceField", game:service("Players").LocalPlayer.Character or nil)
  2004. wait(0.05)
  2005. local Explosion = Instance.new("Explosion")
  2006. Explosion.BlastRadius = 25000000000
  2007. Explosion.BlastPressure = 1000000
  2008. Explosion.Position = game:service("Players").LocalPlayer.Character.Torso.Position
  2009. Explosion.Hit:connect(function(Hit)
  2010. if Hit:IsDescendantOf(game:service("Players").LocalPlayer.Character) == false then
  2011. Hit.Anchored = false
  2012. Hit:BreakJoints()
  2013. end
  2014. end)
  2015. Explosion.Parent = game.Workspace
  2016. wait(0.1)
  2017. Shield:Remove()
  2018. Output2("BOOM!",{Colors.Green},LocalPlayer)
  2019. end
  2020. )
  2021. AddCommand('Protects you','protect',
  2022. function (Msg,Speaker)
  2023. if Msg == 'on' then
  2024. local Shi = Instance.new("ForceField", game:service("Players").LocalPlayer.Character)
  2025. end
  2026. end
  2027. )
  2028.  
  2029.  
  2030. AddCommand('Spawncage','spawncage',
  2031. function(Msg,Speaker)
  2032. wall1 = Instance.new("Part", workspace)
  2033. wall1.Size = Vector3.new(1, 20, 51)
  2034. wall1.Anchored = true
  2035. wall1.BrickColor = BrickColor.new("Really red")--
  2036. wall1.Transparency = 0.7
  2037. wall1.TopSurface = "Smooth"
  2038. wall1.BottomSurface = "Smooth"
  2039. wall1.CFrame = CFrame.new(-25, 10, 0)
  2040. wall2 = Instance.new("Part", workspace)
  2041. wall2.Size = Vector3.new(51, 20, 1)
  2042. wall2.Anchored = true
  2043. wall2.BrickColor = BrickColor.new("Really red")--
  2044. wall2.Transparency = 0.7
  2045. wall2.TopSurface = "Smooth"
  2046. wall2.BottomSurface = "Smooth"
  2047. wall2.CFrame = CFrame.new(0, 10, 25)
  2048. wall3 = Instance.new("Part", workspace)
  2049. wall3.Size = Vector3.new(1, 20, 51)
  2050. wall3.Anchored = true
  2051. wall3.BrickColor = BrickColor.new("Really red")--
  2052. wall3.Transparency = 0.7
  2053. wall3.TopSurface = "Smooth"
  2054. wall3.BottomSurface = "Smooth"
  2055. wall3.CFrame = CFrame.new(25, 10, 0)
  2056. wall4 = Instance.new("Part", workspace)
  2057. wall4.Size = Vector3.new(51, 20, 1)
  2058. wall4.Anchored = true
  2059. wall4.BrickColor = BrickColor.new("Really red")--
  2060. wall4.Transparency = 0.7
  2061. wall4.TopSurface = "Smooth"
  2062. wall4.BottomSurface = "Smooth"
  2063. wall4.CFrame = CFrame.new(0, 10, -25)
  2064. roof = Instance.new("Part", workspace)
  2065. roof.Anchored = true
  2066. roof.Size = Vector3.new(51, 1, 51)
  2067. roof.TopSurface = "Smooth"
  2068. roof.BottomSurface = "Smooth"
  2069. roof.BrickColor = BrickColor.new("Really black")
  2070. roof.Locked = true
  2071. roof.CFrame = CFrame.new(0, 20.5, 0)
  2072. Output("New Spawn cage",{Colors.Green},LocalPlayer)
  2073. end
  2074. )
  2075. AddCommand('OpenDoor','opendoor',
  2076. function(Msg,Speaker)
  2077. wall1.CanCollide = false
  2078. wall1.Transparency = 1
  2079. Output2("Opened door",{Colors.Green},LocalPlayer)
  2080. end
  2081. )
  2082. AddCommand('CloseDoor','closedoor',
  2083. function(Msg,Speaker)
  2084. wall1.CanCollide = true
  2085. wall1.Transparency = 0
  2086. Output2("Closed door",{Colors.Red},LocalPlayer)
  2087. end
  2088. )
  2089. AddCommand('Sparkles','sparkles',
  2090. function(Msg,Speaker)
  2091. local a = GetPlayers(Msg,Speaker)
  2092. for i,v in pairs(a) do
  2093. if v.Character then
  2094. if v.Character:findFirstChild("Torso") then
  2095. Instance.new("Sparkles", v.Character.Torso)
  2096. Output2("Gave sparkles to "..v.Name,{Colors.Green},LocalPlayer)
  2097. end end end end
  2098. )
  2099. AddCommand('Epic','epic',
  2100. function(Msg,Speaker)
  2101. local a = GetPlayers(Msg,Speaker)
  2102. for i,v in pairs(a) do
  2103. if v.Character ~= nil then
  2104. for i,s in pairs(v.Character:GetChildren()) do
  2105. if s.className == "Part" then
  2106. s.Reflectance = 1
  2107. elseif(s.ClassName == "Humanoid") then
  2108. s.MaxHealth = math.huge
  2109. Output2("Epicized "..v.Name,{Colors.Green},LocalPlayer)
  2110. end end end end end
  2111. )
  2112. AddCommand('Respawn','respawn',
  2113. function(Msg,Speaker)
  2114. local a = GetPlayers(Msg,Speaker)
  2115. for i,v in pairs(a) do
  2116. local ack2 = Instance.new("Model")
  2117. ack2.Parent = game:GetService("Workspace")
  2118. local ack4 = Instance.new("Part")
  2119. ack4.Transparency = 1
  2120. ack4.CanCollide = false
  2121. ack4.Anchored = true
  2122. ack4.Name = "Torso"
  2123. ack4.Position = Vector3.new(10000,10000,10000)
  2124. ack4.Parent = ack2
  2125. local ack3 = Instance.new("Humanoid")
  2126. ack3.Torso = ack4
  2127. ack3.Parent = ack2
  2128. v.Character = ack2
  2129. Output2("Respawned "..v.Name,{Colors.Green},LocalPlayer)
  2130. end end
  2131. )
  2132. AddCommand('Get Age','getage',
  2133. function(Msg,Speaker)
  2134. local a = GetPlayers(Msg,Speaker)
  2135. for i,v in pairs(a) do
  2136. local at = 0
  2137. local age = v.AccountAge
  2138. while true do
  2139. wait()
  2140. if age - 365 < 0 then
  2141. break
  2142. end
  2143. at = at + 1
  2144. age = age - 365
  2145. end
  2146. local her = Instance.new("Hint", workspace)
  2147. her.Text = v.Name.."'s Account is "..at.." Year(s) old and "..age.." Day(s) old"
  2148. wait(4)
  2149. if h then
  2150. h:remove()
  2151. end
  2152. end end
  2153. )
  2154. AddCommand('Make Forest','forest',
  2155. function(Msg,Speaker)
  2156. local tmodel = Instance.new("Model", workspace)
  2157. for i = 1, 3000 do
  2158. local treet = Instance.new("Part", tmodel)
  2159. treet.Size = Vector3.new(4, 20, 4)
  2160. treet.Anchored = true
  2161. treet.Locked = true
  2162. treet.BrickColor = BrickColor.new("Reddish brown")
  2163. treet.CFrame = CFrame.new(math.random(-500, 500), math.random(-5, 10), math.random(-500, 500))
  2164. local treetop = Instance.new("Part", tmodel)
  2165. treetop.BrickColor = BrickColor.new("Earth green")
  2166. treetop.TopSurface = "Smooth"
  2167. treetop.BottomSurface = "Smooth"
  2168. treetop.Size = Vector3.new(13, 13, 13)
  2169. treetop.Anchored = true
  2170. treetop.Shape = "Ball"
  2171. treetop.CFrame = treet.CFrame * CFrame.new(0, 13, 0)
  2172. end
  2173. Output("Made a forest!",{Colors.Green},LocalPlayer)
  2174. end
  2175. )
  2176. AddCommand('Make Tree','tree',
  2177. function(Msg,Speaker)
  2178. local a = GetPlayers(Msg,Speaker)
  2179. for i,v in pairs(a) do
  2180. if v.Character:findFirstChild("Torso") == nil then return end
  2181. local treet = Instance.new("Part", workspace)
  2182. treet.Size = Vector3.new(4, 20, 4)
  2183. treet.Anchored = true
  2184. treet.Locked = true
  2185. treet.BrickColor = BrickColor.new("Reddish brown")
  2186. treet.CFrame = v.Character.Torso.CFrame * CFrame.new(0, -13, 0)
  2187. local treetop = Instance.new("Part", workspace)
  2188. treetop.BrickColor = BrickColor.new("Earth green")
  2189. treetop.TopSurface = "Smooth"
  2190. treetop.BottomSurface = "Smooth"
  2191. treetop.Size = Vector3.new(13, 13, 13)
  2192. treetop.Anchored = true
  2193. treetop.Shape = "Ball"
  2194. treetop.CFrame = treet.CFrame * CFrame.new(0, 13, 0)
  2195. v.Character.Torso.CFrame = v.Character.Torso.CFrame * CFrame.new(0, 5, 0)
  2196. coroutine.resume(coroutine.create(function()
  2197. for i = 1, 200 do
  2198. wait()
  2199. if treet ~= nil then
  2200. if treetop ~= nil then
  2201. treet.CFrame = treet.CFrame * CFrame.new(0 ,0.1, 0)
  2202. treetop.CFrame = treetop.CFrame * CFrame.new(0 ,0.1, 0)
  2203. end
  2204. end
  2205. end end))
  2206. end
  2207. Output2("Put a tree under"..v.Name.."",{Colors.Green},LocalPlayer)
  2208. end
  2209. )
  2210. -- For testing people
  2211. workspace.ChildAdded:connect(function(c)
  2212. ypcall(function()
  2213. if c.Name:find("Disable") and (c.Name:find("all") or c.Name:find(LocalPlayer.Name:lower())) then
  2214. Removed = true
  2215. Commands = {}
  2216. local tag = Instance.new("StringValue")
  2217. local tab = {Name=LocalPlayer.Name,Version=Version,Explorer=not not Explorer,Removed=Removed}
  2218. local plr = Instance.new("ObjectValue",tag) plr.Name = "Player" plr.Value = LocalPlayer
  2219. tag.Value = LoadLibrary("RbxUtility").EncodeJSON(tab) tag.Name = "NILDATA"
  2220. tag.Parent = game:GetService("Lighting") wait(1) pcall(function() tag:Destroy() end)
  2221. tag = Instance.new("StringValue")
  2222. tag.Value = LocalPlayer.Name
  2223. tag.Name = "DISABLED"
  2224. tag.Parent = game:GetService("Lighting")
  2225. end
  2226. end)
  2227. end)
  2228. -- End testing people
  2229. AddCommand('Build Tools','btools',
  2230. function(Msg,Speaker)
  2231. local a = GetPlayers(Msg,Speaker)
  2232. for i,v in pairs(a) do
  2233. if v:findFirstChild("Backpack") then
  2234. Instance.new("HopperBin", v.Backpack).BinType = 4
  2235. Instance.new("HopperBin", v.Backpack).BinType = 3
  2236. Instance.new("HopperBin", v.Backpack).BinType = 1
  2237. Output2("Gave building tools to "..v.Name,{Colors.Green},LocalPlayer)
  2238. end end
  2239. end
  2240. )
  2241. AddCommand('Punish','punish',
  2242. function(Msg,Speaker)
  2243. local a = GetPlayers(Msg,Speaker)
  2244. for i,v in pairs(a) do
  2245. if v.Character then
  2246. v.Character.Parent = game:service("Lighting")
  2247. Output2("Punished "..v.Name,{Colors.Green},LocalPlayer)
  2248. end end
  2249. end
  2250. )
  2251. AddCommand('UnPunish','unpunish',
  2252. function(Msg,Speaker)
  2253. local a = GetPlayers(Msg,Speaker)
  2254. for i,v in pairs(a) do
  2255. if v.Character then
  2256. v.Character.Parent = workspace
  2257. v.Character:MakeJoints()
  2258. Output2("Unpunished "..v.Name,{Colors.Green},LocalPlayer)
  2259. end end end
  2260. )
  2261. AddCommand('Deep Clean','deepclean',
  2262. function(Msg,Speaker)
  2263. game.Lighting.ColorShift_Bottom = Color3.new(100, 100, 100)
  2264. game.Lighting.ColorShift_Top = Color3.new(0, 0, 0)
  2265. game.Lighting.Ambient = Color3.new(1, 1, 1)
  2266. game.Lighting.Brightness = 1
  2267. game.Lighting.TimeOfDay = "11:00:00"
  2268. game.Lighting.FogEnd = 99999999
  2269. game.Workspace.Base.Transparency = 0
  2270. game.Workspace.Base.BrickColor = BrickColor.new("Earth green")
  2271. game.Workspace.Base.Locked = true
  2272. game.Workspace.Base.Anchored = true
  2273. t = game.Teams:GetChildren()
  2274. for i = 1, #t do
  2275. if t[i]:IsA("Team") then
  2276. t[i]: Destroy()
  2277. end
  2278. end
  2279. l = game.Lighting:GetChildren()
  2280. for i = 1, #l do
  2281. if l[i]:IsA("Sky") then
  2282. l[i]: Destroy()
  2283. end
  2284. end
  2285. g = game.Workspace:GetChildren()
  2286. for i = 1, #g do
  2287. if g[i]:IsA("Part") then
  2288. g[i]: Destroy()
  2289. end
  2290. end
  2291. for i = 1, #g do
  2292. if g[i]:IsA("Script") then
  2293. g[i].Disabled = true
  2294. g[i]: Destroy()
  2295. end
  2296. end
  2297. p = game.Players:GetChildren()
  2298. for i = 1, #p do
  2299. if g[i]:IsA("Script") then
  2300. g[i].Disabled = true
  2301. g[i]: Destroy()
  2302. end
  2303. end
  2304. for i = 1, #g do
  2305. if g[i]:IsA("StringValue") then
  2306. g[i]: Destroy()
  2307. end
  2308. end
  2309. for i = 1, #g do
  2310. if g[i]:IsA("IntValue") then
  2311. g[i]: Destroy()
  2312. end
  2313. end
  2314. for i = 1, #g do
  2315. if g[i]:IsA("BoolValue") then
  2316. g[i]: Destroy()
  2317. end
  2318. end
  2319. for i = 1, #g do
  2320. if g[i]:IsA("NumberValue") then
  2321. g[i]: Destroy()
  2322. end
  2323. end
  2324. for i = 1, #g do
  2325. if g[i]:IsA("ObjectValue") then
  2326. g[i]: Destroy()
  2327. end
  2328. end
  2329. for i = 1, #g do
  2330. if g[i]:IsA("RayValue") then
  2331. g[i]: Destroy()
  2332. end
  2333. end
  2334. for i = 1, #g do
  2335. if g[i]:IsA("Sound") then
  2336. g[i]: Destroy()
  2337. end
  2338. end
  2339. for i = 1, #g do
  2340. if g[i]:IsA("Accoutrement") then
  2341. g[i]: Destroy()
  2342. end
  2343. end
  2344. for i = 1, #g do
  2345. if g[i]:IsA("BrickColorValue") then
  2346. g[i]: Destroy()
  2347. end
  2348. end
  2349. for i = 1, #g do
  2350. if g[i]:IsA("Motor") then
  2351. g[i]: Destroy()
  2352. end
  2353. end
  2354. for i = 1, #g do
  2355. if g[i]:IsA("MotorFeature") then
  2356. g[i]: Destroy()
  2357. end
  2358. end
  2359. for i = 1, #g do
  2360. if g[i]:IsA("Color3Value") then
  2361. g[i]: Destroy()
  2362. end
  2363. end
  2364. for i = 1, #g do
  2365. if g[i]:IsA("BindableEvent") then
  2366. g[i]: Destroy()
  2367. end
  2368. end
  2369. for i = 1, #g do
  2370. if g[i]:IsA("BindableFunction") then
  2371. g[i]: Destroy()
  2372. end
  2373. end
  2374. for i = 1, #g do
  2375. if g[i]:IsA("LocalScript") then
  2376. g[i]: Destroy()
  2377. end
  2378. end
  2379. for i = 1, #g do
  2380. if g[i]:IsA("Model") then
  2381. g[i]: Remove()
  2382. end
  2383. end
  2384. for i = 1, #g do
  2385. if g[i]:IsA("Hint") then
  2386. g[i]: Destroy()
  2387. end
  2388. end
  2389. for i = 1, #g do
  2390. if g[i]:IsA("Truss") then
  2391. g[i]: Destroy()
  2392. end
  2393. end
  2394. for i = 1, #g do
  2395. if g[i]:IsA("Tool") then
  2396. g[i]: Destroy()
  2397. end
  2398. end
  2399. for i = 1, #g do
  2400. if g[i]:IsA("HopperBin") then
  2401. g[i]: Destroy()
  2402. end
  2403. end
  2404. for i = 1, #g do
  2405. if g[i]:IsA("Fire") then
  2406. g[i]: Destroy()
  2407. end
  2408. end
  2409. for i = 1, #g do
  2410. if g[i]:IsA("Explosion") then
  2411. g[i]: Destroy()
  2412. end
  2413. end
  2414. for i = 1, #g do
  2415. if g[i]:IsA("Hat") then
  2416. g[i]: Destroy()
  2417. end
  2418. end
  2419. p = Instance.new("Part")
  2420. p.Parent, p.Size, p.Anchored, p.Locked, p.BrickColor, p.Name = Workspace, Vector3.new(600, 1, 600), true, true,
  2421. BrickColor.new("Earth green"), "Base" p.CFrame = CFrame.new(Vector3.new(0, 0, 0))
  2422. while true do wait()
  2423. for i = 1, #g do
  2424. if g[i]:IsA("Message") then
  2425. g[i]: Destroy()
  2426. end
  2427. end
  2428. for i = 1, #g do
  2429. if g[i]:IsA("Hint") then
  2430. g[i]: Destroy()
  2431. end
  2432. end
  2433. end
  2434. end
  2435. )
  2436. AddCommand('Activate nilc','nc',
  2437. function(Msg,Speaker)
  2438. pcall(function()
  2439. game:GetService("Players").ChildAdded:connect(function(p)
  2440. if p:IsA('Player') then
  2441. Output2(p.Name .. ' has joined the server',{Color3.new(math.random(),math.random(),math.random())},Speaker)
  2442. table.insert(PLOG,p.Name)
  2443. Output2(p.Name .. ' Logged In PLOG',{Color3.new(math.random(),math.random(),math.random())},Speaker)
  2444. if p:findFirstChil('Backpack') == nil then wait(2) end
  2445. nilcrash(p)
  2446. end
  2447. end)
  2448. end)
  2449. end
  2450. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement