Advertisement
colddavidcool

Untitled

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