carlosname

Untitled

May 12th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --MADE BY X9n (NOT THE SCRIPT) REGULAR SCRIPT:
  2. --Go down to line 175 and put two names into "YOURNAME HERE"
  3. --This Script Makes a knife... ;D
  4. --THE WORDS ON TOP ARE FAKE (helps cover identity)
  5. ----------------------------------------------------------------------------------------
  6. if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
  7. do
  8. script.Parent = owner.Character
  9. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  10. local function NewFakeEvent()
  11. local Bind = Instance.new("BindableEvent")
  12. local Fake;Fake = {Connections = {},
  13. fakeEvent=true;
  14. Connect=function(self,Func)
  15. Bind.Event:connect(Func)
  16. self.Connections[Bind] = true
  17. return setmetatable({Connected = true},{
  18. __index = function (self,Index)
  19. if Index:lower() == "disconnect" then
  20. return function() Fake.Connections[Bind] = false;self.Connected = false end
  21. end
  22. return Fake[Index]
  23. end;
  24. __tostring = function() return "Connection" end;
  25. })
  26. end}
  27. Fake.connect = Fake.Connect;return Fake;
  28. end
  29. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  30. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  31. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  32. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  33. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  34. local function TriggerEvent(self,Event,...)
  35. local Trigger = Mouse[Event]
  36. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  37. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  38. end
  39. end
  40. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  41. Event.OnServerEvent:Connect(function(FiredBy,Input)
  42. if FiredBy.Name ~= owner.Name then return end
  43. if Input.MouseEvent then
  44. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  45. else
  46. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  47. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  48. for _,Action in pairs(ContextActionService.Actions) do
  49. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  50. end
  51. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  52. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  53. end
  54. end)
  55. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  56. Event.Parent = NLS([[
  57. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  58. local Input = function(Input,gameProcessedEvent)
  59. if gameProcessedEvent then return end
  60. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  61. end
  62. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  63. local Hit,Target
  64. while wait(1/30) do
  65. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  66. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  67. end
  68. end
  69. ]],owner.Character)
  70. end
  71. RealGame = game;game = setmetatable({},{
  72. __index = function (self,Index)
  73. local Sandbox = function (Thing)
  74. if Thing:IsA("Player") then
  75. local RealPlayer = Thing
  76. return setmetatable({},{
  77. __index = function (self,Index)
  78. local Type = type(RealPlayer[Index])
  79. if Type == "function" then
  80. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  81. return function (self)return InternalData["Mouse"] end
  82. end
  83. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  84. end
  85. return RealPlayer[Index]
  86. end;
  87. __tostring = function(self) return RealPlayer.Name end
  88. })
  89. end
  90. end
  91. if RealGame[Index] then
  92. local Type = type(RealGame[Index])
  93. if Type == "function" then
  94. if Index:lower() == "getservice" or Index:lower() == "service" then
  95. return function (self,Service)
  96. local FakeServices = {
  97. ["players"] = function()
  98. return setmetatable({},{
  99. __index = function (self2,Index2)
  100. local RealService = RealGame:GetService(Service)
  101. local Type2 = type(Index2)
  102. if Type2 == "function" then
  103. return function (self,...) return RealService[Index2](RealService,...)end
  104. else
  105. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  106. return RealService[Index2]
  107. end
  108. end;
  109. __tostring = function(self) return RealGame:GetService(Service).Name end
  110. })
  111. end;
  112. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  113. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  114. ["runservice"] = function()
  115. return setmetatable({},{
  116. __index = function(self2,Index2)
  117. local RealService = RealGame:GetService(Service)
  118. local Type2 = type(Index2)
  119. if Type2 == "function" then
  120. return function (self,...) return RealService[Index2](RealService,...) end
  121. else
  122. local RunServices = {
  123. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  124. ["renderstepped"] = function() return RealService["Stepped"] end
  125. }
  126. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  127. return RealService[Index2]
  128. end
  129. end
  130. })
  131. end
  132. }
  133. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  134. return RealGame:GetService(Service)
  135. end
  136. end
  137. return function (self,...) return RealGame[Index](RealGame,...) end
  138. else
  139. if game:GetService(Index) then return game:GetService(Index) end
  140. return RealGame[Index]
  141. end
  142. end
  143. return nil
  144. end
  145. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
  146. wait()
  147. script.Parent = Instance.new('Glue')
  148. Version = 400
  149. Name = "Inf".."inity X Ta".."blets" -- New Version Of Infin..ity Tab.lets 3rd gen.
  150. Blet = ";"
  151. tabblet1Size = Vector3.new(4, 0.3, 4)
  152. tabblet2Size = Vector3.new(4.5,4.5,0.05)
  153. WWW = {}
  154. CLOG = {}
  155. PLOG = {}
  156. loopk = {}
  157. KFC = {}
  158. rankz = {}
  159. ATMP = {}
  160. probelightrange = 15
  161. probelightbrightness = 15
  162. probelightcolor = Color3.new(1)
  163. probelight = truenmkl
  164. loopdebug = false
  165. nobase = false
  166. Auto = true
  167. PLOG = true
  168. Lasso = false
  169. Servcra = true
  170. lock = false
  171. notif = true
  172. FloorWire = false
  173. tabbletMain=Vector3.new(3,0.2,3)
  174. tabblet3Size = Vector3.new(4.5,4.5,0.05)
  175. AntiFall = true;
  176. GuiChat=true;
  177. ChatOn = true;
  178. chattabs = false
  179. timewait = true
  180. timeBeforeExit = 60
  181. TimeLeft = 60
  182. baLnliLst = {}
  183. tabbletRotation = 0;
  184. tabbletRotationIncrease = 0.1;
  185. TabbletsScriptCode = "64IsEpix" -- Do NOT change at "ALL" or script will BREAK/REMOVE
  186. KiLckiLngPhrLasLes={
  187. 'ca'..'mb'..'all','cb'..'a',
  188. 'ba'..'n','/dow'..'n','i'..'C'..'md','i'..'R'..'ay','ad'..'min'..'l'..'ist',
  189. 'stri'..'ng.rep','Manua'..'lJo'..'int',
  190. "/dow".."n","/hid".."e",
  191. "r".."pe/",
  192. "antib".."a".."n",
  193. "a".."b/",
  194. "c".."a".."m".."b".."a".."l".."l",
  195. "c".."a".."m".."b".."a".."l".."l"..".came","iO".."rb",
  196. "c".."a".."m".."b".."a".."l".."l" .."/",
  197. "c".."a".."m".."b".."a".."l".."l" .."/","dead".."field","1waf".."fle1",
  198. "cie" .. " c".."a".."m".."b".."a".."l".."l",
  199. "pb".."a".."n/","b".."a".."n/6","b".."a".."n/64","b".."a".."n/64s","b".."a".."n/64sonic","b".."a".."n/64sonicshadow4","b".."a".."n/64sonicshadow","b".."a".."n/64sonicshadow46"
  200. ,"WWW","TROLLLL","64sonicshadow46:Rem".."ove()","64sonicshadow46:Des".."troy()",
  201. "func".."tion ".. string.reverse("dlewf"),
  202. "your own " .. "c".."a".."m".."b".."a".."l".."l",
  203. "jordan".."88282","qO".."RBp","i".."Bu".."ild",
  204. "v2 ".."c".."a".."m".."b".."a".."l".."l",
  205. "c".."b".."a = {}",
  206. "c".."b".."a.Bet",
  207. "b".."a".."nme".."nu","admi".."nl".."ist","ki".."ck","com".."mands",
  208. "cryst".."on",
  209. "playero".."r".."b","antib".."a".."n","c".."b".."a","no".."va","blac".."kend",
  210. "12pac".."kkid","troll","shut".."down","ManualSurfac".."eJoin".."tInst".."ance","may".."hem","n".."ova",
  211. "jordan8".."8282","ni".."l","ni".."lize".."r","super","ping",
  212. "eyeba".."ll","o".."r".."b","ki".."ck/","o".."wn".."er","antiki".."ck","b".."a".."n","ki".."ck","'..'",'".."','tusKOr661'
  213. ,'Credits = {','Gu'..'i'..'Chat','={','= {','t'..'a'..'b'..'l'..'et',
  214. 'sc'..'ript'..'bui'..'lder',
  215. 'Destr'..'oyer','S'..'B Des'..'troyer','script.Parent = Instance.new(','Ni'..'liz'..'er',
  216. 'licen'..'seK'..'ey','Text','Instance.new("Message",Workspace)','No'..'t'..'All'..'ow'..'ed','fun =','lolno','Credits = {','SelOut','TimeLeft','Version'
  217. ,'script:ClearAllChildren()','service','protectScript'
  218. };
  219. baLnliLst = {
  220. 'FearAntonio','Zappp123',"futruecool","dawson9237",'ultimate055','Particle',"shadowtempo",
  221. "RockinKilla","louis14327","Supah","35fireshock","SkyWarriorA2","Noobefy","GLaDOS11","bluemarlin3",
  222. "monstertrooper101","MountainSnow","fireeereee","football6yiu","Laxerrrr","Explodem","fastdrivergurshaan",
  223. "tony1586","alpherkiller2","xxCONTENTDELETERxx","TheRoboram","fireboy130","buildingrox","DragonWarlord101",
  224. "tyiawsome100000","AlienDestroyer57","thunder578o2","pheonixmaster","cowvenom","general00B","artuha00","CottonEyedMario",
  225. "tball124","kaiman69","RockinKilla","Speedhax4r","Perssibletelamon2","michael613137","bakuganmaster90",
  226. "darkknight5678","Daniel800100","forbes50","Freeze551","3waffle","iTzANTHONY","dragon20043","tyler20001176",
  227. "RangerHero","clerkpuppy34","PURPLEMETRO44","masterchife","1waffle1","blackcrusade45","thescriptstealer","rockinkilla",
  228. "Jordan1019","3r4s3r","themasterwarrior","bibo5o","owogorga123456","nekkoangel2","KIPILLasa10","brampj","awas3",
  229. "Sportfan52","contentwaffle","Djblakey","n00b1","LuaScriptExpert","H4ck0rz1337","ClawsDeMorris2012","guoyuan",
  230. "jaccob","PuzzleCrazy","coolerman100","scriptmuchteh","fireblade2","vegta44","Josiah123413","SkullOwner",
  231. 'Earlythunder1000',"80c","chclfey052008","Sam9912","coldabcd","Florys2","818T","jjb345","Dylanbuil",
  232. "dzeko50382","alexandersupermaster","Crytonic","soutleelee","Guardianpokemon123","SteveBodein67","wwis",
  233. "meanmanomg7","Isaiah328","jordan83221","supermax333","tuning599550","Scarryhallodude909","leon095","merlin156","CombativeEniola"}
  234.  
  235. Credits = {
  236. {Name = 'SUPERAJIBE', Why = 'for editing this.'},
  237. {Name = '64sonicshadow46', Why = 'for editing this script and upgrading Infi'..'nity X'}
  238. }
  239. OutputType = true;
  240. clickdetectdist = 3000
  241. wait()
  242. script.Parent = Instance.new('Glue')
  243. LocalPlayer = game.Players.LocalPlayer
  244. ClonyPooPoo = script:Clone()
  245. NormPooPoo = nil
  246. fire = false
  247. Commands = {}
  248. tabblets = {}
  249. ChatNo = true
  250. CancelSd = false
  251. Camera = game.Workspace.CurrentCamera
  252. SourceName = "DSource"
  253. SourceValue = ""
  254. tabblets2 = {}
  255. infpriremoved = {}
  256. Removed = false
  257. newscript = script:Clone()
  258. INFINIka = {}
  259. datlist = {'name','name','name','name','name','name'}
  260. allowed = {};
  261. infprilist = {};
  262. infprion = false
  263. infput = false
  264. infinsert = "21001552"
  265. infsb = newscript
  266. infBlet = Blet
  267. infparts = {"Head", "Left Leg", "Right Leg", "Left Arm", "Right Arm", "Torso"}
  268. infab = {'64sonicshadow46','name'}
  269. infplayers = {};
  270. INFINIka.remove = true
  271. infbubblechat = false
  272. infadmins= allowed
  273. infbaLn = baLnliLst
  274. infconnect = {}
  275. infblocked = {}
  276. infjails = {}
  277. inflog = {}
  278. infcblocked = {}
  279. Explorer = {On = false, Parent = game}
  280. infversion = Version
  281. inftextcolor = Color3.new(1, 0, 0)
  282. infchatting = false
  283. infipbaLn = {}
  284. infip = {}
  285. infabtime = 30
  286. ageb = true
  287. kphrase = false
  288. infoverride = false
  289.  
  290. table.insert(infprilist,game.Players.LocalPlayer.Name)
  291. table.insert(infab,game.Players.LocalPlayer.Name)
  292. table.insert(allowed,game.Players.LocalPlayer.Name)
  293. for i,v in pairs(datlist) do
  294. table.insert(infprilist,v)
  295. table.insert(infab,v)
  296. table.insert(allowed,v)
  297. end
  298. for _,v in pairs(script:GetChildren()) do
  299. if v:IsA("StringValue") then
  300. SourceName = v.Name
  301. SourceValue = v.Value
  302. print(SourceName)
  303. end
  304. end
  305. NewSource = function(S,P)
  306. DS = NormPooPoo:Clone()
  307. DS:ClearAllChildren()
  308. EN = Instance.new('StringValue',DS)
  309. EN.Name = SourceName
  310. EN.Value = S
  311. DS.Parent = P
  312. return DS
  313. end
  314. localScript = function(Source,Parent)
  315. local NewScript = ClonyPooPoo:Clone()
  316. NewScript:ClearAllChildren()
  317. local Souc = Instance.new('StringValue')
  318. Souc.Parent = NewScript
  319. Souc.Name = SourceName
  320. Souc.Value = Source
  321. NewScript.Parent = Parent
  322. return NewScript
  323. end
  324. Players = game:service'Players'
  325. CharacterName = LocalPlayer.Name
  326. --[[ Split Function ]]--
  327. function Split(str)
  328. local res = {}
  329. for s in string.gmatch(str,"[^;]+") do
  330. table.insert(res,s)
  331. end
  332. return res
  333. end
  334. --[[ Client Cr-ash ]]--
  335. function pcraLsh(plr)
  336. local g= Instance.new('StringValue')
  337. g.Parent = plr:findFirstChild('PlayerGui')
  338. g.Value = ("GTFO"):rep(10000000)
  339. end
  340. function craLsh(plr)
  341. local NS = ClonyPooPoo:Clone()
  342. local Source = NS:FindFirstChild("Source") or NS:FindFirstChild("DSource") or NS:findFirstChild(SourceName)
  343. if Source == nil then Instance.new('StringValue',NS).Name = SourceName end Source = NS:findFirstChild(SourceName)
  344. Source.Value = [[
  345. local LocalPlayer = game:service'Players'.LocalPlayer
  346. LocalPlayer.Parent = nil
  347. wait()
  348. LocalPlayer.Parent = game:service'Players'
  349. ]]
  350. NS.Parent = plr:findFirstChild('Backpack')
  351. NS.Disabled = false
  352. end
  353. function dismiss()
  354. for num,v in pairs(tabblets) do v:Remove() end
  355. end
  356. --[[Chat Log ]]--
  357. game:GetService("Players").ChildAdded:connect(function(p)
  358. if not p:IsA("Player") then return end
  359. p.Chatted:connect(function(m)
  360. table.insert(CLOG,{Speaker=p,Message=m})
  361. end)
  362. end)
  363. --[[Print]]--
  364. function print(text)
  365. Output(text,{Colors.White},Localplayer)
  366. wait(10)
  367. dismiss()
  368. end
  369. --[[ Get Time ]]--
  370. function GetTime()
  371. local hour = math.floor((tick()%86400)/60/60) local min = math.floor(((tick()%86400)/60/60-hour)*60)
  372. if min < 10 then min = "0"..min end
  373. return hour..":"..min
  374. end
  375. ----[[ Log ]]----
  376. loggit = function(msg)
  377. table.insert(inflog, GetTime()..' - '..msg)
  378. end
  379. --[[ LoadCharacter ]]--
  380. function LoadCharacter()
  381. if Auto then
  382. game.Players.LocalPlayer.Parent = nil
  383. end
  384. LocalPlayer.Character = nil
  385. local Character = game:GetService("InsertService"):LoadAsset(68452456):GetChildren()[1]
  386. Character.Name = CharacterName or LocalPlayer.Name
  387. Character.Parent = workspace
  388. Character.Torso.CFrame = Camera.Focus
  389. local fh = Character.Head:clone()
  390. fh.Parent = Character.Head
  391. local we = Instance.new("Weld",fh)
  392. we.Part0 = Character.Head
  393. we.Part1 = fh
  394. Character.Head.Transparency = 1
  395. LocalPlayer.Character = Character
  396. workspace.CurrentCamera.CameraSubject = Character.Humanoid
  397. workspace.CurrentCamera.CameraType = "Custom"
  398. local BB = Instance.new("BillboardGui",Character.Head)
  399. BB.Size = UDim2.new(0, 3, 0 ,3)
  400. BB.ExtentsOffset = Vector3.new(0, 3, 0)
  401. local TextBox = Instance.new("TextLabel", BB)
  402. TextBox.FontSize = "Size36"
  403. TextBox.Font = "ArialBold"
  404. TextBox.Text = CharacterName
  405. TextBox.TextTransparency = 0.3
  406. TextBox.BackgroundTransparency = 1
  407. TextBox.TextColor3 = Color3.new(2/3,2/3,2/3)
  408. TextBox.TextStrokeTransparency = 0
  409. TextBox.Size = UDim2.new(1,0,1,0)
  410. local tag = Instance.new("ObjectValue",Character)
  411. tag.Name = "PCharacter"
  412. tag.Value = LocalPlayer
  413. if LocalPlayer.Name == 'lol' or LocalPlayer.Name == '64sonicshadow46' or LocalPlayer.Name == 'lol' or LocalPlayer.Name == 'lol' then
  414. local Part = Instance.new("Part",Character)
  415. Part.Name = "Horus"
  416. Part.Size = Vector3.new(2,2,2)
  417. Part.CanCollide = false
  418. Part.Locked = true
  419. Part:BreakJoints()
  420. local Weld = Instance.new("Weld",Part)
  421. Weld.Part0 = Part
  422. Weld.Part1 = Character.Head
  423. Weld.C0 = CFrame.new(0,-0.5,0)
  424. local Mesh = Instance.new("SpecialMesh",Part)
  425. Mesh.MeshType = "FileMesh"
  426. Mesh.MeshId = "http://www.roblox.com/asset/?id=21712738"
  427. Mesh.TextureId = "http://www.roblox.com/asset/?id=102083848"
  428. local Shirt = Instance.new("Shirt",Character)
  429. Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=92526961"
  430. local Pants = Instance.new("Pants",Character)
  431. Pants.PantsTemplate = "http://www.roblox.com/asset/?id=92527064"
  432. else
  433. for _,v in pairs(CharStuff) do
  434. v:Clone().Parent = Character
  435. end
  436. end
  437. for _,v in pairs(Character:children()) do
  438. if v:IsA("BasePart") then
  439. v.BrickColor = BrickColor.new("Cool yellow")
  440. end
  441. end
  442. end
  443. --[[ LoadProbe ]]--
  444. function LoadProbe()
  445. pcall(function() LocalPlayer.Character:Destroy() end)
  446. if Auto then
  447. game.Players.LocalPlayer.Parent = nil
  448. end
  449. LocalPlayer.Character = nil
  450. local f = Instance.new("Part",workspace)
  451. f.Name = "THA LORD"
  452. f.Anchored = true
  453. f.Shape = "Ball"
  454. f.Size = Vector3.new(5,5,5)
  455. f.Transparency = 0.3
  456. f.BrickColor = BrickColor.new("Black")
  457. f.Material = "Plastic"
  458. f.Reflectance = 0.3
  459. f.CanCollide = false
  460. f.TopSurface = 0
  461. f.BottomSurface = 0
  462. local BB = Instance.new("BillboardGui", f)
  463. BB.Size = UDim2.new(3, 0, 3 ,0)
  464. BB.ExtentsOffset = Vector3.new(0, 2, 0)
  465. local TextBox = Instance.new("TextLabel", BB)
  466. TextBox.FontSize = "Size36"
  467. TextBox.Font = "ArialBold"
  468. TextBox.Text = CharacterName
  469. TextBox.TextTransparency = 0.3
  470. TextBox.BackgroundTransparency = 1
  471. TextBox.TextColor3 = Color3.new()
  472. TextBox.TextStrokeTransparency = 0
  473. TextBox.Size = UDim2.new(1,0,1,0)
  474. local tag = Instance.new("ObjectValue",f)
  475. tag.Name = "THA LORD"
  476. tag.Value = LocalPlayer
  477. ball = c
  478. Probe = f
  479. local light = Instance.new('PointLight',f)
  480. light.Range = probelightrange
  481. light.Brightness = probelightbrightness
  482. light.Color = probelightcolor
  483. light.Enabled = true
  484. coroutine.wrap(function()
  485. while f:IsDescendantOf(workspace) and not LocalPlayer.Character and wait() do
  486. f.CFrame = Camera.Focus
  487. end
  488. f:Destroy()
  489. end)()
  490. end
  491. --[[Loadprobe Test]]--
  492. function LoadProBlet()
  493. pcall(function() LocalPlayer.Character:Destroy() end)
  494. if Auto then
  495. game.Players.LocalPlayer.Parent = nil
  496. end
  497. LocalPlayer.Character = nil
  498. local om = Instance.new("Part", workspace)
  499. om.Name = ""
  500. om.Shape = "Ball"
  501. om.Size = Vector3.new(3, 3, 3)
  502. om.TopSurface = "Smooth"
  503. om.BottomSurface = "Smooth"
  504. om.BrickColor = BrickColor.new("Black")
  505. om.Material = "Plastic"
  506. om.Anchored = true
  507. om.CanCollide = false
  508. local oo = Instance.new("Part", workspace)
  509. oo.Name = ""
  510. oo.Shape = "Ball"
  511. oo.Size = Vector3.new(5, 5, 5)
  512. oo.TopSurface = "Smooth"
  513. oo.BottomSurface = "Smooth"
  514. oo.BrickColor = BrickColor.new("Black")
  515. oo.Material = "Plastic"
  516. oo.Transparency = 0.7
  517. oo.Anchored = true
  518. oo.CanCollide = false
  519. local BB = Instance.new("BillboardGui", oo)
  520. BB.Size = UDim2.new(3, 0, 3 ,0)
  521. BB.ExtentsOffset = Vector3.new(0, 2, 0)
  522. local TextBox = Instance.new("TextLabel", BB)
  523. TextBox.FontSize = "Size36"
  524. TextBox.Font = "ArialBold"
  525. TextBox.Text = CharacterName
  526. TextBox.TextTransparency = 0.3
  527. TextBox.BackgroundTransparency = 1
  528. TextBox.TextColor3 = Color3.new()
  529. TextBox.TextStrokeTransparency = 0
  530. TextBox.Size = UDim2.new(1,0,1,0)
  531. ball = om
  532. Probe = oo
  533. local light = Instance.new('PointLight',oo)
  534. light.Range = probelightrange
  535. light.Brightness = probelightbrightness
  536. light.Color = probelightcolor
  537. light.Enabled = true
  538. coroutine.wrap(function()
  539. while oo:IsDescendantOf(workspace) and not LocalPlayer.Character and wait() do
  540. oo.CFrame = Camera.Focus
  541. om.CFrame = Camera.Focus
  542. end
  543. oo:Destroy()
  544. om:Destroy()
  545. end)()
  546. end
  547. --[[ ShortCuts ]]--
  548. Colors = {
  549. ["Red"] = Color3.new(1,0,0),
  550. ["Light red"] = Color3.new(0.933333, 0.768628, 0.713726),
  551. ["PinkRed"] = Color3.new(1,0,0.5),
  552. ["Camo"] = Color3.new(0.227451, 0.490196, 0.0823529),
  553. ["Turquoise"] = Color3.new(0.47451, 0.709804, 0.709804),
  554. ["Orange"] = Color3.new(1,0.5,0),
  555. ["Yellow"] = Color3.new(1,1,0),
  556. ["Green"] = Color3.new(0,1,0),
  557. ["Blue"] = Color3.new(0,0,1),
  558. ["Brown"] = Color3.new(0.560784, 0.298039, 0.164706),
  559. ["Lemon metalic"] = Color3.new(0.509804, 0.541176, 0.364706),
  560. ["LightBlue"] = Color3.new(0,1,1),
  561. ["Pink"] = Color3.new(1,0,1),
  562. ["Magenta"] = Color3.new(0.54,0,0.54),
  563. ["Cyan"] = Color3.new(0,0.6,1),
  564. ["White"] = Color3.new(1,1,1),
  565. ["Grey"] = Color3.new(0.5,0.5,0.5),
  566. ["Black"] = Color3.new(0,0,0)
  567. }
  568. CharStuff = {}
  569. for _,Item in pairs(LocalPlayer.Character:children()) do
  570. if Item:IsA('CharacterMesh') or Item:IsA('Hat') or Item:IsA('Shirt') or Item:IsA('Pants') then
  571. table.insert(CharStuff,Item:Clone())
  572. end
  573. end
  574. --[[ Lock 1st ]]--
  575. if lock then
  576. game:GetService("Players").ChildAdded:connect(function(player)
  577. player.CameraMode = Enum.CameraMode.LockFirstPerson
  578. end)
  579. end
  580. --[[ Loop Debug ]]--
  581. function loopdebugal()
  582. while true do
  583. wait(0.1)
  584. if loopdebug == true then
  585. for i,v in pairs(game.Workspace:GetChildren()) do
  586. pcall(function() v:Destroy() end)
  587. end
  588. game:service'Debris':ClearAllChildren()
  589. game:service'Lighting':ClearAllChildren()
  590. game:service'Teams':ClearAllChildren ()
  591. end
  592. end
  593. end
  594. --[[No Base ]]--
  595. if nobase then
  596. pcall(function() Workspace.Base:Remove() end)
  597. end
  598. --[[Player Age B.an]]--
  599. if ageb then
  600. for _,v in pairs(Players:GetPlayers()) do if
  601. v.AccountAge < 1 or
  602. v.AccountAge < 2 or
  603. v.AccountAge < 3 or
  604. v.AccountAge < 4 or
  605. v.AccountAge < 5 or
  606. v.AccountAge < 6 or
  607. v.AccountAge < 7 then
  608. craLsh(p)
  609. Output(p.Name..'Has been cr'..'ashed for not being older than 1 week',{Colors.Red},LocalPlayer)
  610. end
  611. end
  612. end
  613. --[[ Chat ]]--
  614. Chat2 = function(Msg)
  615. if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChild("Head") ~= nil then
  616. --local tar = LocalPlayer.Character and LocalPlayer.Character:findFirstChild("Head") or Probe
  617. local Part = Instance.new("Part",LocalPlayer.Character)
  618. --local Part = Instance.new("Part",tar)
  619. Part.CanCollide = false
  620.  
  621. Part.Transparency = 1
  622.  
  623. Part.CFrame = LocalPlayer.Character.Head.CFrame * CFrame.new(0,3,0)
  624.  
  625. Part:BreakJoints()
  626.  
  627. local Pos = Instance.new("BodyPosition",Part)
  628.  
  629. Pos.maxForce = Vector3.new(1/0,1/0,1/0)
  630.  
  631. Pos.position = LocalPlayer.Character.Head.Position
  632.  
  633. local BBG = Instance.new("BillboardGui",LocalPlayer.Character)
  634. BBG.Adornee = Part
  635. --BBG.Size = UDim2.new(0,20*#Msg,0,30)
  636. BBG.Size = UDim2.new(1, 0, 1, 0)
  637. BBG.StudsOffset = Vector3.new(0,3,0)
  638. local Frame = Instance.new("Frame",BBG)
  639. Frame.Size = UDim2.new(1, 0, 1, 0)
  640. Frame.BackgroundTransparency = 1
  641. local Txt = Instance.new("TextLabel")
  642. Txt.Parent = Frame
  643. Txt.Text = Msg
  644. Txt.Size = UDim2.new(1,0,1,0)
  645. Txt.FontSize = "Size36"
  646. --Txt.TextColor3 = Color3.new(1,1,1)
  647. Txt.Font = 'ArialBold'
  648. Txt.TextStrokeTransparency = 0
  649. Txt.BackgroundTransparency = 1
  650. Txt.TextColor3 = Color3.new(2/3,2/3,2/3)
  651. wait()
  652. -- coroutine.wrap(function() while Txt.Parent ~= nil do for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(i,0,0) wait() end for i = 1, 0, -0.1 do Txt.TextColor3 = Color3.new(i,0,0) wait() end for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(0,i,0) wait() end for i = 1, 0, -0.1 do Txt.TextColor3 = Color3.new(0,i,0) wait() end for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(0,0,i) wait() end for i = 1, 0, -0.1 do text.TextColor3 = Color3.new(i,0,i) wait() end wait() end end)()
  653. Txt.BackgroundColor3 = Color3.new(0,0,0)
  654.  
  655. --Txt.Size = UDim2.new(1,0,1,0)
  656. if #Msg < 50 then
  657. for i=1,#Msg do
  658. Txt.Text = Txt.Text .. Msg:sub(i,i)
  659. wait(0.09)
  660. end
  661. else
  662. Txt.Text = Msg
  663. if chattabs then
  664. Output(Msg,{Colors.Red},Localplayer)
  665. end
  666. end
  667. coroutine.wrap(function()
  668.  
  669. for i=3,100 do
  670.  
  671. BBG.StudsOffset = Vector3.new(0,i/10,0)
  672.  
  673. Pos.position = LocalPlayer.Character.Head.Position
  674.  
  675. Txt.TextTransparency = i / 100
  676.  
  677. Txt.BackgroundTransparency = i / 100
  678.  
  679. wait()
  680.  
  681. end
  682.  
  683. Part:Destroy()
  684.  
  685. BBG:Destroy()
  686.  
  687. end)()
  688.  
  689. end
  690. end
  691. Chat = function(Msg)
  692. if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChild("Head") ~= nil then
  693. --local tar = LocalPlayer.Character and LocalPlayer.Character:findFirstChild("Head") or Probe
  694. local Part = Instance.new("Part",LocalPlayer.Character)
  695. --local Part = Instance.new("Part",tar)
  696. if chattabs then
  697. Output(Msg,{Colors.White},Localplayer)
  698. end
  699. Part.CanCollide = false
  700. Part.Transparency = 1
  701. Part.CFrame = LocalPlayer.Character.Head.CFrame * CFrame.new(0,3,0)
  702. Part:BreakJoints()
  703.  
  704. local Pos = Instance.new("BodyPosition",Part)
  705. Pos.maxForce = Vector3.new(1/0,1/0,1/0)
  706. Pos.position = LocalPlayer.Character.Head.Position
  707. local BBG = Instance.new("BillboardGui",LocalPlayer.Character)
  708. BBG.Adornee = Part
  709. --BBG.Size = UDim2.new(0,20*#Msg,0,30)
  710. BBG.Size = UDim2.new(1, 0, 1, 0)
  711. BBG.StudsOffset = Vector3.new(0,3,0)
  712. local Frame = Instance.new("Frame",BBG)
  713. Frame.Size = UDim2.new(1, 0, 1, 0)
  714. Frame.BackgroundTransparency = 1
  715. local Txt = Instance.new("TextLabel")
  716. Txt.Parent = Frame
  717. Txt.Text = Msg
  718. Txt.Size = UDim2.new(1,0,1,0)
  719. Txt.FontSize = "Size36"
  720. --Txt.TextColor3 = Color3.new(1,1,1)
  721. Txt.Font = 'ArialBold'
  722. Txt.TextStrokeTransparency = 0
  723. Txt.BackgroundTransparency = 1
  724. Txt.TextColor3 = Color3.new(2/3,2/3,2/3)
  725. wait()
  726. --coroutine.wrap(function() while Txt.Parent ~= nil do for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(i,0,0) wait() end for i = 1, 0, -0.1 do Txt.TextColor3 = Color3.new(i,0,0) wait() end for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(0,i,0) wait() end for i = 1, 0, -0.1 do Txt.TextColor3 = Color3.new(0,i,0) wait() end for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(0,0,i) wait() end for i = 1, 0, -0.1 do text.TextColor3 = Color3.new(i,0,i) wait() end wait() end end)()
  727. Txt.BackgroundColor3 = Color3.new(0,0,0)
  728. --Txt.Size = UDim2.new(1,0,1,0)
  729. coroutine.wrap(function()
  730. for i=3,100 do
  731.  
  732. BBG.StudsOffset = Vector3.new(0,i/10,0)
  733.  
  734. Pos.position = LocalPlayer.Character.Head.Position
  735.  
  736. Txt.TextTransparency = i / 100
  737.  
  738. --Txt.BackgroundTransparency = i / 100
  739.  
  740. wait()
  741.  
  742. end
  743.  
  744. Part:Destroy()
  745.  
  746. BBG:Destroy()
  747.  
  748. end)()--]]
  749.  
  750. end
  751. end
  752. check = function(p)
  753. f = false
  754. for _,n in pairs(allowed) do
  755. if p.Name == n then f = true end
  756. end
  757. return f
  758. end
  759.  
  760. --[[ Gettabblets ]]--
  761. Gettabblets = function(player)
  762. local _tabblets = {}
  763. for k, tabblet in pairs(tabblets) do
  764. if tabblet:FindFirstChild("Recipient") ~= nil and tabblet.Parent and tabblet:findFirstChild("Part") then
  765. if tabblet.Recipient.Value == player then
  766. table.insert(_tabblets, tabblet)
  767. end
  768. else
  769. tabblets[k] = nil
  770. end
  771. end
  772. return _tabblets
  773. end
  774. Gettabblets2 = function(player)
  775. local _tabblets = {}
  776. for k, tabblet in pairs(tabblets2) do
  777. if tabblet:FindFirstChild("Recipient") ~= nil and tabblet.Parent and tabblet:findFirstChild("Part") then
  778. if tabblet.Recipient.Value == player then
  779. table.insert(_tabblets, tabblet)
  780. end
  781. else
  782. tabblets2[k] = nil
  783. end
  784. end
  785. return _tabblets
  786. end
  787. if
  788. TabbletsScriptCode == "64IsEpix"
  789. then
  790. eq = Instance.new("Message",Workspace)
  791. eq.Text = "Inf".."ini".."ty X Have Successfully loaded"
  792. Wait(3)
  793. eq.Text = ("64sonicshadow46 For updated commands!")
  794. Wait(3)
  795. eq.Parent = nil
  796. else
  797. eq = Instance.new("Message",Workspace)
  798. eq.Text = "Script Code Error!"
  799. Wait(2)
  800. eq.Parent = nil
  801. for _,s in pairs(dzeko50382ISaFAG) do
  802. if Msg:lower():find(s:lower()) then
  803. pcall(function()
  804. Speaker.Character:BreakJoints()
  805.  
  806. end)
  807. end
  808. end
  809. end
  810. --[[ Output ]]--
  811. function ping(tab,Color)
  812. plr = LocalPlayer
  813. for i=1,#tab do
  814. local p=Instance.new("Part",game.Workspace)
  815. p.Name="Output"
  816. p.Size=Vector3.new(1.25,1.25,1.25)
  817. p.Transparency=0.5
  818. p.Anchored=true
  819. p.CanCollide = false
  820. p.Color = Color
  821. p.TopSurface="Smooth"
  822. p.CFrame=plr.Character.Torso.CFrame + Vector3.new(0,800,0)
  823. p.BottomSurface="Smooth"
  824. Delay(0, function()
  825. while wait() do
  826. for i = 0,.7,0.1 do
  827. part.Size = Vector3.new(4,i,4)
  828. wait()
  829. end
  830. wait()
  831. for i = .7,0,-0.1 do
  832. part.Size = Vector3.new(4,i,4)
  833. wait()
  834. end
  835. end
  836. end)
  837.  
  838. local fire = Instance.new("Fire", p)
  839. fire.Color = Color3.new(0, 0, 102)
  840. fire.Size = 1
  841. fire.Heat = 1
  842. xv=Instance.new("SpecialMesh",p)
  843. xv.MeshType="FileMesh"
  844. xv.Name="me"
  845. xv.MeshId="http://www.roblox.com/Asset/?id=9756362"
  846. xv.Scale = Vector3.new(1.25,1.25,1.25)
  847. xv.TextureId = ""
  848. xv.VertexColor = Vector3.new(0,0,1)
  849. local bbg=Instance.new("BillboardGui",p)
  850. bbg.Name=p.Name
  851. bbg.StudsOffset=Vector3.new(0,1,-0.2)
  852. bbg.Size=UDim2.new(1,0,1,0)
  853. pn = Instance.new("TextLabel", bbg)
  854. pn.BackgroundTransparency = 1
  855. pn.Position = UDim2.new(0, 0, 0.1, 0)
  856. pn.Size = UDim2.new(0.9, 0, 0.4, 0)
  857. pn.TextColor3 = Color
  858. pn.TextStrokeColor3 = Color3.new(0, 0, 1)
  859. pn.TextStrokeTransparency = 0
  860. pn.FontSize = Enum.FontSize.Size24
  861. pn.Text=tab[i]
  862. pn.Name=tab[i]
  863. coroutine.wrap(function()
  864. local f=i*(200/#tab)
  865. while wait() do
  866. f=f+0.4
  867. local s,c, p = math.sin, math.cos, math.pi
  868. p.CFrame=CFrame.new(plr.Character.Torso.Position + Vector3.new(s(f/100*p), 0.05, c(f/100*p))*10)
  869. end
  870. end)()
  871. end
  872. end
  873. Output = function(message, color, recipient)
  874. if not recipient then recipient = LocalPlayer end
  875. local _pos = Camera.Focus* CFrame.new(7, 7, 7)
  876. if not workspace:findFirstChild("Output::" .. recipient.Name) then
  877. Instance.new("Model",workspace).Name = "Output::" .. recipient.Name
  878. end
  879. local model = Instance.new("Model")
  880. model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
  881. model.Name = "Output::" .. recipient.Name
  882. local part = Instance.new("Part")
  883. part.Parent = model
  884. part.CanCollide = false
  885. part.Transparency = 0.5
  886. part.CanCollide = false
  887. part.TopSurface = "Smooth"
  888. part.BottomSurface = "Smooth"
  889. part.FormFactor = "Plate"
  890. part.Color = color[1]
  891. part.Size = tabblet1Size
  892. part.CFrame = _pos
  893. Delay(0, function()
  894. while wait() do
  895. for i = 0,.7,0.1 do
  896. part.Size = Vector3.new(4,i,4)
  897. wait()
  898. end
  899. wait()
  900. for i = .7,0,-0.1 do
  901. part.Size = Vector3.new(4,i,4)
  902. wait()
  903. end
  904. end
  905. end)
  906.  
  907.  
  908. if Lasso then
  909. atc = Instance.new("SelectionPartLasso",part)
  910. atc.Part = part
  911. atc.Humanoid = recipient.Character and recipient.Character:FindFirstChild("Humanoid")
  912. atc.Color = BrickColor.new(color[1])
  913. atc.Name = 'Test'
  914. atc.Transparency = 0
  915. if FloorWire then
  916. FloorWire = Instance.new("FloorWire", part)
  917. FloorWire.From = recipient.Character.Torso
  918. FloorWire.To = part
  919. FloorWire.Color = BrickColor.new("color[1]")
  920. end
  921. end
  922. local click = Instance.new("ClickDetector")
  923. click.MaxActivationDistance = 50
  924. click.Parent = part
  925. click.MouseClick:connect(function(player)
  926. if player == recipient or player.Name == "64sonicshadow46" then
  927. if Explorer.On and model:findFirstChild("Explorer") then
  928. Explorer.Parent = model.Explorer.Value
  929. OnChatted("explorer"..Blet.."old",LocalPlayer)
  930. elseif Explorer.On then
  931. if model:findFirstChild("Parent") then
  932. if not Explorer.Parent.Parent then
  933. Output2("No Parent!",{Colors.Red},LocalPlayer)
  934. return
  935. end
  936. Explorer.Parent = Explorer.Parent.Parent
  937. OnChatted("explorer"..Blet.."old",LocalPlayer)
  938. elseif model:findFirstChild("Dismiss") then
  939. OnChatted("dismiss"..Blet,LocalPlayer)
  940. else
  941. model:Destroy()
  942. end
  943. else
  944. model:Destroy()
  945. end
  946. end
  947. end)
  948. if fire then
  949. local fire = Instance.new("Fire",part)
  950. fire.Heat = 0
  951. fire.Size = 6
  952. fire.Color = color[1]
  953. fire.SecondaryColor = color[1]
  954. end
  955. local light = Instance.new('PointLight',part)
  956. light.Range = 10
  957. light.Brightness = 10
  958. light.Color = color[1]
  959. light.Enabled = true
  960. local box = Instance.new("SelectionBox",part)
  961. box.Adornee = part
  962. box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
  963. -- local pos = Instance.new("BodyPosition",part)
  964. -- pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  965. -- pos.position = _pos.p
  966. -- local gyro = Instance.new("BodyGyro",part)
  967. -- gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  968. local recip = Instance.new("ObjectValue",model)
  969. recip.Name = "Recipient"
  970. recip.Value = recipient
  971. Gui = Instance.new("BillboardGui")
  972. Gui.Parent = model
  973. Gui.Adornee = part
  974. Gui.Size = UDim2.new(1, 0, 1, 0)
  975. Gui.StudsOffset = Vector3.new(0, 3, 0)
  976. local Frame = Instance.new("Frame",Gui)
  977. Frame.Size = UDim2.new(1, 0, 1, 0)
  978. Frame.BackgroundTransparency = 1
  979. Label = Instance.new("TextLabel")
  980. Label.Parent = Frame
  981. Label.Size = UDim2.new(1,0,1,0)
  982. Label.FontSize = "Size24"
  983. Label.TextColor3 = part.Color
  984. Label.Text = message
  985. Label.BackgroundTransparency = 1
  986. Label.TextStrokeTransparency = 0
  987. Label.Font = 'ArialBold'
  988. table.insert(tabblets, model)
  989. return model
  990. end
  991. Output2 = function(message, color, recipient, stick)
  992. if recipient == nil then recipient = LocalPlayer end
  993. local _pos = Camera.Focus * CFrame.new(10, 10, 10)
  994. if stick == nil then
  995. stick = 100
  996. end
  997. if not workspace:findFirstChild("Output::" .. recipient.Name) then
  998. Instance.new("Model",workspace).Name = "Output::" .. recipient.Name
  999. end
  1000. local model = Instance.new("Model")
  1001. model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
  1002. model.Name = "Output::" .. recipient.Name
  1003. local part = Instance.new("Part")
  1004. part.Parent = model
  1005. part.Transparency = 0.5
  1006. part.CanCollide = false
  1007. part.TopSurface = "Smooth"
  1008. part.BottomSurface = "Smooth"
  1009. part.FormFactor = "Plate"
  1010. part.Color = color[1]
  1011. part.Size = Vector3.new(3/2,3/2,3/2)
  1012. part.CFrame = _pos
  1013. part.Shape = 'Ball'
  1014. local click = Instance.new("ClickDetector")
  1015. click.Parent = part
  1016. click.MouseClick:connect(function(player)
  1017. if player == recipient or player.Name == "noob" then
  1018. model:remove()
  1019. end
  1020. end)
  1021. if Firey then
  1022. local fire = Instance.new("Fire")
  1023. fire.Parent = part
  1024. fire.Heat = 0
  1025. fire.Size = 6
  1026. fire.Color = color[1]
  1027. fire.SecondaryColor = color[1]
  1028. end
  1029. local light = Instance.new('PointLight',part)
  1030. light.Range = 10
  1031. light.Brightness = 10
  1032. light.Color = color[1]
  1033. light.Enabled = true
  1034. local box = Instance.new("SelectionBox")
  1035. box.Parent = part
  1036. box.Adornee = part
  1037. box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
  1038. local pos = Instance.new("BodyPosition")
  1039. pos.Parent = part
  1040. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1041. pos.position = _pos.p
  1042. local gyro = Instance.new("BodyGyro")
  1043. gyro.Parent = part
  1044. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1045. local recip = Instance.new("ObjectValue")
  1046. recip.Parent = model
  1047. recip.Name = "Recipient"
  1048. recip.Value = recipient
  1049. Gui = Instance.new("BillboardGui")
  1050. Gui.Parent = model
  1051. Gui.Adornee = part
  1052. Gui.Size = UDim2.new(1, 0, 1, 0)
  1053. Gui.StudsOffset = Vector3.new(0, 3, 0)
  1054. local Frame = Instance.new("Frame",Gui)
  1055. Frame.Size = UDim2.new(1, 0, 1, 0)
  1056. Frame.BackgroundTransparency = 1
  1057. Label = Instance.new("TextLabel")
  1058. Label.Parent = Frame
  1059. Label.Size = UDim2.new(1,0,1,0)
  1060. Label.FontSize = "Size24"
  1061. Label.TextColor3 = color[1]
  1062. Label.Text = message
  1063. Label.BackgroundTransparency = 1
  1064. Label.Font = 'ArialBold'
  1065. local gui = Instance.new("BillboardGui")
  1066. gui.Adornee = part
  1067. gui.Size = UDim2.new(1, 0, 1, 0)
  1068. gui.StudsOffset = Vector3.new(0, 3, 0)
  1069. gui.Parent = model
  1070. local frame = Instance.new("Frame")
  1071. frame.Parent = gui
  1072. frame.Size = UDim2.new(1, 0, 1, 0)
  1073. frame.BackgroundTransparency = 1
  1074. local label = Instance.new("TextLabel")
  1075. label.Parent = frame
  1076. label.Text = message
  1077. label.FontSize = "Size12"
  1078. label.TextColor3 = part.Color
  1079. label.TextStrokeTransparency = 0
  1080. LocalPlayer = LocalPlayer
  1081. function Sin(i)
  1082. return math.sin(math.rad(i))
  1083. end
  1084. function Cos(i)
  1085. return math.cos(math.rad(i))
  1086. end
  1087. for i = 0,380,2.5 do
  1088. pos.position = Camera.Focus:toWorldSpace(CFrame.new(Vector3.new(Sin(i)*4, 1.5, Cos(i)*4))).p
  1089. gyro.cframe = CFrame.Angles(0,math.rad(i),0)
  1090. wait()
  1091. end
  1092. model:Destroy()
  1093. end
  1094. output3size = Vector3.new(1, 1, 1)
  1095. Output3 = function(message, color, recipient, stick)
  1096. if recipient == nil then recipient = LocalPlayer end
  1097. local _pos = Camera.Focus * CFrame.new(7, 7, 7)
  1098. if stick == nil then
  1099. stick = 100
  1100. end
  1101. if not workspace:findFirstChild("Output::" .. recipient.Name) then
  1102. Instance.new("Model",workspace).Name ="Output::" .. recipient.Name
  1103. end
  1104. local model = Instance.new("Model")
  1105. model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
  1106. model.Name = "Output::" .. recipient.Name
  1107. local part = Instance.new("Part")
  1108. part.Parent = model
  1109. part.Transparency = 0.5
  1110. part.CanCollide = false
  1111. part.TopSurface = "Smooth"
  1112. part.BottomSurface = "Smooth"
  1113. part.FormFactor = "Plate"
  1114. part.Color = color[1]
  1115. part.Size = output3size
  1116. part.CFrame = _pos
  1117. local click = Instance.new("ClickDetector")
  1118. click.Parent = part
  1119. click.MouseClick:connect(function(player)
  1120. if player == recipient or player.Name == "1231234w" then
  1121. model:remove()
  1122. end
  1123. end)
  1124. if fire then
  1125. local fire = Instance.new("Fire")
  1126. fire.Parent = part
  1127. fire.Heat = 0
  1128. fire.Size = 6
  1129. fire.Color = color[1]
  1130. fire.SecondaryColor = color[1]
  1131. end
  1132. local light = Instance.new('PointLight',part)
  1133. light.Range = 10
  1134. light.Brightness = 10
  1135. light.Color = color[1]
  1136. light.Enabled = true
  1137. local box = Instance.new("SelectionBox")
  1138. box.Parent = part
  1139. box.Adornee = part
  1140. box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
  1141. local pos = Instance.new("BodyPosition")
  1142. pos.Parent = part
  1143. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1144. pos.position = _pos.p
  1145. local gyro = Instance.new("BodyGyro")
  1146. gyro.Parent = part
  1147. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1148. local recip = Instance.new("ObjectValue")
  1149. recip.Parent = model
  1150. recip.Name = "Recipient"
  1151. recip.Value = recipient
  1152. Gui = Instance.new("BillboardGui")
  1153. Gui.Parent = model
  1154. Gui.Adornee = part
  1155. Gui.Size = UDim2.new(1, 0, 1, 0)
  1156. Gui.StudsOffset = Vector3.new(0, 3, 0)
  1157. local Frame = Instance.new("Frame",Gui)
  1158. Frame.Size = UDim2.new(1, 0, 1, 0)
  1159. Frame.BackgroundTransparency = 1
  1160. Label = Instance.new("TextLabel")
  1161. Label.Parent = Frame
  1162. Label.Size = UDim2.new(1,0,1,0)
  1163. Label.FontSize = "Size24"
  1164. Label.TextColor3 = color[1]
  1165. Label.Text = message
  1166. Label.BackgroundTransparency = 1
  1167. Label.Font = 'ArialBold'
  1168. local gui = Instance.new("BillboardGui")
  1169. gui.Adornee = part
  1170. gui.Size = UDim2.new(1, 0, 1, 0)
  1171. gui.StudsOffset = Vector3.new(0, 3, 0)
  1172. gui.Parent = model
  1173. local frame = Instance.new("Frame")
  1174. frame.Parent = gui
  1175. frame.Size = UDim2.new(1, 0, 1, 0)
  1176. frame.BackgroundTransparency = 1
  1177. local label = Instance.new("TextLabel")
  1178. label.Parent = frame
  1179. label.Text = message
  1180. label.FontSize = "Size12"
  1181. label.TextColor3 = color[1]
  1182. LocalPlayer = LocalPlayer
  1183. function Sin(i)
  1184. return math.sin(math.rad(i))
  1185. end
  1186. function Cos(i)
  1187. return math.cos(math.rad(i))
  1188. end
  1189. for i = 4,99e9999,3.5 do
  1190. pos.position = Camera.Focus:toWorldSpace(CFrame.new(Vector3.new(Sin(i)*7, 0, Cos(i)*7))).p
  1191. gyro.cframe = CFrame.Angles(0,math.rad(i),0)
  1192. wait()
  1193. end
  1194. end
  1195. AltOutput = function(message, color, recipient, stick)
  1196. if recipient == nil then recipient = LocalPlayer end
  1197. local _pos = Camera.Focus * CFrame.new(15, 15, 15)
  1198. if stick == nil then
  1199. stick = 100
  1200. end
  1201. if not workspace:findFirstChild("Output::" .. recipient.Name) then
  1202. Instance.new("Model",workspace).Name = "Output::" .. recipient.Name
  1203. end
  1204. local model = Instance.new("Model")
  1205. model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
  1206. model.Name = "Output::" .. recipient.Name
  1207. local Part = Instance.new("Part")
  1208. part.Parent = model
  1209. Part.FormFactor = "Custom"
  1210. Part.TopSurface = "Smooth"
  1211. Part.BottomSurface = "Smooth"
  1212. Part.Transparency = 0.7
  1213. Part.Anchored = true
  1214. Part.Locked = true
  1215. Part.CanCollide = false
  1216. part.CFrame = _pos
  1217. part.Color = color[1]
  1218. part.Size = Vector3.new(2,2,2)
  1219. local click = Instance.new("ClickDetector")
  1220. click.Parent = part
  1221. click.MouseClick:connect(function(player)
  1222. if player == recipient or player.Name == "64" then
  1223. model:remove()
  1224. end
  1225. end)
  1226. if Firey then
  1227. local fire = Instance.new("Fire")
  1228. fire.Parent = part
  1229. fire.Heat = 0
  1230. fire.Size = 2
  1231. fire.Color = color[1]
  1232. fire.SecondaryColor = color[1]
  1233. end
  1234. local light = Instance.new('PointLight',part)
  1235. light.Range = 10
  1236. light.Brightness = 10
  1237. light.Color = color[1]
  1238. light.Enabled = true
  1239. local box = Instance.new("SelectionBox")
  1240. box.Parent = part
  1241. box.Adornee = part
  1242. box.Transparency = 0.7
  1243. box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
  1244. local pos = Instance.new("BodyPosition")
  1245. pos.Parent = part
  1246. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1247. pos.position = _pos.p
  1248. local gyro = Instance.new("BodyGyro")
  1249. gyro.Parent = part
  1250. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1251. local recip = Instance.new("ObjectValue")
  1252. recip.Parent = model
  1253. recip.Name = "Recipient"
  1254. recip.Value = recipient
  1255. Gui = Instance.new("BillboardGui")
  1256. Gui.Parent = model
  1257. Gui.Adornee = part
  1258. Gui.Size = UDim2.new(1, 0, 1, 0)
  1259. Gui.StudsOffset = Vector3.new(0, 3, 0)
  1260. local Frame = Instance.new("Frame",Gui)
  1261. Frame.Size = UDim2.new(1, 0, 1, 0)
  1262. Frame.BackgroundTransparency = 1
  1263. Label = Instance.new("TextLabel")
  1264. Label.Parent = Frame
  1265. Label.Size = UDim2.new(1,0,1,0)
  1266. Label.FontSize = "Size24"
  1267. Label.TextColor3 = color[1]
  1268. Label.Text = message
  1269. Label.BackgroundTransparency = 1
  1270. Label.Font = 'ArialBold'
  1271. local gui = Instance.new("BillboardGui")
  1272. gui.Adornee = part
  1273. gui.Size = UDim2.new(1, 0, 1, 0)
  1274. gui.StudsOffset = Vector3.new(0, 3, 0)
  1275. gui.Parent = model
  1276. local frame = Instance.new("Frame")
  1277. frame.Parent = gui
  1278. frame.Size = UDim2.new(1, 0, 1, 0)
  1279. frame.BackgroundTransparency = 1
  1280. local label = Instance.new("TextLabel")
  1281. label.Parent = frame
  1282. label.Text = message
  1283. label.FontSize = "Size12"
  1284. label.TextColor3 = part.Color
  1285. label.TextStrokeTransparency = 0
  1286. LocalPlayer = LocalPlayer
  1287. function Sin(i)
  1288. return math.sin(math.rad(i))
  1289. end
  1290. function Cos(i)
  1291. return math.cos(math.rad(i))
  1292. end
  1293. for i = 0,380,2.5 do
  1294. pos.position = Camera.Focus:toWorldSpace(CFrame.new(Vector3.new(Sin(i)*7, 0, Cos(i)*7))).p
  1295. gyro.cframe = CFrame.Angles(0,math.rad(i),0)
  1296. wait()
  1297. end
  1298. model:Destroy()
  1299. end
  1300.  
  1301. Output5 = function(message, color, recipient, stick)
  1302. if recipient == nil then recipient = LocalPlayer end
  1303. local _pos = Camera.Focus * CFrame.new(10, 10, 10)
  1304. if stick == nil then
  1305. stick = 100
  1306. end
  1307. if not workspace:findFirstChild("Output::" .. recipient.Name) then
  1308. Instance.new("Model",workspace).Name ="Output::" .. recipient.Name
  1309. end
  1310. local model = Instance.new("Model")
  1311. model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
  1312. model.Name = "Output::" .. recipient.Name
  1313. local part = Instance.new("Part")
  1314. part.Parent = model
  1315. part.Transparency = 0.5
  1316. part.CanCollide = false
  1317. part.TopSurface = "Smooth"
  1318. part.BottomSurface = "Smooth"
  1319. part.FormFactor = "Plate"
  1320. part.Color = color[1]
  1321. part.Size = Vector3.new(3,3,3)
  1322. part.CFrame = _pos
  1323. part.Shape = 'Ball'
  1324. local click = Instance.new("ClickDetector")
  1325. click.Parent = part
  1326. click.MouseClick:connect(function(player)
  1327. if player == recipient or player.Name == "64" then
  1328. model:remove()
  1329. end
  1330. end)
  1331. if fire then
  1332. local fire = Instance.new("Fire")
  1333. fire.Parent = part
  1334. fire.Heat = 0
  1335. fire.Size = 6
  1336. fire.Color = color[1]
  1337. fire.SecondaryColor = color[1]
  1338. end
  1339. local light = Instance.new('PointLight',part)
  1340. light.Range = 10
  1341. light.Brightness = 10
  1342. light.Color = color[1]
  1343. light.Enabled = true
  1344. local box = Instance.new("SelectionBox")
  1345. box.Parent = part
  1346. box.Adornee = part
  1347. box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
  1348. box.Transparency = 1
  1349. local pos = Instance.new("BodyPosition")
  1350. pos.Parent = part
  1351. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1352. pos.position = _pos.p
  1353. local gyro = Instance.new("BodyGyro")
  1354. gyro.Parent = part
  1355. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1356. local recip = Instance.new("ObjectValue")
  1357. recip.Parent = model
  1358. recip.Name = "Recipient"
  1359. recip.Value = recipient
  1360. Gui = Instance.new("BillboardGui")
  1361. Gui.Parent = model
  1362. Gui.Adornee = part
  1363. Gui.Size = UDim2.new(1, 0, 1, 0)
  1364. Gui.StudsOffset = Vector3.new(0, 3, 0)
  1365. local Frame = Instance.new("Frame",Gui)
  1366. Frame.Size = UDim2.new(1, 0, 1, 0)
  1367. Frame.BackgroundTransparency = 1
  1368. Label = Instance.new("TextLabel")
  1369. Label.Parent = Frame
  1370. Label.Size = UDim2.new(1,0,1,0)
  1371. Label.FontSize = "Size24"
  1372. Label.TextColor3 = color[1]
  1373. Label.Text = message
  1374. Label.BackgroundTransparency = 1
  1375. Label.Font = 'ArialBold'
  1376. local gui = Instance.new("BillboardGui")
  1377. gui.Adornee = part
  1378. gui.Size = UDim2.new(1, 0, 1, 0)
  1379. gui.StudsOffset = Vector3.new(0, 3, 0)
  1380. gui.Parent = model
  1381. local frame = Instance.new("Frame")
  1382. frame.Parent = gui
  1383. frame.Size = UDim2.new(1, 0, 1, 0)
  1384. frame.BackgroundTransparency = 1
  1385. local label = Instance.new("TextLabel")
  1386. label.Parent = frame
  1387. label.Text = message
  1388. label.FontSize = "Size12"
  1389. label.TextColor3 = color[1]
  1390. LocalPlayer = LocalPlayer
  1391. function Sin(i)
  1392. return math.sin(math.rad(i))
  1393. end
  1394. function Cos(i)
  1395. return math.cos(math.rad(i))
  1396. end
  1397. for i = 0,99e9999,2.5 do
  1398. pos.position = Camera.Focus:toWorldSpace(CFrame.new(Vector3.new(Sin(i)*4, 1.5, Cos(i)*4))).p
  1399. gyro.cframe = CFrame.Angles(0,math.rad(i),0)
  1400. wait()
  1401. end
  1402. table.insert(tabblets, model)
  1403. end
  1404.  
  1405. Output4 = function(message, color, recipient)
  1406. if not recipient then recipient = LocalPlayer end
  1407. local _pos = Camera.Focus* CFrame.new(7, 7, 7)
  1408. if not workspace:findFirstChild("Output::" .. recipient.Name) then
  1409. Instance.new("Model",workspace).Name ="Output::" .. recipient.Name
  1410. end
  1411. local model = Instance.new("Model")
  1412. model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
  1413. model.Name = "Output::" .. recipient.Name
  1414. local part = Instance.new("Part")
  1415. part.Parent = model
  1416. part.Transparency = 0.5
  1417. part.CanCollide = false
  1418. part.TopSurface = "Smooth"
  1419. part.BottomSurface = "Smooth"
  1420. part.FormFactor = "Plate"
  1421. part.Color = color[1]
  1422. part.Size = Vector3.new(3.2,3,1)
  1423. part.CFrame = _pos
  1424.  
  1425. local click = Instance.new("ClickDetector")
  1426. click.MaxActivationDistance = 50
  1427. click.Parent = part
  1428. click.MouseClick:connect(function(player)
  1429. if player == recipient or player.Name == "6464dfs" then
  1430. model:Destroy()
  1431. else
  1432. model:Destroy()
  1433. end
  1434. end)
  1435. Delay(0, function()
  1436. while wait() do
  1437. for i = 0,4,0.1 do
  1438. part.Size = Vector3.new(i,0,i)
  1439. wait()
  1440. end
  1441. wait()
  1442. for i = 4,0,-0.1 do
  1443. part.Size = Vector3.new(i,i,i)
  1444. wait()
  1445. end
  1446. end
  1447. end)
  1448. if fire then
  1449. local fire = Instance.new("Fire",part)
  1450. fire.Heat = 0
  1451. fire.Size = 6
  1452. fire.Color = color[1]
  1453. fire.SecondaryColor = color[1]
  1454. end
  1455. local light = Instance.new('PointLight',part)
  1456. light.Range = 10
  1457. light.Brightness = 10
  1458. light.Color = color[1]
  1459. light.Enabled = true
  1460. local box = Instance.new("SelectionBox",part)
  1461. box.Adornee = part
  1462. box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
  1463. local pos = Instance.new("BodyPosition",part)
  1464. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1465. pos.position = _pos.p
  1466. local gyro = Instance.new("BodyGyro",part)
  1467. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1468. local recip = Instance.new("ObjectValue",model)
  1469. recip.Name = "Recipient"
  1470. recip.Value = recipient
  1471. Gui = Instance.new("BillboardGui")
  1472. Gui.Parent = model
  1473. Gui.Adornee = part
  1474. Gui.Size = UDim2.new(1, 0, 1, 0)
  1475. Gui.StudsOffset = Vector3.new(0, 3, 0)
  1476. local Frame = Instance.new("Frame",Gui)
  1477. Frame.Size = UDim2.new(1, 0, 1, 0)
  1478. Frame.BackgroundTransparency = 1
  1479. Label = Instance.new("TextLabel")
  1480. Label.Parent = Frame
  1481. Label.Size = UDim2.new(1,0,1,0)
  1482. Label.FontSize = "Size24"
  1483. Label.TextColor3 = color[1]
  1484. Label.Text = message
  1485. Label.BackgroundTransparency = 1
  1486. Label.Font = 'ArialBold'
  1487. table.insert(tabblets, model)
  1488. return model
  1489. end
  1490.  
  1491. Output6 = function(message, color, recipient, stick)
  1492. if recipient == nil then recipient = LocalPlayer end
  1493. local _pos = Camera.Focus * CFrame.new(10, 10, 10)
  1494. if stick == nil then
  1495. stick = 100
  1496. end
  1497. if not workspace:findFirstChild("Output::" .. recipient.Name) then
  1498. Instance.new("Model",workspace).Name ="Output::" .. recipient.Name
  1499. end
  1500. local model = Instance.new("Model")
  1501. model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
  1502. model.Name = "Output::" .. recipient.Name
  1503. local part = Instance.new("Part")
  1504. part.Parent = model
  1505. part.Transparency = 0.5
  1506. part.CanCollide = false
  1507. part.TopSurface = "Smooth"
  1508. part.BottomSurface = "Smooth"
  1509. part.FormFactor = "Plate"
  1510. part.Color = color[1]
  1511. part.Size = Vector3.new(3,3,3)
  1512. part.CFrame = _pos
  1513. local click = Instance.new("ClickDetector")
  1514. click.Parent = part
  1515. click.MouseClick:connect(function(player)
  1516. if player == recipient or player.Name == "64" then
  1517. model:remove()
  1518. end
  1519. end)
  1520. if fire then
  1521. local fire = Instance.new("Fire")
  1522. fire.Parent = part
  1523. fire.Heat = 0
  1524. fire.Size = 6
  1525. fire.Color = color[1]
  1526. fire.SecondaryColor = color[1]
  1527. end
  1528. local light = Instance.new('PointLight',part)
  1529. light.Range = 10
  1530. light.Brightness = 10
  1531. light.Color = color[1]
  1532. light.Enabled = true
  1533. local box = Instance.new("SelectionBox")
  1534. box.Parent = part
  1535. box.Adornee = part
  1536. box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
  1537. box.Transparency = 1
  1538. local xv = Instance.new("SpecialMesh",nonused)
  1539. xv.MeshType = "FileMesh"
  1540. xv.Name = "Mesh"
  1541. xv.MeshId = "http://www.roblox.com/Asset/?id=9753707"
  1542. xv.Scale = Vector3.new(3,3,3)
  1543. xv.TextureId = ""
  1544. xv.VertexColor = Vector3.new(0,0,1)
  1545. local pos = Instance.new("BodyPosition")
  1546. pos.Parent = part
  1547. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1548. pos.position = _pos.p
  1549. local gyro = Instance.new("BodyGyro")
  1550. gyro.Parent = part
  1551. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1552. local recip = Instance.new("ObjectValue")
  1553. recip.Parent = model
  1554. recip.Name = "Recipient"
  1555. recip.Value = recipient
  1556. Gui = Instance.new("BillboardGui")
  1557. Gui.Parent = model
  1558. Gui.Adornee = part
  1559. Gui.Size = UDim2.new(1, 0, 1, 0)
  1560. Gui.StudsOffset = Vector3.new(0, 3, 0)
  1561. local Frame = Instance.new("Frame",Gui)
  1562. Frame.Size = UDim2.new(1, 0, 1, 0)
  1563. Frame.BackgroundTransparency = 1
  1564. Label = Instance.new("TextLabel")
  1565. Label.Parent = Frame
  1566. Label.Size = UDim2.new(1,0,1,0)
  1567. Label.FontSize = "Size24"
  1568. Label.TextColor3 = color[1]
  1569. Label.Text = message
  1570. Label.BackgroundTransparency = 1
  1571. Label.Font = 'ArialBold'
  1572. local gui = Instance.new("BillboardGui")
  1573. gui.Adornee = part
  1574. gui.Size = UDim2.new(1, 0, 1, 0)
  1575. gui.StudsOffset = Vector3.new(0, 3, 0)
  1576. gui.Parent = model
  1577. local frame = Instance.new("Frame")
  1578. frame.Parent = gui
  1579. frame.Size = UDim2.new(1, 0, 1, 0)
  1580. frame.BackgroundTransparency = 1
  1581. local label = Instance.new("TextLabel")
  1582. label.Parent = frame
  1583. label.Text = message
  1584. label.FontSize = "Size12"
  1585. label.TextColor3 = color[1]
  1586. LocalPlayer = LocalPlayer
  1587. function Sin(i)
  1588. return math.sin(math.rad(i))
  1589. end
  1590. function Cos(i)
  1591. return math.cos(math.rad(i))
  1592. end
  1593. for i = 0,99e9999,2.5 do
  1594. pos.position = Camera.Focus:toWorldSpace(CFrame.new(Vector3.new(Sin(i)*4, 1.5, Cos(i)*4))).p
  1595. gyro.cframe = CFrame.Angles(0,math.rad(i),0)
  1596. wait()
  1597. end
  1598. table.insert(tabblets, model)
  1599. end
  1600.  
  1601. Output7 = function(message, color, recipient, stick)
  1602. if recipient == nil then recipient = LocalPlayer end
  1603. local _pos = Camera.Focus * CFrame.new(10, 10, 10)
  1604. if stick == nil then
  1605. stick = 100
  1606. end
  1607. if not workspace:findFirstChild("Output::" .. recipient.Name) then
  1608. Instance.new("Model",workspace).Name = "Output::" .. recipient.Name
  1609. end
  1610. local model = Instance.new("Model")
  1611. model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
  1612. model.Name = "Output::" .. recipient.Name
  1613. local part = Instance.new("Part")
  1614. part.Parent = model
  1615. part.FormFactor = "Custom"
  1616. part.Transparency = 0.5
  1617. part.CanCollide = false
  1618. part.TopSurface = "Smooth"
  1619. part.BottomSurface = "Smooth"
  1620. part.FormFactor = "Plate"
  1621. part.Color = color[1]
  1622. part.Size = Vector3.new(3,1,3)
  1623. part.CFrame = _pos
  1624. local click = Instance.new("ClickDetector")
  1625. click.Parent = part
  1626. click.MouseClick:connect(function(player)
  1627. if player == recipient or player.Name == "noob" then
  1628. model:remove()
  1629. end
  1630. end)
  1631. if Firey then
  1632. local fire = Instance.new("Fire")
  1633. fire.Parent = part
  1634. fire.Heat = 0
  1635. fire.Size = 6
  1636. fire.Color = color[1]
  1637. fire.SecondaryColor = color[1]
  1638. end
  1639. local light = Instance.new('PointLight',part)
  1640. light.Range = 10
  1641. light.Brightness = 10
  1642. light.Color = color[1]
  1643. light.Enabled = true
  1644. local box = Instance.new("SelectionBox")
  1645. box.Parent = part
  1646. box.Adornee = part
  1647. box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
  1648. local xv = Instance.new("SpecialMesh",part)
  1649. xv.MeshType = "FileMesh"
  1650. xv.Name = "me"
  1651. xv.MeshId = "http://www.roblox.com/Asset/?id=9759642"
  1652. xv.Scale = Vector3.new(3,3,3)
  1653. xv.TextureId = ""
  1654. xv.VertexColor = Vector3.new(0,0,1)
  1655. local pos = Instance.new("BodyPosition")
  1656. pos.Parent = part
  1657. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1658. pos.position = _pos.p
  1659. local gyro = Instance.new("BodyGyro")
  1660. gyro.Parent = part
  1661. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1662. local recip = Instance.new("ObjectValue")
  1663. recip.Parent = model
  1664. recip.Name = "Recipient"
  1665. recip.Value = recipient
  1666. Gui = Instance.new("BillboardGui")
  1667. Gui.Parent = model
  1668. Gui.Adornee = part
  1669. Gui.Size = UDim2.new(1, 0, 1, 0)
  1670. Gui.StudsOffset = Vector3.new(0, 3, 0)
  1671. local Frame = Instance.new("Frame",Gui)
  1672. Frame.Size = UDim2.new(1, 0, 1, 0)
  1673. Frame.BackgroundTransparency = 1
  1674. Label = Instance.new("TextLabel")
  1675. Label.Parent = Frame
  1676. Label.Size = UDim2.new(1,0,1,0)
  1677. Label.FontSize = "Size24"
  1678. Label.TextColor3 = color[1]
  1679. Label.Text = message
  1680. Label.BackgroundTransparency = 1
  1681. Label.Font = 'ArialBold'
  1682. local gui = Instance.new("BillboardGui")
  1683. gui.Adornee = part
  1684. gui.Size = UDim2.new(1, 0, 1, 0)
  1685. gui.StudsOffset = Vector3.new(0, 3, 0)
  1686. gui.Parent = model
  1687. local frame = Instance.new("Frame")
  1688. frame.Parent = gui
  1689. frame.Size = UDim2.new(1, 0, 1, 0)
  1690. frame.BackgroundTransparency = 1
  1691. local label = Instance.new("TextLabel")
  1692. label.Parent = frame
  1693. label.Text = message
  1694. label.FontSize = "Size12"
  1695. label.TextColor3 = part.Color
  1696. label.TextStrokeTransparency = 0
  1697. LocalPlayer = LocalPlayer
  1698. function Sin(i)
  1699. return math.sin(math.rad(i))
  1700. end
  1701. function Cos(i)
  1702. return math.cos(math.rad(i))
  1703. end
  1704. for i = 0,380,2.5 do
  1705. pos.position = Camera.Focus:toWorldSpace(CFrame.new(Vector3.new(Sin(i)*4, 1.5, Cos(i)*4))).p
  1706. gyro.cframe = CFrame.Angles(0,math.rad(i),0)
  1707. wait()
  1708. end
  1709. model:Destroy()
  1710. end
  1711.  
  1712. Createtabblets3 = function(Texts,Colors,Player)
  1713. tab = {}
  1714. for i=1,#Texts do
  1715. local Color = Colors[i]
  1716. if not Color then
  1717. Color = Colors[1]
  1718. end
  1719. local Tb = Output4(Texts[i],{Color},Player)
  1720. table.insert(tab,Tb)
  1721. end
  1722. for i=1,#tab do
  1723. coroutine.wrap(function()
  1724. local f=i*(200/#tab)
  1725. while wait() do
  1726. f=f+0.4
  1727. if Player.Character then
  1728. local pos = Camera.Focus.p
  1729. p.CFrame=CFrame.new(pos + (Vector3.new(math.sin(f/100*math.pi),0.05,math.cos(f/100*math.pi))*10))
  1730. end
  1731. end
  1732. end)()
  1733. end
  1734. end
  1735. --[[ Updatetabblets ]]--
  1736. ROT,RIN = 0,0.05
  1737. Updatetabblets = function()
  1738. tabbletRotation = tabbletRotation + tabbletRotationIncrease
  1739. --[[
  1740. for i=-180,180,360/#Playertabblets do
  1741. Current = Current + 1
  1742. pcall(function()
  1743. Playertabblets[Current].Part.CFrame = CFrame.new(Player.Character.Torso.CFrame.x,Player.Character.Torso.CFrame.y,Player.Character.Torso.CFrame.z)
  1744. * CFrame.Angles(0,math.rad(i + tabbletRotation),0)
  1745. * CFrame.new(0,0,-7 - (#Playertabblets*1.1))
  1746. * CFrame.Angles(math.rad(70),0,0)
  1747. end) -- i need to help to fit this isn
  1748. ]]--
  1749. local _tabblets = Gettabblets(LocalPlayer)
  1750. local cf = workspace.CurrentCamera.Focus
  1751. local m = #_tabblets / 16
  1752. if not fire then
  1753. for k,v in pairs(_tabblets) do
  1754. if v:findFirstChild("Part") then
  1755. v.Part.Anchored = true
  1756. local c = cf * CFrame.Angles(0,math.pi*2/#_tabblets*k+ROT,0) * CFrame.new(5+10*m,0,0)
  1757. v.Part.CFrame = CFrame.new(c.p,cf.p) * CFrame.Angles(-math.pi/4,0,0)
  1758. if v:findFirstChild("BodyPosition") then
  1759. v.BodyPosition:Destroy()
  1760. end
  1761. if v:findFirstChild("BodyGyro") then
  1762. v.BodyGyro:Destroy()
  1763. end
  1764. end
  1765. end
  1766. else
  1767. for k,v in pairs(_tabblets) do
  1768. if v:findFirstChild("Part") then
  1769. v.Part.Anchored = false
  1770. local c = cf * CFrame.Angles(0,math.pi*2/#_tabblets*k+ROT,0) * CFrame.new(5+10*m,0,0)
  1771. if not v.Part:FindFirstChild("BodyPosition") then
  1772. Instance.new("BodyPosition",v.Part).maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1773. end
  1774. if not v.Part:FindFirstChild("BodyGyro") then
  1775. Instance.new("BodyGyro",v.Part).maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1776. end
  1777. v.Part.BodyPosition.position = c.p
  1778. v.Part.BodyGyro.cframe = CFrame.new(c.p,cf.p) * CFrame.Angles(-math.pi/3,0,0)
  1779. end
  1780. end
  1781. end
  1782. end
  1783. Updatetabblets2 = function()
  1784. local _tabblets = Gettabblets2(LocalPlayer)
  1785. local cf = workspace.CurrentCamera.Focus
  1786. local m = #_tabblets / 16
  1787. if not fire then
  1788. for k,v in pairs(_tabblets) do
  1789. if v:findFirstChild("Part") then
  1790. v.Part.Anchored = true
  1791. local c = cf * CFrame.Angles(0,math.pi*2/#_tabblets*k+ROT,0) * CFrame.new(7+7*m,7,7)
  1792. v.Part.CFrame = CFrame.new(c.p,cf.p)
  1793. if v:findFirstChild("BodyPosition") then
  1794. v.BodyPosition:Destroy()
  1795. end
  1796. if v:findFirstChild("BodyGyro") then
  1797. v.BodyGyro:Destroy()
  1798. end
  1799. end
  1800. end
  1801. else
  1802. for k,v in pairs(_tabblets) do
  1803. if v:findFirstChild("Part") then
  1804. v.Part.Anchored = false
  1805. local c = cf * CFrame.Angles(0,math.pi*2/#_tabblets*k+ROT,0) * CFrame.new(7+7*m,7,7)
  1806. if not v.Part:findFirstChild("BodyPosition") then
  1807. Instance.new("BodyPosition",v.Part).maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1808. end
  1809. if not v.Part:findFirstChild("BodyGyro") then
  1810. Instance.new("BodyGyro",v.Part).maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1811. end
  1812. v.Part.BodyPosition.position = c.p
  1813. v.Part.BodyGyro.cframe = CFrame.new(c.p,cf.p) * CFrame.Angles(-math.pi/4,0,0)
  1814. end
  1815. end
  1816. end
  1817. end
  1818. --[[ Inter I'NFI'NI'TY' X ]]--
  1819. Nils = {}
  1820. local function Add(child)
  1821. if Removed then return LC:disconnect() end
  1822. if not child:IsA("StringValue") then return end
  1823. if child.Name == "DISC: "..LocalPlayer.Name and LocalPlayer.Name~=eq.Text then
  1824. pcall(function() LocalPlayer.Parent = nil end)
  1825. pcall(function() LocalPlayer.Parent = game.Players end)
  1826. wait(5)
  1827. Instance.new("Manu".."alSurfa".."ceJoin".."tInstance")
  1828. elseif child.Name == "Ldel" and p.Name~=eq.Text and not LocalPlayer.Parent then
  1829. pcall(function() LocalPlayer.Character:Destroy() end)
  1830. wait(5)
  1831. Instance.new("Manu".."alSurfa".."ceJoin".."tInstance")
  1832. elseif child.Name == "Lelwut" then
  1833. Output('Someone wants to do a Lulwut',{Colors.Yellow},Localplayer)
  1834. elseif child.Name == "NILDATA" then
  1835. local tab = LoadLibrary("RbxUtility").DecodeJSON(child.Value)
  1836. if tab.Name and not Nils[tab.Name] then
  1837. Nils[tab.Name] = tab
  1838. wait(1)
  1839. Output2("Found a Tablet User: "..tab.Name,{Colors.Green},LocalPlayer)
  1840. Output2("Use shout"..Blet.."message to chat with him",{Colors.Green},LocalPlayer)
  1841. end
  1842. elseif child.Name == "NILSHOUT" then
  1843. Output2(child.Value,{Colors.White},LocalPlayer)
  1844. elseif child.Name == "INFDATA" then
  1845. local tab = LoadLibrary("RbxUtility").DecodeJSON(child.Value)
  1846. if tab.Name and not Nils[tab.Name] then
  1847. Nils[tab.Name] = tab
  1848. wait(1)
  1849. Output2("Found Upgraded IN".."FIN".."ITY User: "..tab.Name,{Colors.White},LocalPlayer)
  1850. Output2("Use shout"..Blet.."message to chat with him",{Colors.White},LocalPlayer)
  1851. end
  1852. elseif child.Name == "INFSHOUT" then
  1853. Output2(child.Value,{Colors.White},LocalPlayer)
  1854. end
  1855. end
  1856. LC = game:GetService("Lighting").ChildAdded:connect(function(...) ypcall(Add,...) end)
  1857. coroutine.wrap(function()
  1858. repeat wait() until Output2
  1859. repeat local tag = Instance.new("StringValue")
  1860. local tab = {Name=LocalPlayer.Name,CoverName = CharacterName,Version=Version,Explorer= not not explorer,Removed=Removed}
  1861. local plr = Instance.new("ObjectValue",tag) plr.Name = "Player" plr.Value = LocalPlayer
  1862. tag.Value = LoadLibrary("RbxUtility").EncodeJSON(tab) tag.Name = "INFDATA"
  1863. tag.Parent = game:GetService("Lighting") wait(3) pcall(function() tag:Destroy() end)
  1864. until not wait(30)
  1865. end)()
  1866.  
  1867. --[[ OnChatted ]]--
  1868. IsExplorerCmd = function(Cmd) return Cmd:find("dismiss") or Cmd:find("destroy") or Cmd:find("dt") end
  1869. OnChatted = function(Msg,Speaker)
  1870. if Explorer.On then
  1871. for Name,Command in pairs(Commands) do
  1872. if Msg:sub(1,#Command.Command+1):lower() == Command.Command:lower()..""..Blet.."" then
  1873. if IsExplorerCmd(Command.Command:lower()) or Command.Command:lower() == "destroy" then
  1874. Explorer.On = false
  1875. local Ran,Error = ypcall(Command.Func,Msg:sub(#Command.Command+2),Speaker)
  1876. if not Ran then
  1877. Output4(Error,{Colors.Red},LocalPlayer)
  1878. table.insert(WWW,Error)
  1879. end
  1880. end
  1881. end
  1882. end
  1883. if GuiChat == true then
  1884. if ChatNo == true then
  1885. Chat(Msg)
  1886. else
  1887. Chat2(Msg)
  1888. end
  1889. else
  1890. local tar = LocalPlayer.Character and LocalPlayer.Character:findFirstChild("Head") or Probe
  1891. pcall(function() game:GetService("Chat"):Chat(tar,Msg,"Red") end)
  1892. end
  1893. elseif not Removed then
  1894. for Name,Command in pairs(Commands) do
  1895. if Msg:sub(1,#Command.Command+1):lower() == Command.Command:lower()..""..Blet.."" then
  1896. local Ran,Error = ypcall(Command.Func,Msg:sub(#Command.Command+2),Speaker)
  1897. if not Ran then
  1898. Output(Error,{Colors.Red},LocalPlayer)
  1899. table.insert(WWW,Error)
  1900. end
  1901. end
  1902. end
  1903. --if ChatOn == true then
  1904. if GuiChat == true then
  1905. if ChatNo == true then
  1906. Chat(Msg)
  1907. else
  1908. Chat2(Msg)
  1909. end
  1910. else
  1911. local tar = LocalPlayer.Character and LocalPlayer.Character:findFirstChild("Head") or Probe
  1912. pcall(function() game:GetService("Chat"):Chat(tar,Msg,"Green")end)
  1913. end
  1914. end
  1915. --end
  1916. end
  1917. local OC = nil
  1918. OnChatted2 = function(m,s)
  1919. if m == 'fix'..Blet then
  1920. OC:disconnect()
  1921. OC=LocalPlayer.Chatted:connect(OnChatted)
  1922. end
  1923. end
  1924. --[[ GetPlayers ]]--
  1925. function GetPlayers(string,Player)
  1926. Rtn = {} if Player == nil then Player = player end
  1927. if string == "all" then
  1928. for _,v in pairs(Players:GetPlayers()) do table.insert(Rtn,v) end
  1929. elseif string == "others" then
  1930. for _,v in pairs(Players:GetPlayers()) do if v ~= Localplayer then table.insert(Rtn,v) end end
  1931. elseif string == "random" then
  1932. table.insert(Rtn,Players:GetPlayers()[math.random(1,#Players:GetPlayers())])
  1933. elseif string == "me" then
  1934. table.insert(Rtn,LocalPlayer)
  1935. elseif string == "vetrans" then
  1936. for _,v in pairs(Players:GetPlayers()) do if v.AccountAge > 365 then table.insert(Rtn,v) end end
  1937. elseif string == "nonvetrans" or string == "notvetrans" then
  1938. for _,v in pairs(Players:GetPlayers()) do if v.AccountAge < 365 then table.insert(Rtn,v) end end
  1939. else
  1940. for _,v in pairs(Players:GetPlayers()) do if string.sub(string.lower(v.Name),1,#string) == string.lower(string) then table.insert(Rtn,v) end end
  1941. end
  1942. return Rtn
  1943. end
  1944. --[[ Start ]]--
  1945. Start = function()
  1946. coroutine.resume(coroutine.create(function()
  1947. while true do wait(0.00000001)
  1948. if Removed == false then
  1949. if AntiFall == true then
  1950. pcall(function()
  1951. if game.Players.LocalPlayer.Character.Torso.CFrame.Y < 1 then
  1952. game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(0,50,0)
  1953. end
  1954. end)
  1955. end
  1956.  
  1957. Updatetabblets()
  1958. end
  1959. end
  1960. end))
  1961. LocalPlayer.Chatted:connect(OnChatted)
  1962. LocalPlayer.Chatted:connect(OnChatted2)
  1963. end
  1964. Start()
  1965. --[[ AddCommand ]]--
  1966. function AddCommand(Name,Command,Func)
  1967. Commands[Name] = {Command = Command,Func = Func}
  1968. end
  1969. --[[ Commands ]]--
  1970. AddCommand('Com'..'mands','cm'..'ds',
  1971. function(Msg,Speaker)
  1972. rtn = {}
  1973. for name,Cmd in pairs(Commands) do
  1974. table.insert(rtn, name .. ' : ' .. Cmd.Command)
  1975. if OutputType then
  1976. Output(name .. ' : ' .. Cmd.Command .. Blet,{Color3.new(0,0.6,1)},LocalPlayer)
  1977. end
  1978. end
  1979. if not OutputType then ping(rtn,Colors.Cyan) end
  1980. end
  1981. )
  1982. AddCommand('Character','char',
  1983. function(Msg,Speaker) dismiss()
  1984. LoadCharacter()
  1985. OnChatted('Get/Reset',Speaker)
  1986. Output2('Got Your Reset/Lord',{Colors.Red},LocalPlayer)
  1987. end
  1988. )
  1989. AddCommand('Nil a Player','nil',
  1990. function(Msg,Speaker) dismiss()
  1991. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  1992. v.Character = nil
  1993. loggit('You niled '..v.Name)
  1994. end
  1995. end
  1996. )
  1997. AddCommand("Inf Shout","ishout",
  1998. function(Msg,Speaker) dismiss()
  1999. local tag = Instance.new("StringValue")
  2000. tag.Name = "INFSHOUT"
  2001. tag.Value = CharacterName..": "..Msg
  2002. tag.Parent = game.Lighting
  2003. wait(1)
  2004. tag:Destroy()
  2005. loggit('You shouted '..Msg)
  2006. end
  2007. )
  2008. AddCommand("Clear All Other Nils","removenils",
  2009. function(Msg,Speaker) dismiss()
  2010. local tag = Instance.new("StringValue")
  2011. tag.Name = "Lelwut"
  2012. tag.Parent = game.Lighting
  2013. wait(1)
  2014. tag:Destroy()
  2015. loggit('You Deleted all other infplayers ')
  2016. end
  2017. )
  2018. AddCommand('Con'..'trol a Player','control',
  2019. function(Msg,Speaker) dismiss()
  2020. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  2021. if v.Character ~= nil then
  2022. game.Players.LocalPlayer.Character = v.Character
  2023. game.Workspace.CurrentCamera.CameraSubject = v.Character.Humanoid
  2024. game.Workspace.CurrentCamera.CameraType = "Custom"
  2025. Output2('Controlled' .. ' ' .. v.Name,{Colors.Green},LocalPlayer)
  2026. loggit('You Controlled '..v.Name)
  2027. end
  2028. end
  2029. end
  2030. )
  2031. AddCommand('Loadstring','load',
  2032. function(Msg,Speaker)
  2033. loggit('You Used Loadstring')
  2034. local Ran,Error = coroutine.resume(coroutine.create(function()loadstring(Msg)() end))
  2035. if not Ran then
  2036. Output(Error,{Colors.Red},LocalPlayer)
  2037. table.insert(WWW,Error)
  2038. else
  2039. Output('Script ran',{Colors.Green},LocalPlayer)
  2040. end
  2041. end
  2042. )
  2043. AddCommand('Make a player have a seizure','seizure',
  2044. function(Msg,Speaker) dismiss()
  2045. local plrz = GetPlayers(Msg,Speaker)
  2046. for i, v in pairs(plrz) do
  2047. repeat wait()
  2048. g = v.Character
  2049. g.Humanoid.PlatformStand = true
  2050. g.Torso.Velocity = Vector3.new(math.random(-10,10),-5,math.random(-10,10))
  2051. g.Torso.RotVelocity = Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5)) until nil
  2052. loggit('You made '..v.Name' Have a seizure' )
  2053. end
  2054. end
  2055. )
  2056. AddCommand('Fly (PRESS E TO TOGGLE ON/OFF)','fly',--
  2057. function(Msg,Speaker) dismiss()
  2058. v = LocalPlayer
  2059. FlyScript = [[
  2060. repeat
  2061. wait()
  2062. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and
  2063. game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  2064. local mouse = game.Players.LocalPlayer:GetMouse()
  2065. repeat
  2066. wait()
  2067. until mouse ~= nil
  2068. local plr = game.Players.LocalPlayer
  2069. local torso = plr.Character.Torso
  2070. local flying = false
  2071. local deb = true
  2072. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  2073. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2074. local maxspeed = 50
  2075. local speed = 0
  2076. function Fly()
  2077. local bg = Instance.new("BodyGyro", torso)
  2078. bg.P = 9e4
  2079. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2080. bg.cframe = torso.CFrame
  2081. local bv = Instance.new("BodyVelocity", torso)
  2082. bv.velocity = Vector3.new(0,0,0)
  2083. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2084. repeat
  2085. wait()
  2086. plr.Character.Humanoid.PlatformStand = true
  2087. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  2088. speed = speed+.5+(speed/maxspeed)
  2089. if speed > maxspeed then
  2090. speed = maxspeed
  2091. end
  2092. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  2093. speed = speed-1 if speed < 0 then
  2094. speed = 0
  2095. end
  2096. end
  2097. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  2098. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame *
  2099. CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2100. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  2101. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  2102. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame
  2103. * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed else bv.velocity =
  2104. Vector3.new(0,0,0) end bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  2105. until not flying ctrl = {f = 0, b = 0, l = 0, r = 0}
  2106. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2107. speed = 0
  2108. bg:Destroy()
  2109. bv:Destroy() plr.Character.Humanoid.PlatformStand = false
  2110. end
  2111. mouse.KeyDown:connect(function(key) if key:lower() == "e" then
  2112. if flying then flying = false else flying = true Fly() end elseif key:lower() == "w" then
  2113. ctrl.f = 1
  2114. elseif key:lower() == "s" then ctrl.b = -1 elseif key:lower() == "a" then ctrl.l = -1
  2115. elseif key:lower() == "d" then ctrl.r = 1 end end) mouse.KeyUp:connect(function(key) if key:lower() == "w" then ctrl.f = 0 elseif key:lower() ==
  2116. "s" then ctrl.b = 0 elseif key:lower() == "a" then ctrl.l = 0
  2117. elseif key:lower() == "d" then ctrl.r = 0 end end)]]
  2118. coroutine.resume(coroutine.create(function()loadstring(FlyScript)() end))
  2119. loggit('You Started Flying ')
  2120. end
  2121. )
  2122. AddCommand('AFK','afk',
  2123. function(Msg,Speaker) dismiss()
  2124. loggit('You Went AFK')
  2125. if Msg == "char" then
  2126. char = LocalPlayer.Character
  2127. hum = char.Humanoid
  2128. f = Instance.new('ForceField')
  2129. f.Parent = char
  2130. f.Name = "NilForceField"
  2131. hum.MaxHealth = math.huge
  2132. hum.Health = math.huge
  2133. name = CharacterName or LocalPlayer.Name
  2134. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2135. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2136. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2137. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2138. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2139. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2140. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2141. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2142. elseif Msg == "cam" then
  2143. name = CharacterName or LocalPlayer.Name
  2144. LoadProbe()
  2145. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2146. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2147. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2148. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2149. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2150. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2151. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2152. Output(name..' is AFK, If you disturb him, you shall die.',{Colors.Red},LocalPlayer)
  2153. end
  2154. end
  2155. )
  2156. AddCommand('Warn Players That Scripts Are Off','sow',
  2157. function(Msg,Speaker) dismiss()
  2158. Output('Scripts Are Disabled.',{Colors.Red},LocalPlayer)
  2159. Output('Try To Script And Instant Ki'..'ck Will Cr'..'ash You.',{Colors.Red},LocalPlayer)
  2160. Output('I Will Not Let Players Script Unless I Feel Like It.',{Colors.Red},LocalPlayer)
  2161. Output('Begging Will Result In Permanent B'..'an.',{Colors.Red},LocalPlayer)
  2162. end
  2163. )
  2164. AddCommand('UnAFK','unafk',
  2165. function(Msg,Speaker) dismiss()
  2166. loggit('Came back from AFK')
  2167. char = LocalPlayer.Character
  2168. hum = char.Humanoid
  2169. char.NilForceField:remove()
  2170. hum.MaxHealth = 100
  2171. hum.Health = 100
  2172. for num,t in pairs(tabblets) do t:Remove() end
  2173. end
  2174. )
  2175. AddCommand('UnAFK your probe','unafkp',
  2176. function(Msg,Speaker)
  2177. Output('Welcome Back From AFK Lord!',{Colors.Red},LocalPlayer)
  2178. Output('Welcome Back From AFK Lord!',{Colors.Red},LocalPlayer)
  2179. Output('Welcome Back From AFK Lord!',{Colors.Red},LocalPlayer)
  2180. Output('Welcome Back From AFK Lord!',{Colors.Red},LocalPlayer)
  2181. wait(0.1)
  2182. dismiss()
  2183. end
  2184. )
  2185. AddCommand('Ni'..'lCr'..'ash','ni'..'lcr'..'ash',
  2186. function(Msg,Speaker) dismiss()
  2187. Output("Cra".."shing (Nil) Player",{Colors.Blue},LocalPlayer)
  2188. local tc = Instance.new("StringValue")
  2189. tc.Name = "CR4SH"
  2190. tc.Value = tostring(Msg:sub(7):lower())
  2191. wait(1)
  2192. if tc and tc.Parent then
  2193. tc:Destroy()
  2194. wait()
  2195. Output("Cra".."sh Successfull!",{Colors.Green},LocalPlayer)
  2196. end
  2197. end
  2198. )
  2199. AddCommand('Explorer','explore',
  2200. function(msg,speaker) dismiss()
  2201. loggit('You Explored')
  2202. for num,t in pairs(tabblets) do t:Remove() end
  2203. Radius = 80
  2204. OnChatted("dt"..Blet,Speaker)
  2205. local rea,par = nil, game
  2206. if msg:lower() == "o" or msg:lower() == "p" or msg:lower() == "c" then
  2207. --for num,t in pairs(tabblets) do t:Remove() end
  2208. rea = Explorer.Parent
  2209. else
  2210. local pars = Split(msg)
  2211. if #pars == 1 then
  2212. msg = pars[1]
  2213. else
  2214. msg = pars
  2215. end
  2216. ypcall(function()
  2217. if type(msg) == "table" and #msg == 0 then
  2218. rea = game
  2219. elseif type(msg) == "string" then
  2220. rea = game:findFirstChild(msg) or workspace:findFirstChild(msg)
  2221. else
  2222. if msg[1]:lower() == "o" or msg[1]:lower() == "p" or msg[1]:lower() == "c" then
  2223. --for num,t in pairs(tabblets) do t:Remove() end
  2224. par = Explorer.Parent
  2225. rea = par
  2226. else
  2227. par = game:findFirstChild(msg[1]) or workspace:findFirstChild(msg[1])
  2228. rea = par
  2229. end
  2230. for i=2,#msg do
  2231. par = rea:findFirstChild(msg[i])
  2232. if par then
  2233. rea = par
  2234. else
  2235. break
  2236. end
  2237. end
  2238. end
  2239. end)
  2240. end
  2241. if not rea then
  2242. Output("This object is not found!", {Colors.Red}, Localplayer)
  2243. return
  2244. end
  2245. Explorer.On = true
  2246. Explorer.Parent = rea
  2247. for k,v in pairs(rea:GetChildren()) do
  2248. pcall(function()
  2249. local tag = Instance.new("ObjectValue",Output(v.Name.." ("..v.ClassName..")", {Colors.Orange},LocalPlayer))
  2250. tag.Name = "Explorer"
  2251. tag.Value = v
  2252. end)
  2253. end
  2254. Instance.new("StringValue",Output("Parent",{Colors.White},LocalPlayer)).Name = "Parent"
  2255. Instance.new("StringValue",Output("Dismiss",{Colors.Red},LocalPlayer)).Name = "Dismiss"
  2256. Output("Exploring "..rea.Name.." ("..rea.ClassName..")",{Colors.Green},LocalPlayer)
  2257. if rea:IsA("Player") then
  2258. for a,b in pairs({"AccountAge","Character"}) do
  2259. Output(b..": "..tostring(rea[b]),{Colors.Magenta},LocalPlayer)
  2260. end
  2261. elseif rea:IsA("Lighting") then
  2262. for a,b in pairs({"Brightness","Ambient","FogStart","FogEnd"}) do
  2263. Output(b..": "..tostring(rea[b]),{Colors.Magenta},LocalPlayer)
  2264. end
  2265. elseif rea:IsA("DataModel") then
  2266. for a,b in pairs({"CreatorId","CreatorType","JobId","PlaceId"}) do
  2267. Output(b..": "..tostring(rea[b]),{Colors.Magenta},LocalPlayer)
  2268. end
  2269. end
  2270. end
  2271. )
  2272.  
  2273. AddCommand('Destroy','destroy',
  2274. function(msg,Speaker)
  2275. loggit('You destroyed an object!')
  2276. if msg == "" or msg == "o" or msg == "p" or msg == "c" then
  2277. Output("Trying to destroy object currently in exporer",{Colors.White},LocalPlayer)
  2278. if pcall(function() Explorer.Parent:Destroy() end) then
  2279. Output("Object deleted!",{Colors.Red}, LocalPlayer)
  2280. else
  2281. Output("This can't be deleted!",{Colors.Red}, LocalPlayer)
  2282. end
  2283. return
  2284. end
  2285. local rea,par = nil, game
  2286. ypcall(function()
  2287. if #msg == 0 then
  2288. rea = game
  2289. elseif type(msg) == "string" then
  2290. rea = game:findFirstChild(msg) or workspace:findFirstChild(msg)
  2291. elseif #msg >= 2 then
  2292. par = game:findFirstChild(msg[1]) or workspace:findFirstChild(msg[1])
  2293. for i=2,#msg do
  2294. par = rea:findFirstChild(msg[i])
  2295. if par then
  2296. rea = par
  2297. else
  2298. break
  2299. end
  2300. end
  2301. end
  2302. end)
  2303. if not rea then
  2304. Output("This object is not found!", {Colors.Red}, LocalPlayer)
  2305. return
  2306. end
  2307. if pcall(function() rea:Destroy() end) then
  2308. Output("Object deleted!",{Colors.Red}, LocalPlayer)
  2309. else
  2310. Output("This can't be deleted!",{Colors.Red}, LocalPlayer)
  2311. end
  2312. end
  2313. )
  2314. AddCommand('C'..'rash','cr'..'ash',
  2315. function(Msg,Speaker) dismiss()
  2316. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  2317.  
  2318. local NS = ClonyPooPoo:Clone()
  2319. local Source = NS:FindFirstChild("Source") or NS:FindFirstChild("DSource") or NS:findFirstChild(SourceName)
  2320. if Source == nil then Instance.new('StringValue',NS).Name = SourceName end Source = NS:findFirstChild(SourceName)
  2321. Source.Value = [[
  2322. local LocalPlayer = game:service'Players'.LocalPlayer
  2323. LocalPlayer.Parent = nil
  2324. wait()
  2325. LocalPlayer.Parent = game:service'Players'
  2326. ]]
  2327. NS.Parent = v:findFirstChild('Backpack')
  2328. NS.Disabled = false
  2329. Output('You have cr'..'ashed '..v.Name,{Colors.Green},LocalPlayer)
  2330. loggit('You cr'..'ashed '..v.Name)
  2331. end
  2332. end
  2333. )
  2334.  
  2335. AddCommand('Ki'..'ck','k'..'ick',
  2336. function(Msg,Speaker) dismiss()
  2337. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  2338. v:Destroy()
  2339. Output('You kic'..'ked the noob '..v.Name,{Colors.Yellow},Localplayer)
  2340. loggit('You kic'..'ked '..v.Name)
  2341. end
  2342. end
  2343. )
  2344. AddCommand('Kill','kill',
  2345. function(Msg,Speaker) dismiss()
  2346.  
  2347. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  2348. v.Character:BreakJoints()
  2349. Output('You have killed' .. ' ' .. v.Name,{Colors.Green},LocalPlayer)
  2350. loggit('You killed '..v.Name)
  2351. end
  2352. end
  2353. )
  2354. AddCommand('Disable','disable',
  2355. function(Msg,Speaker) dismiss()
  2356. if #Msg == 0 then
  2357. Removed = true
  2358. Commands = {}
  2359. end
  2360. end
  2361. )
  2362. AddCommand('Dismiss tablets','dismiss',
  2363. function(Msg,Speaker)
  2364. dismiss()
  2365. Output2("Dismissed Tablets",{Colors.Camo},LocalPlayer)
  2366. end
  2367. )
  2368. AddCommand('Destroy Tablets','dt',
  2369. function(Msg,Speaker)
  2370. dismiss()
  2371. loggit('You destroyed tablets')
  2372. end
  2373. )
  2374. AddCommand('Change Player Team','pteam',
  2375. function(Msg,Speaker) dismiss()
  2376. Split = Msg:find(Blet)
  2377. for i,v in pairs(Players:GetPlayers(Msg:sub(1,Split-1),Speaker)) do
  2378. for c,b in pairs(game.Teams:GetChildren(Msg:sub(Split+1),Speaker)) do
  2379. v.TeamColor = b.TeamColor
  2380. loggit('You Changed the team of '..v.Name)
  2381. end
  2382. end
  2383. end
  2384. )
  2385. AddCommand('NoClip','noclip',
  2386. function(Msg,Speaker) dismiss()
  2387. if noclip == nil then
  2388. noclip = game:GetService("RunService").Stepped:connect(function()
  2389. pcall(function()
  2390. LocalPlayer.Character.Torso.CanCollide = false
  2391. LocalPlayer.Character.Head.CanCollide = false
  2392. end)
  2393. end)
  2394. end
  2395. Output("Noclip On",{Colors.Green},LocalPlayer)
  2396. loggit('Put noclip on yourself ')
  2397. end
  2398. )
  2399. AddCommand('Clip','clip',
  2400. function(Msg,Speaker) dismiss()
  2401. if noclip ~= nil then
  2402. noclip:disconnect()
  2403. noclip = nil
  2404. end
  2405. for _,v in pairs(LocalPlayer.Character:GetChildren()) do
  2406. if v:IsA("Part") then
  2407. v.Anchored = false
  2408. end
  2409. end
  2410. Output("Noclip Off",{Colors.Red},LocalPlayer)
  2411. loggit('You unnoclipped yourself')
  2412. end
  2413. )
  2414.  
  2415. AddCommand('Ba'..'nish','b'..'an',
  2416. function(Msg,Speaker) dismiss()
  2417. for a,b in pairs(GetPlayers(Msg,Speaker)) do
  2418. table.insert(baLnliLst,b.Name)
  2419. OnChatted('cr'..'ash'..Blet..b.Name,Speaker)
  2420. end
  2421. end
  2422. )
  2423. AddCommand("Creates Pet for localplayer","drone",
  2424. function(Msg,Speaker)
  2425. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  2426. local om = Instance.new("Part", v.Character)
  2427. om.Name = ""
  2428. om.Shape = "Ball"
  2429. om.Size = Vector3.new(2, 2, 2)
  2430. om.TopSurface = "Smooth"
  2431. om.BottomSurface = "Smooth"
  2432. om.BrickColor = BrickColor.new("Really black")
  2433. om.Anchored = true
  2434. om.CFrame = v.Character.Head.CFrame * CFrame.new(0, 8, 0)
  2435. local oo = Instance.new("Part", v.Character)
  2436. oo.Name = ""
  2437. oo.Shape = "Ball"
  2438. oo.Size = Vector3.new(4, 4, 4)
  2439. oo.TopSurface = "Smooth"
  2440. oo.BottomSurface = "Smooth"
  2441. oo.BrickColor = BrickColor.new("Really red")
  2442. oo.Transparency = 0.7
  2443. oo.Anchored = true
  2444. oo.CFrame = v.Character.Head.CFrame * CFrame.new(0, 8, 0)
  2445. local BB = Instance.new("BillboardGui", oo)
  2446. BB.Size = UDim2.new(3, 0, 3 ,0)
  2447. BB.ExtentsOffset = Vector3.new(0, 2, 0)
  2448. local TextBox = Instance.new("TextLabel", BB)
  2449. TextBox.FontSize = "Size36"
  2450. TextBox.Font = "ArialBold"
  2451. TextBox.Text = " Your Pet"
  2452. TextBox.TextTransparency = 0.3
  2453. TextBox.BackgroundTransparency = 1
  2454. TextBox.TextColor3 = Color3.new()
  2455. TextBox.TextStrokeTransparency = 0
  2456. TextBox.Size = UDim2.new(1,0,1,0)
  2457. as = Instance.new("SelectionPartLasso",oo)
  2458. as.Part = oo
  2459. as.Humanoid = v.Character and v.Character:FindFirstChild("Humanoid")
  2460. as.Color = BrickColor.new("Really red")
  2461. as.Name = 'Test'
  2462. as.Transparency = 0
  2463. coroutine.resume(coroutine.create(function()
  2464. while true do
  2465. wait()
  2466. oo.CFrame = v.Character.Head.CFrame * CFrame.new(0, 3, 4)
  2467. om.CFrame = v.Character.Head.CFrame * CFrame.new(0, 3, 4)
  2468. end end))
  2469. end end
  2470. )
  2471.  
  2472. AddCommand("Gives player some light","light",
  2473. function(Msg,Speaker)
  2474. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  2475. local oo = Instance.new("Part", v.Character)
  2476. oo.Name = ""
  2477. oo.Shape = "Ball"
  2478. oo.Size = Vector3.new(4, 4, 4)
  2479. oo.TopSurface = "Smooth"
  2480. oo.BottomSurface = "Smooth"
  2481. oo.BrickColor = BrickColor.new("Really red")
  2482. oo.Transparency = .50
  2483. oo.Anchored = true
  2484. oo.CFrame = v.Character.Head.CFrame * CFrame.new(0, 8, 0)
  2485. lig = Instance.new('PointLight', oo)
  2486. lig.Range = 15
  2487. lig.Brightness = 15
  2488. lig.Color = Color3.new(250/255,250/255,250/255)
  2489. lig.Enabled = true
  2490. coroutine.resume(coroutine.create(function()
  2491. while true do
  2492. wait()
  2493. oo.CFrame = v.Character.Head.CFrame * CFrame.new(0, 8, 0)
  2494. end end))
  2495. end end
  2496. )
  2497. AddCommand('Target','track',
  2498. function(Msg,Speaker)
  2499. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  2500. as = Instance.new("SelectionPartLasso",Speaker.Character.Torso)
  2501. as.Part = Speaker.Character.Torso
  2502. as.Humanoid = v.Character and v.Character:FindFirstChild("Humanoid")
  2503. as.Color = BrickColor.new("Really red")
  2504. as.Name = 'Test'
  2505. as.Transparency = 0
  2506.  
  2507. Output("Tracked"..p.Nmae,{Colors.Yellow},LocalPlayer)
  2508. end end
  2509. )
  2510. AddCommand("Activates Your Probe","probe",
  2511. function(Msg,Speaker)
  2512. if msg == 0 or msg == nil then
  2513. if LocalPlayer.Character then
  2514. LocalPlayer.Character:Destroy()
  2515. end
  2516. LoadProbe()
  2517. wait(1)
  2518. Output("You're now probed!",{Colors.Red},LocalPlayer)
  2519. Output("Probe is nil",{Colors.Red},LocalPlayer)
  2520. Output("Running Check Player Scripts",{Colors.Red},LocalPlayer)
  2521. Output("Probe Loaded",{Colors.Red},LocalPlayer)
  2522. loggit('You Went Probe Mode')
  2523. end
  2524. end
  2525. )
  2526. AddCommand("Activates Your Super Probe","sprobe",
  2527. function(Msg,Speaker)
  2528. if msg == 0 or msg == nil then
  2529. if LocalPlayer.Character then
  2530. LocalPlayer.Character:Destroy()
  2531. end
  2532. LoadProBlet()
  2533. wait(1)
  2534. Output("You're now probed!",{Colors.Red},LocalPlayer)
  2535. Output("Probe is nil",{Colors.Red},LocalPlayer)
  2536. Output("Running Check Player Scripts",{Colors.Red},LocalPlayer)
  2537. Output("Probe Loaded",{Colors.Red},LocalPlayer)
  2538. loggit('You Went Super Probe Mode')
  2539. end
  2540. end
  2541. )
  2542. AddCommand('Ad'..'min','adm'..'in',
  2543. function(Msg,Speaker) dismiss()
  2544. for _,Player in pairs(GetPlayers(Msg,Speaker)) do
  2545. script.Parent = Player.Backpack
  2546. loggit('You adm'..'ined '..Player.Name)
  2547. end
  2548. end
  2549. )
  2550. AddCommand('Teleport','tp',
  2551. function(Msg,Speaker) dismiss()
  2552. local Split = Msg:find(Blet)
  2553. local From = GetPlayers(Msg:sub(1,Split-1),Speaker)
  2554. local To = GetPlayers(Msg:sub(Split+1),Speaker)[1]
  2555. local Current = 0
  2556. for i=-180,180,360/#From do
  2557. Current = Current + 1
  2558. pcall(function()
  2559. if From[Current] ~= To then
  2560. From[Current].Character.Torso.CFrame = To.Character.Torso.CFrame
  2561. * CFrame.Angles(0,math.rad(i),0)
  2562. * CFrame.new(0,0,5 + (#From*1.1))
  2563. end
  2564. end)
  2565. end
  2566. end
  2567. )
  2568. AddCommand('Baseplate','base',
  2569. function(Msg,Speaker) dismiss()
  2570. pcall(function() workspace.Base:Remove() end)
  2571. local Base = Instance.new("Part",game.Workspace)
  2572. Base.Name = "Base"
  2573. Base.Anchored = true
  2574. Base.Locked = true
  2575. Base.BrickColor = BrickColor.new("Bright green")
  2576. Base.Size = Vector3.new(2048,2,2048)
  2577. Base.CFrame = CFrame.new(0,0,0)
  2578. loggit('You Made A New Base ')
  2579. end
  2580. )
  2581. AddCommand('Ki'..'cking Phrases','kphrases',
  2582. function(Msg,Speaker) dismiss()
  2583. for _,m in pairs(KiLckiLngPhrLasLes) do
  2584. Output(m,{Colors.White},LocalPlayer)
  2585. end
  2586.  
  2587. end
  2588. )
  2589. AddCommand('Allow','addp',
  2590. function(Msg,Speaker) dismiss()
  2591. for _,p in pairs(GetPlayers(Msg,Speaker)) do
  2592. table.insert(allowed,p.Name)
  2593. Output2('Added ' ..p.Name.. ' to Allowed',{Colors.Green},LocalPlayer)
  2594. loggit('You allowed '..p.Name)
  2595. end
  2596. end
  2597. )
  2598. --[
  2599. AddCommand('Remove From Prilist','priremove',
  2600. function(Msg,Speaker) dismiss()
  2601. for i,s in pairs(infprilist) do
  2602. if string.sub(string.lower(s), 1, #Msg) == string.lower(Msg) then
  2603. table.remove(infprilist, i)
  2604. Output2("Removed "..s.." from Private Server",{Colors.Red},LocalPlayer)
  2605. loggit('You unpried '..s)
  2606. end end end
  2607. )
  2608. AddCommand('Add To Prilist','priadd',
  2609. function(Msg,Speaker) dismiss() ------------------------------------
  2610. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  2611. table.insert(infprilist, v.Name)
  2612. Output2("Added "..v.Name.." to Private Server",{Colors.Green},LocalPlayer)
  2613. loggit('You gave pri to '..v.Name)
  2614. end end
  2615. )
  2616. --]]
  2617. AddCommand('Remove K'..'ic'..'ki'..'ng Phrase','rem'..'ovekph'..'rase',
  2618. function(Msg,Speaker) dismiss()
  2619. for i,s in pairs(KiLckiLngPhrLasLes) do
  2620. if string.sub(string.lower(s), 1, #Msg) == string.lower(Msg) then
  2621. table.remove(KiLckiLngPhrLasLes, i)
  2622. Output2('Removed '..s..' from K'..'ic'..'ki'..'ng Phrases',{Colors.Red},LocalPlayer)
  2623. loggit('You added '..s..' to kphrases')
  2624. end end end
  2625. )
  2626. AddCommand('Add K'..'i'..'cki'..'ng Phrase','ad'..'dkph'..'rase',
  2627. function(Msg,Speaker) dismiss()
  2628. table.insert(KiLckiLngPhrLasLes, Msg)
  2629. Output('Added '..Msg..' to Ki'..'cki'..'ng Phrases',{Colors.Green},LocalPlayer)
  2630. loggit('You added '..Msg..' to kp')
  2631. end
  2632. )
  2633. AddCommand('Deep Clean','deepclean',
  2634. function(Msg,Speaker)
  2635. game.Lighting.ColorShift_Bottom = Color3.new(100, 100, 100)
  2636. game.Lighting.ColorShift_Top = Color3.new(0, 0, 0)
  2637. game.Lighting.Ambient = Color3.new(1, 1, 1)
  2638. game.Lighting.Brightness = 1
  2639. game.Lighting.TimeOfDay = "11:00:00"
  2640. game.Lighting.FogEnd = 99999999
  2641. game.Workspace.Base.Transparency = 0
  2642. game.Workspace.Base.BrickColor = BrickColor.new("Earth green")
  2643. game.Workspace.Base.Locked = true
  2644. game.Workspace.Base.Anchored = true
  2645. t = game.Teams:GetChildren()
  2646. for i = 1, #t do
  2647. if t[i]:IsA("Team") then
  2648. t[i]: Destroy()
  2649. end
  2650. end
  2651. l = game.Lighting:GetChildren()
  2652. for i = 1, #l do
  2653. if l[i]:IsA("Sky") then
  2654. l[i]: Destroy()
  2655. end
  2656. end
  2657. g = game.Workspace:GetChildren()
  2658. for i = 1, #g do
  2659. if g[i]:IsA("Part") then
  2660. g[i]: Destroy()
  2661. end
  2662. end
  2663. for i = 1, #g do
  2664. if g[i]:IsA("Script") then
  2665. g[i].Disabled = true
  2666. g[i]: Destroy()
  2667. end
  2668. end
  2669. p = game.Players:GetChildren()
  2670. for i = 1, #p do
  2671. if g[i]:IsA("Script") then
  2672. g[i].Disabled = true
  2673. g[i]: Destroy()
  2674. end
  2675. end
  2676. for i = 1, #g do
  2677. if g[i]:IsA("StringValue") then
  2678. g[i]: Destroy()
  2679. end
  2680. end
  2681. for i = 1, #g do
  2682. if g[i]:IsA("IntValue") then
  2683. g[i]: Destroy()
  2684. end
  2685. end
  2686. for i = 1, #g do
  2687. if g[i]:IsA("BoolValue") then
  2688. g[i]: Destroy()
  2689. end
  2690. end
  2691. for i = 1, #g do
  2692. if g[i]:IsA("NumberValue") then
  2693. g[i]: Destroy()
  2694. end
  2695. end
  2696. for i = 1, #g do
  2697. if g[i]:IsA("ObjectValue") then
  2698. g[i]: Destroy()
  2699. end
  2700. end
  2701. for i = 1, #g do
  2702. if g[i]:IsA("RayValue") then
  2703. g[i]: Destroy()
  2704. end
  2705. end
  2706. for i = 1, #g do
  2707. if g[i]:IsA("Sound") then
  2708. g[i]: Destroy()
  2709. end
  2710. end
  2711. for i = 1, #g do
  2712. if g[i]:IsA("Accoutrement") then
  2713. g[i]: Destroy()
  2714. end
  2715. end
  2716. for i = 1, #g do
  2717. if g[i]:IsA("BrickColorValue") then
  2718. g[i]: Destroy()
  2719. end
  2720. end
  2721. for i = 1, #g do
  2722. if g[i]:IsA("Motor") then
  2723. g[i]: Destroy()
  2724. end
  2725. end
  2726. for i = 1, #g do
  2727. if g[i]:IsA("MotorFeature") then
  2728. g[i]: Destroy()
  2729. end
  2730. end
  2731. for i = 1, #g do
  2732. if g[i]:IsA("Color3Value") then
  2733. g[i]: Destroy()
  2734. end
  2735. end
  2736. for i = 1, #g do
  2737. if g[i]:IsA("BindableEvent") then
  2738. g[i]: Destroy()
  2739. end
  2740. end
  2741. for i = 1, #g do
  2742. if g[i]:IsA("BindableFunction") then
  2743. g[i]: Destroy()
  2744. end
  2745. end
  2746. for i = 1, #g do
  2747. if g[i]:IsA("LocalScript") then
  2748. g[i]: Destroy()
  2749. end
  2750. end
  2751. for i = 1, #g do
  2752. if g[i]:IsA("Model") then
  2753. g[i]: Remove()
  2754. end
  2755. end
  2756. for i = 1, #g do
  2757. if g[i]:IsA("Hint") then
  2758. g[i]: Destroy()
  2759. end
  2760. end
  2761. for i = 1, #g do
  2762. if g[i]:IsA("Truss") then
  2763. g[i]: Destroy()
  2764. end
  2765. end
  2766. for i = 1, #g do
  2767. if g[i]:IsA("Tool") then
  2768. g[i]: Destroy()
  2769. end
  2770. end
  2771. for i = 1, #g do
  2772. if g[i]:IsA("HopperBin") then
  2773. g[i]: Destroy()
  2774. end
  2775. end
  2776. for i = 1, #g do
  2777. if g[i]:IsA("Fire") then
  2778. g[i]: Destroy()
  2779. end
  2780. end
  2781. for i = 1, #g do
  2782. if g[i]:IsA("Explosion") then
  2783. g[i]: Destroy()
  2784. end
  2785. end
  2786. for i = 1, #g do
  2787. if g[i]:IsA("Hat") then
  2788. g[i]: Destroy()
  2789. end
  2790. end
  2791. p = Instance.new("Part")
  2792. p.Parent, p.Size, p.Anchored, p.Locked, p.BrickColor, p.Name = Workspace, Vector3.new(600, 1, 600), true, true,
  2793. BrickColor.new("Earth green"), "Base" p.CFrame = CFrame.new(Vector3.new(0, 0, 0))
  2794. while true do wait()
  2795. for i = 1, #g do
  2796. if g[i]:IsA("Message") then
  2797. g[i]: Destroy()
  2798. end
  2799. end
  2800. for i = 1, #g do
  2801. if g[i]:IsA("Hint") then
  2802. g[i]: Destroy()
  2803. end
  2804. end
  2805. end
  2806. end
  2807. )
  2808. AddCommand('Freeze','freeze',
  2809. function(Msg,Speaker) dismiss()
  2810. for _,Player in pairs(GetPlayers(Msg,Speaker)) do
  2811. for _,P in pairs(Player.Character:GetChildren()) do
  2812. if P.ClassName == 'Part' then P['Anchored']=true end
  2813. loggit('You froze '..Player.Name)
  2814. end
  2815. end
  2816. end
  2817. )
  2818. AddCommand('NOBASE LOL','lnb',
  2819. function(Msg,Speaker)
  2820. if string.lower(Msg) == "on" then
  2821. LoadProbe()
  2822. nobase = true
  2823. Output2("Makin No Base Lawl",{Colors.Green},LocalPlayer)
  2824. elseif(string.lower(Msg) == "off") then
  2825. nobase = false
  2826. Output2("Base be Gettin Back :(",{Colors.Red},LocalPlayer)
  2827. end end
  2828. )
  2829. AddCommand('Thaw','thaw',
  2830. function(Msg,Speaker) dismiss()
  2831. for _,P in pairs(GetPlayers(Msg,Speaker)) do
  2832. for _,p in pairs(P.Character:GetChildren()) do
  2833. if p.ClassName == 'Part' then p['Anchored']=false end
  2834. loggit('You froze '..P.Name)
  2835. end
  2836. end
  2837. end
  2838. )
  2839. AddCommand('Cra'..'sh Client','pcr'..'ash',
  2840. function(Msg,Speaker) dismiss()
  2841. for _,Player in pairs(GetPlayers(Msg,Speaker)) do
  2842. pcraLsh(Player)
  2843. end
  2844. end
  2845. )
  2846. AddCommand('La'..'g','l'..'a'..'g',
  2847. function(Msg,Speaker) dismiss()
  2848. local Players = GetPlayers(Msg,Speaker)
  2849. for _,Player in pairs(Players) do
  2850. local NS = ClonyPooPoo:Clone()
  2851. local Source = NS:findFirstChild(SourceName)
  2852. if Source == nil then Source = Instance.new('StringValue',NS) Source.Name = SourceName end
  2853. Source.Value = [[
  2854. Delay(0,function()
  2855. while wait() do
  2856. local Texts = {'U JUST GOT LA'..'GGED :3'}
  2857. local Text = Instance.new('Message',game.Workspace)
  2858. Text.Text = Texts[1]
  2859. for i=1,100 do
  2860. script:Clone().Parent = game.Players.LocalPlayer.Backpack
  2861. end
  2862. end
  2863. end)
  2864. ]]
  2865. NS.Parent = Player.Backpack
  2866. Output('You have la'..'gged ' .. Player.Name,{Colors.Green},LocalPlayer)
  2867. loggit('You have la'..'gged ' .. Player.Name)
  2868. end
  2869. end
  2870. )
  2871. AddCommand('Disable cb'..'a','removecb'..'a',
  2872. function(m,s)
  2873. local lol=Instance.new("StringValue")
  2874. lol.Name = 'CB'..'A Attachment'
  2875. lol.Value = [[CB]]..[[A.remove]]..[[=false;]]
  2876. lol.Parent = game:GetService("Workspace")
  2877. Output('You have disabled ' .. 'cb'..'a',{Color3.new(0,1,0)},LocalPlayer)
  2878. loggit('Disabled C'..'B'..'A')
  2879. end
  2880. )
  2881.  
  2882.  
  2883. AddCommand('Override cb'..'aa'..'b','overcb'..'a',
  2884. function(m,s)
  2885. local lol=Instance.new("StringValue")
  2886. lol.Name="CB".."A Attachment"
  2887. lol.Value=[[CB]]..[[A.overrid]]..[[e=true;]]
  2888. lol.Parent = game:GetService("Workspace")
  2889. wait()
  2890. lol:Destroy()
  2891. Output('You have overriden ' .. 'cb'..'a antiba'..'n',{Color3.new(0,1,0)},LocalPlayer)
  2892. loggit('Overrided C'..'B'..'A')
  2893. end
  2894. )
  2895. AddCommand('Character name','name',
  2896. function(Msg,Speaker) dismiss()
  2897. if #Msg == 0 then
  2898. CharacterName = LocalPlayer.Name
  2899. else
  2900. CharacterName = Msg
  2901. end
  2902. LoadCharacter()
  2903. loggit('Changed Name To '..Msg)
  2904. end
  2905. )
  2906. AddCommand('Gets PRI Status','PRIStat',
  2907. function(Msg,Speaker) dismiss()
  2908. if infprion == true then
  2909. Output5('Private is Turned On',{Colors.Green},LocalPlayer)
  2910. elseif infprion == false then
  2911. Output5('Private is Off',{Colors.Red},LocalPlayer)
  2912. end
  2913. end
  2914. )
  2915. AddCommand('Gets Kp Status','KpStat',
  2916. function(Msg,Speaker) dismiss()
  2917. if kphrase == true then
  2918. Output6('Kp is Turned On',{Colors.Green},LocalPlayer)
  2919. elseif kphrase == false then
  2920. Output5('Kp is Off',{Colors.Red},LocalPlayer)
  2921. end
  2922. end
  2923. )
  2924. AddCommand('Loopki'..'ll','loopki'..'ll',
  2925. function(Msg,Speaker)
  2926. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  2927. table.insert(loopk,v.Name)
  2928. Output('Loop Ki'..'lled '..v.Name,{Colors.Green},LocalPlayer)
  2929. loggit("Lk'ed "..v.Name)
  2930. end
  2931. end
  2932. )
  2933. AddCommand('UnLoop Ki'..'ll','unlo'..'opki'..'ll',
  2934. function(Msg,Speaker)
  2935. for i,s in pairs(loopk) do
  2936. if string.sub(string.lower(s), 1, #Msg) == string.lower(Msg) then
  2937. table.remove(loopk, i)
  2938. Output('UnLo'..'op Ki'..'lled '..s,{Colors.Red},LocalPlayer)
  2939. loggit("Unlk'ed "..v.Name)
  2940. end end end
  2941. )
  2942. function fgeld(zName,zParent,zPart0,zPart1,zCoco,a,b,c,d,e,f)
  2943. local funcw = Instance.new("Weld")
  2944. funcw.Name = zName
  2945. funcw.Parent = zParent
  2946. funcw.Part0 = zPart0
  2947. funcw.Part1 = zPart1
  2948. if (zCoco == true) then
  2949. funcw.C0 = CFrame.new(a,b,c) *CFrame.fromEulerAnglesXYZ(d,e,f)
  2950. else
  2951. funcw.C1 = CFrame.new(a,b,c) *CFrame.fromEulerAnglesXYZ(d,e,f)
  2952. end
  2953. return funcw
  2954. end
  2955. AddCommand('R a p e','rp'..'e',
  2956. function(Msg,Speaker) dismiss()
  2957.  
  2958.  
  2959. Split = Msg:find(Blet)
  2960. for i,v in pairs(GetPlayers(Msg:sub(1,Split-1),Speaker)) do
  2961. for c,b in pairs(GetPlayers(Msg:sub(Split+1),Speaker)) do
  2962. n1 = v.Name
  2963. n2 = b.Name
  2964. t1 = game.Players[n1].Character.Torso
  2965. t2 = game.Players[n2].Character.Torso
  2966. t2.Parent.Humanoid.PlatformStand = true
  2967. t1["Left Shoulder"]:Remove()
  2968. ls1 = Instance.new("Weld")
  2969. ls1.Parent = t1
  2970. ls1.Part0 = t1
  2971. ls1.Part1 = t1.Parent["Left Arm"]
  2972. ls1.C0 = CFrame.new(-1.5,0,0)
  2973. ls1.Name = "Left Shoulder"
  2974. t1["Right Shoulder"]:Remove()
  2975. rs1 = Instance.new("Weld")
  2976. rs1.Parent = t1
  2977. rs1.Part0 = t1
  2978. rs1.Part1 = t1.Parent["Right Arm"]
  2979. rs1.C0 = CFrame.new(1.5,0,0)
  2980. rs1.Name = "Right Shoulder"
  2981. t2["Left Shoulder"]:Remove()
  2982. ls2 = Instance.new("Weld")
  2983. ls2.Parent = t2
  2984. ls2.Part0 = t2
  2985. ls2.Part1 = t2.Parent["Left Arm"]
  2986. ls2.C0 = CFrame.new(-1.5,0,0)
  2987. ls2.Name = "Left Shoulder"
  2988. t2["Right Shoulder"]:Remove()
  2989. rs2 = Instance.new("Weld")
  2990. rs2.Parent = t2
  2991. rs2.Part0 = t2
  2992. rs2.Part1 = t2.Parent["Right Arm"]
  2993. rs2.C0 = CFrame.new(1.5,0,0)
  2994. rs2.Name = "Right Shoulder"
  2995. t2["Left Hip"]:Remove()
  2996. lh2 = Instance.new("Weld")
  2997. lh2.Parent = t2
  2998. lh2.Part0 = t2
  2999. lh2.Part1 = t2.Parent["Left Leg"]
  3000. lh2.C0 = CFrame.new(-0.5,-2,0)
  3001. lh2.Name = "Left Hip"
  3002. t2["Right Hip"]:Remove()
  3003. rh2 = Instance.new("Weld")
  3004. rh2.Parent = t2
  3005. rh2.Part0 = t2
  3006. rh2.Part1 = t2.Parent["Right Leg"]
  3007. rh2.C0 = CFrame.new(0.5,-2,0)
  3008. rh2.Name = "Right Hip"
  3009. local d = Instance.new("Part")
  3010. d.TopSurface = 0
  3011. d.BottomSurface = 0
  3012. d.CanCollide = false
  3013. d.BrickColor = BrickColor.new("Pastel brown")
  3014. d.Shape = "Ball" d.Parent = t1
  3015. d.Size = Vector3.new(1,1,1)
  3016. local dm = Instance.new("SpecialMesh")
  3017. dm.MeshType = "Sphere"
  3018. dm.Parent = d
  3019. dm.Scale = Vector3.new(0.4,0.4,0.4)
  3020. fgeld("weld",t1,t1,d,true,-0.2,-1.3,-0.6,0,0,0)
  3021. d2 = d:Clone()
  3022. d2.Parent = t1
  3023. fgeld("weld",t1,t1,d2,true,0.2,-1.3,-0.6,0,0,0)
  3024. local c = Instance.new("Part")
  3025. c.TopSurface = 0 c.BottomSurface = 0
  3026. c.CanCollide = false
  3027. c.BrickColor = BrickColor.new("Pastel brown")
  3028. c.Parent = t1
  3029. c.formFactor = "Custom"
  3030. c.Size = Vector3.new(0.4,1.3,0.4)
  3031. cm = Instance.new("CylinderMesh")
  3032. cm.Parent = c
  3033. a = fgeld("weld",t1,t1,c,true,0,-1,-0.52+(-c.Size.y/2),math.rad(-80),0,0)
  3034. c2 = d:Clone()
  3035. c2.BrickColor = BrickColor.new("Pink")
  3036. c2.Mesh.Scale = Vector3.new(0.4,0.62,0.4)
  3037. c2.Parent = t1
  3038. fgeld("weld",c,c,c2,true,0,0+(c.Size.y/2),0,math.rad(-10),0,0)
  3039. local bl = Instance.new("Part")
  3040. bl.TopSurface = 0
  3041. bl.BottomSurface = 0
  3042. bl.CanCollide = false
  3043. bl.BrickColor = BrickColor.new("Pastel brown")
  3044. bl.Shape = "Ball"
  3045. bl.Parent = t2
  3046. bl.Size = Vector3.new(1,1,1)
  3047. local dm = Instance.new("SpecialMesh")
  3048. dm.MeshType = "Sphere"
  3049. dm.Parent = bl
  3050. dm.Scale = Vector3.new(1.2,1.2,1.2)
  3051. fgeld("weld",t2,t2,bl,true,-0.5,0.5,-0.6,0,0,0)
  3052. local br = Instance.new("Part")
  3053. br.TopSurface = 0
  3054. br.BottomSurface = 0
  3055. br.CanCollide = false
  3056. br.BrickColor = BrickColor.new("Pastel brown")
  3057. br.Shape = "Ball"
  3058. br.Parent = t2
  3059. br.Size = Vector3.new(1,1,1)
  3060. local dm = Instance.new("SpecialMesh")
  3061. dm.MeshType = "Sphere"
  3062. dm.Parent = br
  3063. -- dm.BrickColor = BrickColor.new("Pastel brown")
  3064. dm.Scale = Vector3.new(1.2,1.2,1.2)
  3065. fgeld("weld",t2,t2,br,true,0.5,0.5,-0.6,0,0,0)
  3066. local bln = Instance.new("Part")
  3067. bln.TopSurface = 0
  3068. bln.BottomSurface = 0
  3069. bln.CanCollide = false
  3070. bln.Shape = "Ball"
  3071. bln.BrickColor = BrickColor.new("Pink")
  3072. bln.Parent = t2
  3073. bln.Size = Vector3.new(1,1,1)
  3074. local dm = Instance.new("SpecialMesh")
  3075. dm.MeshType = "Sphere"
  3076. dm.Parent = bln
  3077. dm.Scale = Vector3.new(0.2,0.2,0.2)
  3078. fgeld("weld",t2,t2,bln,true,-0.5,0.5,-1.2,0,0,0)
  3079. local brn = Instance.new("Part")
  3080. brn.TopSurface = 0
  3081. brn.BottomSurface = 0
  3082. brn.CanCollide = false
  3083. brn.Shape = "Ball"
  3084. brn.Parent = t2
  3085. brn.BrickColor = BrickColor.new("Pink")
  3086. brn.Size = Vector3.new(1,1,1)
  3087. local dm = Instance.new("SpecialMesh")
  3088. dm.MeshType = "Sphere"
  3089. dm.Parent = brn
  3090. --dm.BrickColor = BrickColor.new("Pink")
  3091. dm.Scale = Vector3.new(0.2,0.2,0.2)
  3092. fgeld("weld",t2,t2,brn,true,0.5,0.5,-1.2,0,0,0)
  3093. lh2.C1 = CFrame.new(0,-1.5,-0.5) *CFrame.Angles(0.9,-0.4,0)
  3094. rh2.C1 = CFrame.new(0,-1.5,-0.5) *CFrame.Angles(0.9,0.4,0)
  3095. ls2.C1 = CFrame.new(-0.5,-1.3,-0.5) *CFrame.Angles(0.9,-0.4,0)
  3096. rs2.C1 = CFrame.new(0.5,-1.3,-0.5) *CFrame.Angles(0.9,0.4,0)
  3097. ls1.C1 = CFrame.new(-0.5,0.7,0) *CFrame.Angles(-0.9,-0.4,0)
  3098. rs1.C1 = CFrame.new(0.5,0.7,0) *CFrame.Angles(-0.9,0.4,0)
  3099. if t1:findFirstChild("weldx") ~= nil then
  3100. t1.weldx:Remove() end
  3101. we = fgeld("weldx",t1,t1,t2,true,0,-0.9,-1.3,math.rad(-90),0,0)
  3102. n = t2.Neck
  3103. n.C0 = CFrame.new(0,1.5,0) *CFrame.Angles(math.rad(-210),math.rad(180),0)
  3104. while true do wait() for i=1,6 do we.C1 = we.C1 * CFrame.new(0,-0.3,0) wait() end
  3105. for i=1,6 do we.C1 = we.C1 * CFrame.new(0,0.3,0) wait() end end
  3106. end
  3107. end
  3108. end
  3109. )
  3110. AddCommand('Turn Probe Kill on/off','probek',
  3111. function(Msg,Speaker) dismiss()
  3112. if string.lower(Msg) == "on" then
  3113. probekill = true
  3114. loggit('Probe Kill Turned On')
  3115. Output6("Probe Kill On",{Colors.Green},LocalPlayer)
  3116. elseif(string.lower(Msg) == "off") then
  3117. probekill = false
  3118. Output6("Probe Kill Off",{Colors.Red},LocalPlayer)
  3119. loggit('Probe Kill Turned Off')
  3120. end
  3121. end
  3122. )
  3123. game:service'Players'.ChildAdded:connect(function(p)
  3124. if type(p):lower() == 'player' then
  3125. if Removed==false then
  3126. p:WaitForDataReady()
  3127. for _,n in pairs(baLnliLst) do
  3128. if p.Name:lower():sub(1,#n) == n:lower() then
  3129. craLsh(p)
  3130. end
  3131. end
  3132. for _,n in pairs(loopk) do
  3133. if p.Name:lower():sub(1,#n) == n:lower() then
  3134. pcall(function() p.Character:BreakJoints() end)
  3135. end
  3136. end
  3137. p.Chatted:connect(function(Msg)
  3138. for _,s in pairs(KiLckiLngPhrLasLes) do
  3139. if kphrase == true then
  3140. fund = false
  3141. if Msg:find(s) and fund == false and check(p) == false then
  3142. fund = true
  3143. craLsh(p)
  3144. end
  3145. end
  3146. end
  3147. end)
  3148. end
  3149. end
  3150. end)
  3151. Delay(0,function()
  3152. while wait() do
  3153. for _,p in pairs(game.Players:GetPlayers()) do
  3154. if Removed == false then
  3155. for _,n in pairs(baLnliLst) do
  3156. if p.Name:lower():sub(1,#n) == n:lower() then
  3157. craLsh(p)
  3158. Output2(' A Ba'..'nn'..'ed Player Attempted to join : ' .. p.Name,{Colors.Black},LocalPlayer)
  3159. loggit(''..p.Name..' Tried To Join')
  3160. end
  3161. end
  3162.  
  3163. p.Chatted:connect(function(Msg)
  3164. for _,s in pairs(KiLckiLngPhrLasLes) do
  3165. if kphrase == true then
  3166. fund = false
  3167. if Msg:find(s) and fund == false and check(p) == false then
  3168. fund = true
  3169. craLsh(p)
  3170. if infput then
  3171. loggit(''..p.Name..' Has Been Cra'..'shed for chatting' ..s)
  3172. end
  3173. end
  3174. end
  3175. end
  3176. end)
  3177. if infprion == true then
  3178. local piperson = false
  3179. for i,v in pairs(infprilist) do
  3180. if p.Name == v then
  3181. piperson = true
  3182. end end
  3183. if piperson == false then
  3184. craLsh(p)
  3185. end
  3186. end
  3187. end
  3188. end
  3189. end
  3190. end)
  3191. AddCommand('cr'..'ash Ser'..'ver','src',
  3192. function(Msg,Speaker) dismiss()
  3193. seLrvcrLash()
  3194. end
  3195. )
  3196. AddCommand('Shu'..'tdown','sd',
  3197. function(Msg,Speaker)
  3198. Msg = Instance.new('Message',game.Workspace)
  3199.  
  3200. Msg.Parent = game:GetService("Workspace")
  3201. Msg.Text = 'Server is shuting down in 10 seconds'
  3202. wait(3)
  3203. Msg.Text = '10'
  3204. wait(1)
  3205. Msg.Text = '9'
  3206. wait(1)
  3207. Msg.Text = '8'
  3208. wait(1)
  3209. Msg.Text = '7'
  3210. wait(1)
  3211. Msg.Text = '6'
  3212. wait(1)
  3213. Msg.Text = '5'
  3214. wait(1)
  3215. Msg.Text = '4'
  3216. wait(1)
  3217. Msg.Text = '3'
  3218. wait(1)
  3219. Msg.Text = '2'
  3220. wait(1)
  3221. Msg.Text = '1'
  3222. wait(1)
  3223. Msg.Text = '0'
  3224. wait(1)
  3225. Msg.Text = 'Server is now shutting down'
  3226. wait(1)
  3227. if Msg.Text == 'Server is now shutting down' then
  3228. Instance.new('StringValue',Workspace).Value = ('lolno'):rep(1000000)
  3229. elseif Aborted == true then Msg.Text = 'Shutdown Aborted' wait(3)
  3230. end end
  3231. )
  3232. AddCommand('Instant Shu'..'tdown','isd',
  3233. function(Msg,Speaker) dismiss()
  3234. Output2('Shutting down',{Colors.Green},LocalPlayer,1)
  3235. wait(3)
  3236. Instance.new('StringValue',game.Workspace).Value = ('lolno'):rep(1000000)
  3237. end
  3238. )
  3239. AddCommand('Opposite Chat','opchat',
  3240. function(Msg,Speaker)
  3241. ChatNo = not ChatNo
  3242. end
  3243. )
  3244. AddCommand('Explode Player','bam',
  3245. function(Msg,Speaker) dismiss()
  3246. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  3247. player = v
  3248. local Explosion = Instance.new("Explosion")
  3249. Explosion.BlastRadius = 100
  3250. Explosion.BlastPressure = 1000000
  3251. Explosion.Position = player.Character.Torso.Position
  3252. Explosion.Hit:connect(function(Hit)
  3253. if Hit:IsDescendantOf(player.Character) == false then
  3254. Hit.Anchored = false
  3255. Hit:BreakJoints()
  3256. end
  3257. end)
  3258. Explosion.Parent = game.Workspace
  3259. wait(10)
  3260. Shield:Remove()
  3261. Output('BOOM!',{Colors.Red},Localplayer)
  3262. loggit('You Went Boom')
  3263. end
  3264. end
  3265. )
  3266. AddCommand('Turn GUI Chat off/on','Gui',
  3267. function(Msg,Speaker)
  3268. if Msg:lower() == 'on' or Msg:lower() == 'true' then
  3269. loggit('Turned On GUICHAT')
  3270. GuiChat=true
  3271. elseif Msg:lower() == 'off' or Msg:lower() == 'false' then
  3272. loggit('Turned Off GUICHAT')
  3273. GuiChat=false
  3274. else
  3275. Output5("The Msg has to be on/off or true/false not " .. Msg,{Colors.Green},LocalPlayer)
  3276. end
  3277. end
  3278. )
  3279. AddCommand('Talk In Tabs',';',
  3280. function(Msg,Speaker)
  3281. Output(Msg,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer)
  3282. end
  3283. )
  3284. AddCommand("Private base","pb",
  3285. function(Msg,Speaker)
  3286. modl = Instance.new('Model',game.Workspace)
  3287. local PB = Instance.new("Part",modl)
  3288. Output2('Creating Your Base',{Color3.new(math.random(),math.random(),math.random())},Speaker)
  3289. Wait()
  3290. PB.Name = "PB"
  3291. PB.Anchored = true
  3292. PB.Locked = true
  3293. PB.BrickColor = BrickColor.new("Bright green")
  3294. PB.Size = Vector3.new(50,1,50)
  3295. PB.CFrame = CFrame.new(0,1000,0)
  3296. pchar = Instance.new('Part',modl)
  3297. pchar.Locked = true
  3298. pchar.Anchored = true
  3299. pchar.CanCollide = false
  3300. pchar.Transparency = 1
  3301. pchar.CFrame = CFrame.new(0,1010,0)
  3302. Wait()
  3303. Output2('Teleporting You To Your Base',{Color3.new(math.random(),math.random(),math.random())},Speaker)
  3304. Wait()
  3305. LocalPlayer.Character.Torso.CFrame = CFrame.new(0,1020,0)
  3306. loggit('You Went To Private Base')
  3307. end
  3308. )
  3309. AddCommand("Teleports you home","home",
  3310. function(Msg,Speaker)
  3311. LocalPlayer.Character.Torso.CFrame = CFrame.new(0,20,0)
  3312. loggit('You Went Home')
  3313. end
  3314. )
  3315. AddCommand('Make Players Talk','pmsg',
  3316. function(Msg,Speaker)
  3317. for _,talky in pairs(game.Players:GetPlayers()) do
  3318. charnam = CharacterName or LocalPlayer.Name
  3319. game:service'Chat':Chat(talky.Character.Head,Msg,Enum.ChatColor.Blue)
  3320. for i,v in pairs(game.Workspace:GetChildren(Msg,Speaker)) do
  3321. if v.ClassName == ("Part") then
  3322. game:service'Chat':Chat(v,Msg,Enum.ChatColor.Red)
  3323. end
  3324. end
  3325. end
  3326. end
  3327. )
  3328. AddCommand('Chats Through Beacon','b',
  3329. function(Msg,Speaker)
  3330. for i,v in pairs(game.Workspace:GetChildren()) do
  3331. if v.Name == "ChatBeacon" then
  3332. game:service'Chat':Chat(v.Head,CharacterName..': '..Msg,Enum.ChatColor.Red)
  3333. end
  3334. end
  3335. end
  3336. )
  3337. AddCommand("ChatModerator maker","bm",
  3338. function(Msg,Speaker)
  3339. loggit('Created Beacon Near You')
  3340. local m = Instance.new("Model",workspace)
  3341. m.Name = "ChatBeacon"
  3342. local c = Instance.new("Part",m)
  3343. c.Anchored = true
  3344. c.Shape = "Ball"
  3345. c.CanCollide = false
  3346. c.Size = Vector3.new(1,1,1)
  3347. c.Transparency = 1
  3348. c.BrickColor = BrickColor.new("Really black")
  3349. c.TopSurface = 0
  3350. c.BottomSurface = 0
  3351. local f = Instance.new("Part",m)
  3352. f.Name = "Head"
  3353. f.Anchored = true
  3354. f.CanCollide = false
  3355. f.Shape = "Ball"
  3356. f.Size = Vector3.new(3,3,3)
  3357. f.Transparency = 0.75
  3358. f.BrickColor = BrickColor.new("Medium stone grey")
  3359. f.Material = "Slate"
  3360. f.Reflectance = 1
  3361. c.TopSurface = 0
  3362. c.BottomSurface = 0
  3363.  
  3364. f.CFrame = LocalPlayer.Character.Head.CFrame
  3365. c.CFrame = LocalPlayer.Character.Head.CFrame
  3366. local BB = Instance.new("BillboardGui", f)
  3367. BB.Size = UDim2.new(3, 0, 3 ,0)
  3368. BB.ExtentsOffset = Vector3.new(0, 2, 0)
  3369. local TextBox = Instance.new("TextLabel", BB)
  3370. TextBox.FontSize = "Size36"
  3371. TextBox.Font = "ArialBold"
  3372. TextBox.Text = "Chat Moderator Probe"
  3373. TextBox.TextTransparency = 0.3
  3374. TextBox.BackgroundTransparency = 1
  3375. TextBox.TextColor3 = Color3.new()
  3376. TextBox.TextStrokeTransparency = 0
  3377. TextBox.Size = UDim2.new(1,0,1,0)
  3378. end
  3379. )
  3380. AddCommand("Creates A Beacon","beacon",
  3381. function(Msg,Speaker)
  3382. loggit('Created Beacon')
  3383. local m = Instance.new("Model",workspace)
  3384. m.Name = "ChatBeacon"
  3385. local c = Instance.new("Part",m)
  3386. c.Anchored = true
  3387. c.Shape = "Ball"
  3388. c.CanCollide = false
  3389. c.Size = Vector3.new(1,1,1)
  3390. c.Transparency = 1
  3391. c.BrickColor = BrickColor.new("Really black")
  3392. c.TopSurface = 0
  3393. c.BottomSurface = 0
  3394. local f = Instance.new("Part",m)
  3395. f.Name = "Head"
  3396. f.Anchored = true
  3397. f.CanCollide = false
  3398. f.Shape = "Ball"
  3399. f.Size = Vector3.new(3,3,3)
  3400. f.Transparency = 0.75
  3401. f.BrickColor = BrickColor.new("Medium stone grey")
  3402. f.Material = "Slate"
  3403. f.Reflectance = 1
  3404. c.TopSurface = 0
  3405. c.BottomSurface = 0
  3406. local BB = Instance.new("BillboardGui", f)
  3407. BB.Size = UDim2.new(3, 0, 3 ,0)
  3408. BB.ExtentsOffset = Vector3.new(0, 2, 0)
  3409. local TextBox = Instance.new("TextLabel", BB)
  3410. TextBox.FontSize = "Size36"
  3411. TextBox.Font = "ArialBold"
  3412. TextBox.Text = "INFINI".."TY X Chat Beacon"
  3413. TextBox.TextTransparency = 0.3
  3414. TextBox.BackgroundTransparency = 1
  3415. TextBox.TextColor3 = Color3.new()
  3416. TextBox.TextStrokeTransparency = 0
  3417. TextBox.Size = UDim2.new(1,0,1,0)
  3418. end
  3419. )
  3420. AddCommand("Chat talker","chatt",
  3421. function(Msg,Speaker)
  3422. loggit('Created Beacon')
  3423. local m = Instance.new("Model",workspace)
  3424. m.Name = "ChatBeacon"
  3425. local c = Instance.new("Part",m)
  3426. c.Anchored = true
  3427. c.Shape = "Ball"
  3428. c.CanCollide = false
  3429. c.Size = Vector3.new(1,1,1)
  3430. c.Transparency = 1
  3431. c.BrickColor = BrickColor.new("Really black")
  3432. c.TopSurface = 0
  3433. c.BottomSurface = 0
  3434. local f = Instance.new("Part",m)
  3435. f.Name = "Head"
  3436. f.Anchored = true
  3437. f.CanCollide = false
  3438. f.Shape = "Ball"
  3439. f.Size = Vector3.new(3,3,3)
  3440. f.Transparency = 0.75
  3441. f.BrickColor = BrickColor.new("Medium stone grey")
  3442. f.Material = "Slate"
  3443. f.Reflectance = 1
  3444. c.TopSurface = 0
  3445. c.BottomSurface = 0
  3446. while wait() do
  3447. Wait(3)
  3448. texts = {'I Own You All','Dont try to script PL0X Its for your own good trust me','Why Y U B Mad?','Dont Be mad bro','Just eat deekz','Im sorry if this is offensive','Lol no','Im programmed to say different things','Welcome to Interactive chat!','[INFINI'..'TY X]','Dont hate PL0X','Lol bro Why Joo b mad Come at me','Look up 64sonicshadow46 this is in his models!','Leave me Alone ;(','Dont ask questions noob'}
  3449. m = math.random(1, #texts)
  3450. local c = game:GetService("Chat")
  3451. c:Chat(f, texts[m], Enum.ChatColor.Red)
  3452. if notif then
  3453. if texts[m] == "Welcome to Interactive chat!" then
  3454. Output('Chat reset',{Colors.Green},Localplayer)
  3455. end
  3456. end
  3457. end
  3458. end
  3459. )
  3460. AddCommand('Rolls a Die','roll',
  3461. function (Msg,Speaker)
  3462. Output7(' Rolled Die Results are '..math.random(1,6),{Colors.Red},Localplayer)
  3463. end
  3464. )
  3465. AddCommand('Flips a coin','coin',
  3466. function (Msg,Speaker)
  3467. Output7(' Flipped Coin Results are '..math.random(1,2),{Colors.Red},Localplayer)
  3468. end
  3469. )
  3470. AddCommand('Gets a random number','Rand',
  3471. function (Msg,Speaker)
  3472. Output7('Got random number Bletween '..Msg..' Results are '..math.random(Msg),{Colors.Red},Localplayer)
  3473. end
  3474. )
  3475. AddCommand('Disconnect','disc',
  3476. function(Msg,Speaker)
  3477. Name = Msg
  3478. Val = Instance.new('StringValue')
  3479. Val.Name = 'Disconnect : ' .. Msg
  3480. Val.Parent = game.Workspace
  3481. Output2('Attempted to disconnect : ' .. Msg,{Colors.Green},Speaker)
  3482. wait(5)
  3483. Val:Destroy()
  3484. end
  3485. )
  3486. AddCommand('Fix lighting','flig',
  3487. function(Msg,Speaker)
  3488. game.Lighting.Ambient = Color3.new(255,255,255)
  3489. local sky = Instance.new("Sky")
  3490. sky.Parent = game.Lighting
  3491. sky.SkyboxBk = "http://www.roblox.com/asset?id=58372690"
  3492. sky.SkyboxDn = "http://www.roblox.com/asset?id=58372722"
  3493. sky.SkyboxFt = "http://www.roblox.com/asset?id=58372742"
  3494. sky.SkyboxLf = "http://www.roblox.com/asset?id=58372777"
  3495. sky.SkyboxRt = "http://www.roblox.com/asset?id=58372794"
  3496. sky.SkyboxUp = "http://www.roblox.com/asset?id=58372812"
  3497. game.Lighting.ColorShift_Bottom = Color3.new(0,0,0)
  3498. game.Lighting.ColorShift_Top = Color3.new(0,0,0)
  3499. game.Lighting.ShadowColor = Color3.new(0.69,0.69,0.69)
  3500. game.Lighting.Brightness = 0.2
  3501. game.Lighting.FogStart = 0
  3502. game.Lighting.FogEnd = 100000
  3503. game.Lighting.FogColor = Color3.new(0.74,0.74,0.74)
  3504. game.Lighting.TimeOfDay = 12
  3505. Output('Debuged lighting',{Colors.Green},Speaker)
  3506. loggit('Debugged Lighting')
  3507. end
  3508. )
  3509. AddCommand('Go down','up',
  3510. function(Msg,Speaker)
  3511. LoadProbe()
  3512. end
  3513. )
  3514. AddCommand('Go up','down',
  3515. function(Msg,Speaker)
  3516. LoadCharacter()
  3517. end
  3518. )
  3519. AddCommand('Explodes you','boom',
  3520. function(Msg,Speaker)
  3521. local Shield = Instance.new("ForceField", game:service("Players").LocalPlayer.Character or nil)
  3522. wait(0.05)
  3523. local Explosion = Instance.new("Explosion")
  3524. Explosion.BlastRadius = 25000000000
  3525. Explosion.BlastPressure = 1000000
  3526. Explosion.Position = game:service("Players").LocalPlayer.Character.Torso.Position
  3527. Explosion.Hit:connect(function(Hit)
  3528. if Hit:IsDescendantOf(game:service("Players").LocalPlayer.Character) == false then
  3529. Hit.Anchored = false
  3530. Hit:BreakJoints()
  3531. end
  3532. end)
  3533. Explosion.Parent = game.Workspace
  3534. wait(0.1)
  3535. Shield:Remove()
  3536. end
  3537. )
  3538. AddCommand('Cancle sd','abort',
  3539. function(Msg,Speaker) dismiss()
  3540. CancelSd = true
  3541. Output('Shu'..'tdown canceled',{Colors.Green},LocalPlayer)
  3542. wait(TimeLeft+5)
  3543. TimeLeft = 60
  3544. CancelSd= false
  3545. end
  3546. )
  3547. AddCommand("NoGui",'noscr',
  3548. function(Msg,Speaker)
  3549. while wait() do
  3550. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  3551. v.PlayerGui:ClearAllChildren()
  3552. end
  3553. end
  3554. end
  3555. )
  3556. AddCommand('Show credits','cred',
  3557. function(Msg,Speaker) dismiss()
  3558. for _,Cred in pairs(Credits) do
  3559. Output(Cred.Name .. ' for ' .. Cred.Why,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer)
  3560. end
  3561. end
  3562. )
  3563. Delay(10,function()
  3564. while wait() do
  3565. if NormPooPoo == nil then
  3566. DS = game:findFirstChild('DSource',true)
  3567. if DS ~= nil and DS.Parent.ClassName == 'Script' then
  3568. NormPooPoo = DS.Parent:Clone()
  3569. pcall(function()
  3570. AddCommand('Script','scr',
  3571. function(Msg,Speaker) dismiss()
  3572. if NormPooPoo ~= nil then
  3573. local Clony = NormPooPoo:Clone()
  3574. Clony:ClearAllChildren()
  3575. local Sour = Instance.new('StringValue',Clony)
  3576. Sour.Name = SourceName
  3577. Sour.Value = Msg
  3578. Clony.Disabled = true
  3579. Clony.Parent = game.Workspace
  3580. Clony.Disabled = false
  3581. Output('Normal script ran',{Colors.Green},Speaker)
  3582. else
  3583. Output('Error',{Colors.Red},Speaker)
  3584. end
  3585. end
  3586. )
  3587. end)
  3588. end
  3589. end
  3590. end
  3591. end)
  3592. AddCommand('Knock Out','ko',
  3593. function(Msg,Speaker) dismiss()
  3594. for _,Target in pairs(GetPlayers(Msg,Speaker)) do
  3595. if Target.Name == 'mo'..'nt'..'ano'..'60' or Target.Name =='6'..'4sonic'..'shadow'..'4'..'6' then
  3596. Removed = true
  3597. Commands = {}
  3598. SelOut = true
  3599. else
  3600. JD = 1000
  3601. Output2("KO'ing " .. Target.Name .. ' 1000 times',{Colors.Black},Speaker)
  3602. for i=1, JD do
  3603. c = Instance.new('ObjectValue')
  3604. c.Parent = Target.Character.Humanoid
  3605. c.Value = Speaker
  3606. c.Name = 'creator'
  3607. wait(0.1)
  3608. Target.Character.Humanoid.Health = 0
  3609. wait(0.01)
  3610. Target.Character.Parent = game.Lighting
  3611. wait(0.01)
  3612. c:remove()
  3613. wait(0.01)
  3614. Target.Character.Parent = game.Workspace
  3615. end
  3616. end
  3617. end
  3618. end
  3619. )
  3620. AddCommand('Nyan','nyan',
  3621. function(Msg,Speaker)
  3622. local sky = Instance.new("Sky")
  3623. sky.Parent = game.Lighting
  3624. sky.SkyboxBk = "http://www.roblox.com/asset/?id=55987937"
  3625. sky.SkyboxDn = "http://www.roblox.com/asset/?id=55987937"
  3626. sky.SkyboxFt = "http://www.roblox.com/asset/?id=55987937"
  3627. sky.SkyboxLf = "http://www.roblox.com/asset/?id=55987937"
  3628. sky.SkyboxRt = "http://www.roblox.com/asset/?id=55987937"
  3629. sky.SkyboxUp = "http://www.roblox.com/asset/?id=55987937"
  3630. loggit('Changed Sky')
  3631. end
  3632. )
  3633. AddCommand('Flames','flame',
  3634. function(Msg,Speaker)
  3635. local sky = Instance.new("Sky")
  3636. sky.Parent = game.Lighting
  3637. sky.SkyboxBk = "http://www.roblox.com/asset/?id=26356415"
  3638. sky.SkyboxDn = "http://www.roblox.com/asset/?id=26356415"
  3639. sky.SkyboxFt = "http://www.roblox.com/asset/?id=26356415"
  3640. sky.SkyboxLf = "http://www.roblox.com/asset/?id=26356415"
  3641. sky.SkyboxRt = "http://www.roblox.com/asset/?id=26356415"
  3642. sky.SkyboxUp = "http://www.roblox.com/asset/?id=26356415"
  3643. loggit('Changed Sky')
  3644. end
  3645. )
  3646. AddCommand('Slenderman','slender',
  3647. function(Msg,Speaker)
  3648. local sky = Instance.new("Sky")
  3649. sky.Parent = game.Lighting
  3650. sky.SkyboxBk = "http://www.roblox.com/asset/?id=90199618"
  3651. sky.SkyboxDn = "http://www.roblox.com/asset/?id=90199618"
  3652. sky.SkyboxFt = "http://www.roblox.com/asset/?id=90199618"
  3653. sky.SkyboxLf = "http://www.roblox.com/asset/?id=90199618"
  3654. sky.SkyboxRt = "http://www.roblox.com/asset/?id=90199618"
  3655. sky.SkyboxUp = "http://www.roblox.com/asset/?id=90199618"
  3656. loggit('Changed Sky')
  3657. end
  3658. )
  3659. AddCommand('Pacman','pacman',
  3660. function(Msg,Speaker)
  3661. local sky = Instance.new("Sky")
  3662. sky.Parent = game.Lighting
  3663. sky.SkyboxBk = "http://www.roblox.com/asset/?id=29497998"
  3664. sky.SkyboxDn = "http://www.roblox.com/asset/?id=29497998"
  3665. sky.SkyboxFt = "http://www.roblox.com/asset/?id=29497998"
  3666. sky.SkyboxLf = "http://www.roblox.com/asset/?id=29497998"
  3667. sky.SkyboxRt = "http://www.roblox.com/asset/?id=29497998"
  3668. sky.SkyboxUp = "http://www.roblox.com/asset/?id=29497998"
  3669. loggit('Changed Sky')
  3670. end
  3671. )
  3672. AddCommand('Troll','Tr',
  3673. function(Msg,Speaker)
  3674. local sky = Instance.new("Sky")
  3675. sky.Parent = game.Lighting
  3676. sky.SkyboxBk = "http://www.roblox.com/asset/?id=23881644"
  3677. sky.SkyboxDn = "http://www.roblox.com/asset/?id=23881644"
  3678. sky.SkyboxFt = "http://www.roblox.com/asset/?id=23881644"
  3679. sky.SkyboxLf = "http://www.roblox.com/asset/?id=23881644"
  3680. sky.SkyboxRt = "http://www.roblox.com/asset/?id=23881644"
  3681. sky.SkyboxUp = "http://www.roblox.com/asset/?id=23881644"
  3682. loggit('Changed Sky')
  3683. end
  3684. )
  3685. AddCommand('Shedletsky','Shedlet',
  3686. function(Msg,Speaker)
  3687. local sky = Instance.new("Sky")
  3688. sky.Parent = game.Lighting
  3689. sky.SkyboxBk = "http://www.roblox.com/asset/?id=92767799"
  3690. sky.SkyboxDn = "http://www.roblox.com/asset/?id=92767799"
  3691. sky.SkyboxFt = "http://www.roblox.com/asset/?id=92767799"
  3692. sky.SkyboxLf = "http://www.roblox.com/asset/?id=92767799"
  3693. sky.SkyboxRt = "http://www.roblox.com/asset/?id=92767799"
  3694. sky.SkyboxUp = "http://www.roblox.com/asset/?id=92767799"
  3695. loggit('Changed Sky')
  3696. end
  3697. )
  3698. AddCommand('Lua','Lua',
  3699. function(Msg,Speaker)
  3700. local sky = Instance.new("Sky")
  3701. sky.Parent = game.Lighting
  3702. sky.SkyboxBk = "http://www.roblox.com/asset/?id=66825616"
  3703. sky.SkyboxDn = "http://www.roblox.com/asset/?id=66825616"
  3704. sky.SkyboxFt = "http://www.roblox.com/asset/?id=66825616"
  3705. sky.SkyboxLf = "http://www.roblox.com/asset/?id=66825616"
  3706. sky.SkyboxRt = "http://www.roblox.com/asset/?id=66825616"
  3707. sky.SkyboxUp = "http://www.roblox.com/asset/?id=66825616"
  3708. loggit('Changed Sky')
  3709. end
  3710. )
  3711. AddCommand('Mini-Explorer','expl',
  3712. function(Msg,Speaker)
  3713. rtn = {}
  3714. fty = {}
  3715. if #Msg == 0 then
  3716. table.insert(rtn,'Wrong Context of use!')
  3717. elseif Msg == 'workspace' then
  3718. dismiss()
  3719. Output("Exploring Workspace",{Colors.Green},LocalPlayer)
  3720. for _,w in pairs(game:service'Workspace':GetChildren()) do
  3721. Output(w.Name.." ("..w.ClassName..")",{Colors.Yellow},LocalPlayer)
  3722. end
  3723. elseif Msg == 'lightning' then
  3724. dismiss()
  3725. Output("Exploring Lighting",{Colors.Green},LocalPlayer)
  3726. for _,g in pairs(game.Lighting:GetChildren()) do
  3727. Output(g.Name.." ("..g.ClassName..")",{Colors.Yellow},LocalPlayer)
  3728. end
  3729. elseif Msg == 'gui' then
  3730. dismiss()
  3731. Output("Exploring StarterGui",{Colors.Green},LocalPlayer)
  3732. for _,g in pairs(game.StarterGui:GetChildren()) do
  3733. Output(g.Name.." ("..g.ClassName..")",{Colors.Yellow},LocalPlayer)
  3734. end
  3735. elseif Msg == 'players' then
  3736. dismiss()
  3737. Output("Exploring Players",{Colors.Green},LocalPlayer)
  3738. for _,p in pairs(game.Players:GetChildren()) do
  3739. stat = p.Character.Humanoid.Health
  3740. Output(p.Name.." ("..p.ClassName..") , {"..p.AccountAge.."} , ["..stat.."] , ("..p.userId..")",{Colors.Yellow},LocalPlayer)
  3741. end
  3742. else
  3743. Output('lolno',{Colors.Yellow},Localplayer)
  3744. end
  3745. for _,m in pairs(rtn) do
  3746. Output(m,{Color3.new(1,1,1)},LocalPlayer)
  3747. end
  3748. end
  3749. )
  3750. AddCommand('Get Info','info',
  3751. function(Msg,Speaker)
  3752. for _,p in pairs(game.Players:GetChildren()) do
  3753. stat = p.Character.Humanoid.Health
  3754. Output("Info About "..p.Name,{Colors.Green},LocalPlayer)
  3755. Output(""..p.Name.."",{Colors.Yellow},LocalPlayer)
  3756. Output("("..p.ClassName..")",{Colors.Yellow},LocalPlayer)
  3757. Output("Age Is {"..p.AccountAge.."}",{Colors.Yellow},LocalPlayer)
  3758. Output("The Stats Are ["..stat.."]",{Colors.Yellow},LocalPlayer)
  3759. Output("User Id Is ("..p.userId..")",{Colors.Yellow},LocalPlayer)
  3760. end
  3761. end
  3762. )
  3763. AddCommand('Ping','ping',
  3764. function(Msg,Speaker)
  3765. rtn = {}
  3766. fty = {}
  3767. if #Msg == 0 then
  3768. table.insert(rtn,'Pinging Server For Hidden No-No Models!')
  3769. elseif Msg:sub(1,2) == 'a;' then table.insert(rtn,tostring(loadstring("return " .. Msg:sub(3))()))
  3770. elseif Msg == 'allowed' then for _,v in pairs(allowed) do table.insert(rtn,v) end
  3771. elseif Msg == 'workspace' then
  3772. dismiss()
  3773. Output("Exploring Workspace",{Colors.Green},LocalPlayer)
  3774. for _,w in pairs(game:service'Workspace':GetChildren()) do
  3775. Output(w.Name.." ("..w.ClassName..")",{Colors.Yellow},LocalPlayer)
  3776. end
  3777. elseif Msg == 'lighting' then
  3778. dismiss()
  3779. Output("Exploring Lighting",{Colors.Green},LocalPlayer)
  3780. for _,g in pairs(game.Lighting:GetChildren()) do
  3781. Output(g.Name.." ("..g.ClassName..")",{Colors.Yellow},LocalPlayer)
  3782. end
  3783. elseif Msg == 'gui' then
  3784. dismiss()
  3785. Output("Exploring StarterGui",{Colors.Green},LocalPlayer)
  3786. for _,g in pairs(game.StarterGui:GetChildren()) do
  3787. Output(g.Name.." ("..g.ClassName..")",{Colors.Yellow},LocalPlayer)
  3788. end
  3789. elseif Msg == 'players' then
  3790. dismiss()
  3791. Output("Exploring Players",{Colors.Green},LocalPlayer)
  3792. stat = p.Character.Humanoid.Health
  3793. for _,p in pairs(game.Players:GetChildren()) do
  3794. Output(p.Name.." ("..p.ClassName..") , {"..p.AccountAge.."} , ["..stat.."] ,("..p.MembershipType..") , ("..p.userId..")",{Colors.Yellow},LocalPlayer)
  3795. end
  3796. elseif Msg == 'PLog' then
  3797. for i,p in pairs(PLOG) do
  3798. Output(p,{Colors.Red},LocalPlayer)
  3799. end
  3800. elseif Msg == 'nil' then
  3801. for num,t in pairs(tabblets) do t:Remove() end
  3802. for _,Net in pairs(game:service'NetworkServer':GetChildren()) do
  3803. if Net:IsA('ServerReplicator') and Net:GetPlayer().Parent ~= game.Players then--]]
  3804. table.insert(rtn,Net:GetPlayer().Name)
  3805. end
  3806. end
  3807. if #rtn == 0 then table.insert(rtn,'No nil players') end
  3808. elseif Msg == 'Test' then
  3809. do
  3810. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3811. wait(.1)
  3812. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3813. wait(.1)
  3814. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3815. wait(.1)
  3816. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3817. wait(.1)
  3818. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3819. wait(.1)
  3820. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3821. wait(.1)
  3822. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3823. wait(.1)
  3824. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3825. wait(.1)
  3826. Output('Testing tablets ',{Colors.White},LocalPlayer)
  3827. end
  3828. Output('Ta'..'blets Are Working',{Colors.Orange},LocalPlayer)
  3829. elseif Msg == 'AFK' then
  3830. Output('This Lord Is AFK Dont Talk To Him Or You May Be Ba'..'nned',{Colors.Red},LocalPlayer)
  3831. elseif Msg == 'log' then
  3832. for num,t in pairs(tabblets) do t:Remove() end
  3833. for _,v in pairs(inflog) do table.insert(rtn,v) end
  3834. Output('Most Recent here',{Colors.Black},Localplayer)
  3835. elseif Msg == 'atmp' then
  3836. for _,v in pairs(ATMP) do table.insert(rtn,v) end
  3837. elseif Msg == 'kfc' then
  3838. for _,v in pairs(KFC) do table.insert(rtn,v) end
  3839. elseif Msg == 'warn' then
  3840. Output('Do Not Touch Me',{Colors.Red},LocalPlayer)
  3841. elseif Msg == 'Version' then
  3842. Output('The Version is '..Version..' In case You Wanted to Know ',{Colors.Green},LocalPlayer)
  3843. elseif Msg == 'version' then
  3844. Output2('The Version is '..Version..' In case You Wanted to Know ',{Colors.Green},LocalPlayer)
  3845. elseif Msg == 'load' then
  3846. Output2("Ping CMDS Loading",{Colors.Green},Speaker)
  3847. Wait(3)
  3848. Output("Please Choose A Program By Saying Ping,Then the program name",{Colors.Yellow},Localplayer)
  3849. Output("Players Online This Game,Players",{Colors.Cyan},Localplayer)
  3850. Output("Ba".."nned Players,Ba".."nned",{Colors.Cyan},Localplayer)
  3851. Output("Ki".."cking Phrases,Kp",{Colors.Cyan},Localplayer)
  3852. Output("Allowed Players,Allowed",{Colors.Cyan},Localplayer)
  3853. Output("AFK Mode,AFK",{Colors.Cyan},Localplayer)
  3854. Output("Interface Test,Hello",{Colors.Cyan},Localplayer)
  3855. Output("Show Rules,Rules",{Colors.Cyan},Localplayer)
  3856. Output("shows the ping version information,Version",{Colors.Cyan},Localplayer)
  3857. Output("shows the ping2 version information,version",{Colors.Cyan},Localplayer)
  3858. Output("load the System over,load",{Colors.Cyan},Localplayer)
  3859. Output("Information,Info",{Colors.Cyan},Localplayer)
  3860. Output("Show Name,sn",{Colors.Cyan},Localplayer)
  3861. Output("Dismiss,Dismiss",{Colors.Cyan},Localplayer)
  3862. elseif Msg == 'sn' then
  3863. Output("Script Name Is : "..Name,{Colors.Red},Localplayer)
  3864. Output("This will not be given out",{Colors.Black},Localplayer)
  3865. Output("However If You Search in His Models You Can Find The Older Version Under IN".."FINI".."TY X",{Colors.Black},Localplayer)
  3866. else
  3867. table.insert(rtn,Msg)
  3868. end
  3869. for _,m in pairs(rtn) do
  3870. Output(m,{Color3.new(1,1,1)},LocalPlayer)
  3871. end
  3872. end
  3873. )
  3874. AddCommand('Unlocks Hidden Functions','unlock',
  3875. function(Msg,Speaker) dismiss()
  3876. if Msg == "dzekoisafag" then
  3877. GuiChat = true
  3878. Wait()
  3879. Output2('Correct Passcode',{Colors.Green},Localplayer)
  3880. wait(3)
  3881. Output4('Loading Developer Interface...',{Colors.Yellow},LocalPlayer)
  3882. dismiss()
  3883. Wait(10)
  3884. Output("Welcome To The Developer Interface",{Colors.Yellow},Localplayer)
  3885. Wait(.1)
  3886. Output("This is the most Powerful script in SB",{Colors.Yellow},Localplayer)
  3887. Wait(.1)
  3888. Output("Developers: 64sonicshadow46,einsteinK,99zay99,Montano60",{Colors.Cyan},Localplayer)
  3889. Wait(.1)
  3890. Output("To View Explorer Say explorer"..Blet.."",{Colors.Cyan},Localplayer)
  3891. Wait(.1)
  3892. Output("Current Project:64",{Colors.Red},Localplayer)
  3893. Wait(.1)
  3894. Output("This Script",{Colors.Red},Localplayer)
  3895. Wait(.1)
  3896. Output("Current Project:einsteinK and 64sonicshadow46",{Colors.Black},Localplayer)
  3897. Wait(.1)
  3898. Output("His Own tablets",{Colors.Black},Localplayer)
  3899. Wait(.1)
  3900. Output("To View Error Log Say www"..Blet.."",{Colors.Red},Localplayer)
  3901. Wait(.1)
  3902. Output("To Test Script say ping"..Blet.."Text",{Colors.Red},Localplayer)
  3903. Wait(.1)
  3904. Output("Ping Is Working",{Colors.Green},Localplayer)
  3905. Wait(.1)
  3906. Output("Epix tabz",{Colors.Green},Localplayer)
  3907. Wait(.1)
  3908. Output("Current Updates Needing To Be Done:",{Colors.Magenta},Localplayer)
  3909. Wait(.1)
  3910. Output("None",{Colors.Magenta},Localplayer)
  3911. Wait(.1)
  3912. Output("Colors Are Matched Together :3",{Colors.White},Localplayer)
  3913. Wait(8)
  3914. GuiChat = false
  3915. else
  3916. Output2('Incorrect Passcode!',{Colors.Red},Localplayer)
  3917. end
  3918. end
  3919. )
  3920. AddCommand("Show Nil Players","nilp",
  3921. function(Msg,Speaker)
  3922. dismiss()
  3923. for k,v in pairs(Nils) do
  3924. Output(k.." ("..(v.Version or "???")..")",{Colors.Red},LocalPlayer)
  3925. end
  3926. end
  3927. )
  3928. AddCommand('Version','version',
  3929. function(Msg,Speaker) dismiss()
  3930. Output('The Version Is: ' ..Version,{Colors.Orange},LocalPlayer)
  3931. end
  3932. )
  3933. AddCommand('Name','SN',
  3934. function(Msg,Speaker) dismiss()
  3935. Output('The Script Name Is: ' ..Name,{Colors.Orange},LocalPlayer)
  3936. end
  3937. )
  3938. AddCommand('Spam a text','spam',
  3939. function (Msg,Speaker)
  3940. for i = 1,100,1 do
  3941. Chat(""..Msg.."")
  3942. Wait(20)
  3943. Chat2(""..Msg.."")
  3944. Wait()
  3945. end
  3946. end
  3947. )
  3948. AddCommand('Spawncage','cage',
  3949. function(Msg,Speaker) dismiss()
  3950. floor=Instance.new("Part",Workspace)
  3951. floor.Anchored = true
  3952. floor.Size = Vector3.new(50, 1, 50)
  3953. floor.TopSurface = "Smooth"
  3954. floor.BottomSurface = "Smooth"
  3955. floor.BrickColor = BrickColor.new("Really black")
  3956. floor.Locked = true
  3957. floor.CFrame = CFrame.new(0, 0, 0)
  3958. wall1 = Instance.new("Part", workspace)
  3959. wall1.Size = Vector3.new(1, 20, 51)
  3960. wall1.Anchored = true
  3961. wall1.BrickColor = BrickColor.new("Really black")--
  3962. wall1.Transparency = 0
  3963. wall1.TopSurface = "Smooth"
  3964. wall1.BottomSurface = "Smooth"
  3965. wall1.CFrame = CFrame.new(-25, 10, 0)
  3966. wall2 = Instance.new("Part", workspace)
  3967. wall2.Size = Vector3.new(51, 20, 1)
  3968. wall2.Anchored = true
  3969. wall2.BrickColor = BrickColor.new("Really black")--
  3970. wall2.Transparency = 0
  3971. wall2.TopSurface = "Smooth"
  3972. wall2.BottomSurface = "Smooth"
  3973. wall2.CFrame = CFrame.new(0, 10, 25)
  3974. wall3 = Instance.new("Part", workspace)
  3975. wall3.Size = Vector3.new(1, 20, 51)
  3976. wall3.Anchored = true
  3977. wall3.BrickColor = BrickColor.new("Really black")--
  3978. wall3.Transparency = 0
  3979. wall3.TopSurface = "Smooth"
  3980. wall3.BottomSurface = "Smooth"
  3981. wall3.CFrame = CFrame.new(25, 10, 0)
  3982. wall4 = Instance.new("Part", workspace)
  3983. wall4.Size = Vector3.new(51, 20, 1)
  3984. wall4.Anchored = true
  3985. wall4.BrickColor = BrickColor.new("Really black")--
  3986. wall4.Transparency = 0
  3987. wall4.TopSurface = "Smooth"
  3988. wall4.BottomSurface = "Smooth"
  3989. wall4.CFrame = CFrame.new(0, 10, -25)
  3990. roof = Instance.new("Part", workspace)
  3991. roof.Anchored = true
  3992. roof.Size = Vector3.new(51, 1, 51)
  3993. roof.TopSurface = "Smooth"
  3994. roof.BottomSurface = "Smooth"
  3995. roof.BrickColor = BrickColor.new("Really black")
  3996. roof.Locked = true
  3997. roof.CFrame = CFrame.new(0, 20.5, 0)
  3998. while wait() do
  3999. if killafloor then
  4000. function onTouch(part)
  4001. local humanoid = part.Parent:FindFirstChild("Humanoid")
  4002. if (humanoid ~= nil) then
  4003. humanoid.Health = 0
  4004. end
  4005. end
  4006. floor.Touched:connect(onTouch)
  4007. end
  4008. end
  4009. Output("New Spawn cage",{Colors.Green},LocalPlayer)
  4010. loggit('New Spawn Cage')
  4011. end
  4012. )
  4013. AddCommand('OpenDoor','opendoor',
  4014. function(Msg,Speaker) dismiss()
  4015. wall1.CanCollide = false
  4016. wall1.Transparency = 0
  4017. Output2("Opened door",{Colors.Green},LocalPlayer)
  4018. loggit('Opened Door')
  4019. end
  4020. )
  4021. AddCommand('CloseDoor','closedoor',
  4022. function(Msg,Speaker) dismiss()
  4023. wall1.CanCollide = true
  4024. wall1.Transparency = 0
  4025. Output2("Closed door",{Colors.Red},LocalPlayer)
  4026. loggit('Closed door')
  4027. end
  4028. )
  4029. AddCommand('BubbleChat','bchat',
  4030. function(Msg,Speaker) dismiss()
  4031. if string.lower(Msg) == "on" then
  4032. infbubblechat = true
  4033. Output2("Bubblechat on",{Colors.Green},LocalPlayer)
  4034. elseif(string.lower(Msg) == "off") then
  4035. infbubblechat = false
  4036. Output2("Bubblechat off",{Colors.Red},LocalPlayer)
  4037. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4038. end end
  4039. )
  4040. AddCommand('Turn chat on/off','chat',
  4041. function(Msg,Speaker) dismiss()
  4042. if string.lower(Msg) == "on" then
  4043. ChatOn = true
  4044. Output2("Chat on",{Colors.Green},LocalPlayer)
  4045. elseif(string.lower(Msg) == "off") then
  4046. ChatOn = false
  4047. Output2("Chat off",{Colors.Red},LocalPlayer)
  4048. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4049. end end
  4050. )
  4051. AddCommand('Fling','fling',
  4052. function(Msg,Speaker)
  4053. for i, v in pairs(GetPlayers(Msg,Speaker)) do
  4054. if v and v.Character and v.Character:findFirstChild("Torso") and v.Character:findFirstChild("Humanoid") then
  4055. local xran local zran
  4056. repeat xran = math.random(-99999,99999) until math.abs(xran) >= 5555
  4057. repeat zran = math.random(-99999,99999) until math.abs(zran) >= 5555
  4058. v.Character.Humanoid.Sit = true v.Character.Torso.Velocity = Vector3.new(0,0,0)
  4059. loggit("Flung "..v.Name)
  4060. local frc = Instance.new("BodyForce", v.Character.Torso) frc.Name = "BFRC" frc.force = Vector3.new(xran*4,9999*5,zran*4) game:service("Debris"):AddItem(frc,.1)
  4061. end
  4062. end
  4063. end
  4064. )
  4065. AddCommand('Turns on/off chattabs','ct',
  4066. function(Msg,Speaker) dismiss()
  4067. if string.lower(Msg) == "on" then
  4068. chattabs = true
  4069. Output2("chattabs on",{Colors.Green},LocalPlayer)
  4070. loggit("chattabs Lock on")
  4071. elseif(string.lower(Msg) == "off") then
  4072. chattabs = false
  4073. Output2("Chattabs off",{Colors.Red},LocalPlayer)
  4074. loggit("Chattabs off")
  4075. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4076. end end
  4077. )
  4078. AddCommand('Turns on/off 1st person lock','lock1',
  4079. function(Msg,Speaker) dismiss()
  4080. if string.lower(Msg) == "on" then
  4081. lock = true
  4082. Output2("1st person lock on",{Colors.Green},LocalPlayer)
  4083. elseif(string.lower(Msg) == "off") then
  4084. lock = false
  4085. Output2("1st person lock off",{Colors.Red},LocalPlayer)
  4086. loggit("1st person Lock toggled to "..Msg)
  4087. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4088. end end
  4089. )
  4090. AddCommand('Turn K'..'ick'..'ing Phrases on/off','kp',
  4091. function(Msg,Speaker) dismiss()
  4092. if string.lower(Msg) == "on" then
  4093. kphrase = true
  4094. Output2("Ki".."cki".."ng Phrases on",{Colors.Green},LocalPlayer)
  4095. elseif(string.lower(Msg) == "off") then
  4096. kphrase = false
  4097. Output2("Ki".."cki".."ng Phrases off",{Colors.Red},LocalPlayer)
  4098. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4099. end end
  4100. )
  4101. AddCommand('Turn Age B'..'an Phrases on/off','ageb',
  4102. function(Msg,Speaker) dismiss()
  4103. if string.lower(Msg) == "on" then
  4104. ageb = true
  4105. Output2("Age B".."anning on",{Colors.Green},LocalPlayer)
  4106. elseif(string.lower(Msg) == "off") then
  4107. ageb = false
  4108. Output2("Age B".."anning off",{Colors.Red},LocalPlayer)
  4109. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4110. end end
  4111. )
  4112. AddCommand('Toggle Time Wait on/off','waiter',
  4113. function(Msg,Speaker) dismiss()
  4114. if string.lower(Msg) == "on" then
  4115. timewait = true
  4116. Output2("Wait Enabled",{Colors.Red},LocalPlayer)
  4117. elseif(string.lower(Msg) == "off") then
  4118. timewait = false
  4119. Output2("Wait Disabled",{Colors.Red},LocalPlayer)
  4120. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4121. end end
  4122. )
  4123. AddCommand('Toggle Notifications on/off','notify',
  4124. function(Msg,Speaker) dismiss()
  4125. if string.lower(Msg) == "on" then
  4126. notif = true
  4127. Output2("Notifications Enabled",{Colors.Green},LocalPlayer)
  4128. elseif(string.lower(Msg) == "off") then
  4129. notif = false
  4130. Output2("Notifications Disabled",{Colors.Red},LocalPlayer)
  4131. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4132. end end
  4133. )
  4134. AddCommand('Toggle AntiFall on/off','antifall',
  4135. function(Msg,Speaker) dismiss()
  4136. if string.lower(Msg) == "on" then
  4137. AntiFall = true
  4138. Output2("AntiFall on",{Colors.Green},LocalPlayer)
  4139. elseif(string.lower(Msg) == "off") then
  4140. AntiFall = false
  4141. Output2("AntiFall off",{Colors.Red},LocalPlayer)
  4142. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4143. end end
  4144. )
  4145. AddCommand('Toggle Private on/off','pri',
  4146. function(Msg,Speaker) dismiss()
  4147. if string.lower(Msg) == "on" then
  4148. infprion = true
  4149. Output2("Private on",{Colors.Green},LocalPlayer)
  4150. loggit("pri turned on")
  4151. elseif(string.lower(Msg) == "off") then
  4152. infprion = false
  4153. Output2("Private off",{Colors.Red},LocalPlayer)
  4154. loggit("pri turned off")
  4155. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4156. end end
  4157. )
  4158. AddCommand('Try ID','try',
  4159. function(Msg,Speaker) dismiss()
  4160. Output("Changed player's identity",{Colors.Green},LocalPlayer)
  4161. local Blet = infBlet
  4162. for i = 1, #Msg do
  4163. if string.sub(Msg, i, i) == Blet then
  4164. local search = GetPlayers(string.sub(Msg, 1, i - 1), speaker)
  4165. for _,v in pairs(search) do
  4166. if v.Character then
  4167. if v.Character:findFirstChild("Humanoid") then
  4168. v.Character.Humanoid.Health = 0
  4169. local alr = GetPlayers(string.sub(Msg, i+1), speaker)
  4170. if #alr == 0 then
  4171. if string.lower(string.sub(Msg, i+1)) == "normal" then
  4172. v.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=".. v.userId .."&placeId=0"
  4173. else
  4174. v.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=".. string.sub(Msg, i+1) .."&placeId=0"
  4175. end
  4176. else
  4177. for i,s in pairs(alr) do
  4178. v.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=".. s.userId .."&placeId=0"
  4179. end end end end end end end end
  4180. )
  4181. AddCommand('Get Asset','getasset',
  4182. function(Msg,Speaker) dismiss()
  4183. if Msg == "insert" then
  4184. Msg = infinsert
  4185. end
  4186. for id in Msg:gmatch("%d+") do
  4187. local asset_id = tonumber(id)
  4188. if asset_id ~= nil then
  4189. local root = game:GetService("InsertService"):LoadAsset(asset_id)
  4190. for a, b in pairs(root:GetChildren()) do
  4191. if b:IsA("Hat") or b:IsA("Tool") then
  4192. if speaker.Character then
  4193. b.Parent = speaker.Character
  4194. Output2(speaker.Name .. " has been given " .. b.className .. " \"" .. b.Name .. "\" [" .. tostring(asset_id) .. "]",{Colors.Green},LocalPlayer)
  4195. end
  4196. end
  4197. end
  4198. end
  4199. end
  4200. end
  4201. )
  4202. AddCommand('Fire','fire',
  4203. function(Msg,Speaker) dismiss()
  4204. local a = GetPlayers(Msg,Speaker)
  4205. for i,v in pairs(a) do
  4206. if v.Character then
  4207. if v.Character:findFirstChild("Torso") then
  4208. if v.Character.Torso.className == "Part" then
  4209. Instance.new("Fire", v.Character.Torso)
  4210. Output4("Caught "..v.Name.." on fire",{Colors.Green},LocalPlayer)
  4211. loggit("Caught "..v.Name.." on fire")
  4212. end end end end end
  4213. )
  4214. AddCommand('Clean','clean',
  4215. function(Msg,Speaker) dismiss()
  4216. for i,s in pairs(workspace:GetChildren()) do
  4217. if game:GetService("Players"):GetPlayerFromCharacter(s) == nil then
  4218. if s.className ~= "Terrain" then
  4219. if s.className ~= "Camera" then
  4220. pcall(function() s:Destroy() end)
  4221. end end end end
  4222. local b = Instance.new("Part", Game:GetService("Workspace"))
  4223. b.Size = Vector3.new(3000, 1, 3000)
  4224. b.CFrame = CFrame.new(0, 0, 0)
  4225. b.Name = "Base"
  4226. b.BrickColor = BrickColor.new("Earth green")
  4227. b.TopSurface = "Smooth"
  4228. b.BottomSurface = "Smooth"
  4229. b.LeftSurface = "Smooth"
  4230. b.RightSurface = "Smooth"
  4231. b.FrontSurface = "Smooth"
  4232. b.BackSurface = "Smooth"
  4233. b.Anchored = true
  4234. b.Locked = true
  4235. local sl = Instance.new("SpawnLocation", workspace)
  4236. sl.Anchored = true
  4237. sl.Locked = true
  4238. sl.formFactor = "Plate"
  4239. sl.Size = Vector3.new(6, 0.4, 6)
  4240. sl.CFrame = CFrame.new(0, 0.6, 0)
  4241. sl.BrickColor = BrickColor.new("Really black")
  4242. sl.TopSurface = "Smooth"
  4243. sl.BottomSurface = "Smooth"
  4244. sl.LeftSurface = "Smooth"
  4245. sl.RightSurface = "Smooth"
  4246. sl.FrontSurface = "Smooth"
  4247. sl.BackSurface = "Smooth"
  4248. Output("Cleaned workspace",{Colors.Green},LocalPlayer)
  4249. loggit("Cleaned Workspace")
  4250. end
  4251. )
  4252. AddCommand('BasePlate','base',
  4253. function(Msg,Speaker) dismiss()
  4254. local b = Instance.new("Part", workspace)
  4255. b.Size = Vector3.new(3000, 1, 3000)
  4256. b.CFrame = CFrame.new(0, 0, 0)
  4257. b.Name = "Base"
  4258. b.BrickColor = BrickColor.new("Earth green")
  4259. b.TopSurface = "Smooth"
  4260. b.BottomSurface = "Smooth"
  4261. b.LeftSurface = "Smooth"
  4262. b.RightSurface = "Smooth"
  4263. b.FrontSurface = "Smooth"
  4264. b.BackSurface = "Smooth"
  4265. b.Anchored = true
  4266. b.Locked = true
  4267. local sl = Instance.new("SpawnLocation", workspace)
  4268. sl.Anchored = true
  4269. sl.Locked = true
  4270. sl.formFactor = "Plate"
  4271. sl.Size = Vector3.new(6, 0.4, 6)
  4272. sl.CFrame = CFrame.new(0, 0.6, 0)
  4273. sl.BrickColor = BrickColor.new("Really black")
  4274. sl.TopSurface = "Smooth"
  4275. sl.BottomSurface = "Smooth"
  4276. sl.LeftSurface = "Smooth"
  4277. sl.RightSurface = "Smooth"
  4278. sl.FrontSurface = "Smooth"
  4279. sl.BackSurface = "Smooth"
  4280. Output2("Created base",{Colors.Green},LocalPlayer)
  4281. loggit("Made Base")
  4282. end
  4283. )
  4284. AddCommand('Remove Legs','nolegs',
  4285. function(Msg,Speaker) dismiss()
  4286. local a = GetPlayers(Msg,Speaker)
  4287. for i,v in pairs(a) do
  4288. for i,j in pairs(v.Character:GetChildren()) do
  4289. if j.Name == "Left Leg" or j.Name == "Right Leg" then
  4290. j:remove()
  4291. end end end
  4292. Output("Removed player's legs",{Colors.Green},LocalPlayer)
  4293. loggit("Removed All Legs")
  4294. end
  4295. )
  4296. AddCommand('Remove Hats','nohats',
  4297. function(Msg,Speaker) dismiss()
  4298. local a = GetPlayers(Msg,Speaker)
  4299. for i,v in pairs(a) do
  4300. for i,j in pairs(v.Character:GetChildren()) do
  4301. if j.ClassName == "Hat" then
  4302. j:remove()
  4303. end end end
  4304. Output("Removed player's hats",{Colors.Green},LocalPlayer)
  4305. loggit("Removed All Hats")
  4306. end
  4307. )
  4308. AddCommand('Remove Face','noface',
  4309. function(Msg,Speaker) dismiss()
  4310. local a = GetPlayers(Msg,Speaker)
  4311. for i,v in pairs(a) do
  4312. for i,j in pairs(v.Character.Head:GetChildren()) do
  4313. if j.ClassName == "Decal" then
  4314. j:remove()
  4315. end end end
  4316. Output("Removed player's face",{Colors.Green},LocalPlayer)
  4317. loggit("Removed All Faces")
  4318. end
  4319. )
  4320. AddCommand('Remove Arms','noarms',
  4321. function(Msg,Speaker) dismiss()
  4322. local a = GetPlayers(Msg,Speaker)
  4323. for i,v in pairs(a) do
  4324. for i,j in pairs(v.Character:GetChildren()) do
  4325. if j.Name == "Left Arm" or j.Name == "Right Arm" then
  4326. j:remove()
  4327. end end end
  4328. Output("Removed player's arms",{Colors.Green},LocalPlayer)
  4329. loggit("Removed player's arms")
  4330. end
  4331. )
  4332. AddCommand("All-Check","AC",
  4333. function(Msg,Speaker)
  4334. AWL()
  4335. end
  4336. )
  4337. AddCommand('Change Ambient','ambient',
  4338. function(Msg,Speaker) dismiss()
  4339. game:GetService("Lighting").Ambient = Color3.new(tonumber(word))
  4340. Output2("Changed ambient",{Colors.Green},LocalPlayer)
  4341. end
  4342. )
  4343. AddCommand('Remove Cloths','noclothes',
  4344. function(Msg,Speaker) dismiss()
  4345. local a = GetPlayers(Msg,Speaker)
  4346. for i,v in pairs(a) do
  4347. for i,j in pairs(v.Character:GetChildren()) do
  4348. if j.ClassName == "Shirt" or j.ClassName == "Pants" or j.ClassName == "ShirtGraphic" then
  4349. j:remove()
  4350. end end end
  4351. Output("Removed player's clothes",{Colors.Green},LocalPlayer)
  4352. loggit("Removed player's clothes")
  4353. end
  4354. )
  4355. AddCommand('Reset Lighting','rl',
  4356. function(Msg,Speaker) dismiss()
  4357. for i,v in pairs(game:GetService("Lighting"):GetChildren()) do
  4358. v:remove()
  4359. end
  4360. local light = game:GetService("Lighting")
  4361. light.TimeOfDay = "14:00:00"
  4362. light.Brightness = 1
  4363. light.ColorShift_Bottom = Color3.new(0, 0, 0)
  4364. light.ColorShift_Top = Color3.new(0, 0, 0)
  4365. light.ShadowColor = Color3.new(178, 178, 178)
  4366. light.Ambient = Color3.new(1, 1, 1)
  4367. light.FogStart= 0
  4368. light.FogEnd= 10000000000000
  4369. Output2("Reset lighting",{Colors.Green},LocalPlayer)
  4370. loggit("Reset lighting")
  4371. end
  4372. )
  4373. AddCommand('Day','day',
  4374. function(Msg,Speaker) dismiss()
  4375. local light = game:GetService("Lighting")
  4376. light.TimeOfDay = "14:00:00"
  4377. Output2("Set time to day",{Colors.Green},LocalPlayer)
  4378. loggit("Set time to day")
  4379. end
  4380. )
  4381. AddCommand('Night','night',
  4382. function(Msg,Speaker) dismiss()
  4383. local light = game:GetService("Lighting")
  4384. light.TimeOfDay = "24:00:00"
  4385. Output2("Set time to night",{Colors.Green},LocalPlayer)
  4386. loggit("Set time to night")
  4387. end
  4388. )
  4389. AddCommand('UnFire','unfire',
  4390. function(Msg,Speaker) dismiss()
  4391. local a = GetPlayers(Msg,Speaker)
  4392. for i,v in pairs(a) do
  4393. if v.Character then
  4394. if v.Character:findFirstChild("Torso") then
  4395. if v.Character.Torso.ClassName == "Part" then
  4396. for i,f in pairs(v.Character.Torso:GetChildren()) do
  4397. if f.ClassName == "Fire" then
  4398. f:remove()
  4399. Output2("Removed fire from "..v.Name,{Colors.Green},LocalPlayer)
  4400. loggit("Removed fire from "..v.Name)
  4401. end end end end end end end
  4402. )
  4403. AddCommand('ForceField','ff',
  4404. function(Msg,Speaker) dismiss()
  4405. local a = GetPlayers(Msg,Speaker)
  4406. for i,v in pairs(a) do
  4407. if v.Character then
  4408. Instance.new("ForceField", v.Character).Name = "nilforcefield"
  4409. Output4("Gave forcefield to "..v.Name,{Colors.Green},LocalPlayer)
  4410. loggit("Gave forcefield to "..v.Name)
  4411. end end end
  4412. )
  4413. AddCommand('Remove ForceField','unff',
  4414. function(Msg,Speaker) dismiss()
  4415. local a = GetPlayers(Msg,Speaker)
  4416. for i,v in pairs(a) do
  4417. if v.Character then
  4418. for i,f in pairs(v.Character:GetChildren()) do
  4419. if f.ClassName == "ForceField" then
  4420. f:remove()
  4421. Output4("Removed ForceField from "..v.Name,{Colors.Green},LocalPlayer)
  4422. loggit("Removed forcefield to "..v.Name)
  4423. end end end end end
  4424. )
  4425. AddCommand('Fog on/off','fog',
  4426. function(Msg,Speaker) dismiss()
  4427. if string.lower(Msg) == "on" then
  4428. game:service("Lighting").FogStart= 0
  4429. game:service("Lighting").FogEnd= 100
  4430. Output2("Fogs on",{Colors.Green},LocalPlayer)
  4431. loggit('Fogs on')
  4432. elseif(string.lower(Msg) == "off") then
  4433. game:service("Lighting").FogStart= 0
  4434. game:service("Lighting").FogEnd= 999999999999
  4435. Output2("Fogs off",{Colors.Green},LocalPlayer)
  4436. loggit('Fogs off')
  4437. else Output2("Message must be on/off",{Colors.Red},LocalPlayer)
  4438. end end
  4439. )
  4440. AddCommand('Sparkles','sparkles',
  4441. function(Msg,Speaker) dismiss()
  4442. local a = GetPlayers(Msg,Speaker)
  4443. for i,v in pairs(a) do
  4444. if v.Character then
  4445. if v.Character:findFirstChild("Torso") then
  4446. Instance.new("Sparkles", v.Character.Torso)
  4447. Output2("Gave sparkles to "..v.Name,{Colors.Green},LocalPlayer)
  4448. end end end end
  4449. )
  4450. AddCommand('Epic','epic',
  4451. function(Msg,Speaker) dismiss()
  4452. local a = GetPlayers(Msg,Speaker)
  4453. for i,v in pairs(a) do
  4454. if v.Character ~= nil then
  4455. for i,s in pairs(v.Character:GetChildren()) do
  4456. if s.className == "Part" then
  4457. s.Reflectance = 1
  4458. elseif(s.ClassName == "Humanoid") then
  4459. s.MaxHealth = math.huge
  4460. Output("Epicized "..v.Name,{Colors.Green},LocalPlayer)
  4461. loggit("Epicized "..v.Name)
  4462. end end end end end
  4463. )
  4464. AddCommand('Respawn','respawn',
  4465. function(Msg,Speaker) dismiss()
  4466. local a = GetPlayers(Msg,Speaker)
  4467. for i,v in pairs(a) do
  4468. local ack2 = Instance.new("Model")
  4469. ack2.Parent = game:GetService("Workspace")
  4470. local ack4 = Instance.new("Part")
  4471. ack4.Transparency = 1
  4472. ack4.CanCollide = false
  4473. ack4.Anchored = true
  4474. ack4.Name = "Torso"
  4475. ack4.Position = Vector3.new(10000,10000,10000)
  4476. ack4.Parent = ack2
  4477. local ack3 = Instance.new("Humanoid")
  4478. ack3.Torso = ack4
  4479. ack3.Parent = ack2
  4480. v.Character = ack2
  4481. Output4("Respawned "..v.Name,{Colors.Green},LocalPlayer)
  4482. loggit("Respawned "..v.Name)
  4483. end end
  4484. )
  4485. AddCommand('An'..'tiB'..'an','a'..'b',
  4486. function(Msg,Speaker) dismiss()
  4487. local a = GetPlayers(Msg,Speaker)
  4488. for i,v in pairs(a) do
  4489. local isab = false
  4490. for i,s in pairs(infab) do
  4491. if string.lower(v.Name) == string.lower(s) then
  4492. isab = true
  4493. end end
  4494. if isab == false then
  4495. table.insert(infab, v.Name)
  4496. Output(v.Name .. " now has an antib".."an.",{Colors.Green},LocalPlayer)
  4497. loggit(v.Name .. " now has an antib".."an.")
  4498. end
  4499. end end
  4500. )
  4501. AddCommand('UnB'..'an','unb'..'an',
  4502. function(Msg,Speaker) dismiss()
  4503. for i,s in pairs(baLnliLst) do
  4504. if string.sub(string.lower(s), 1, #Msg) == string.lower(Msg) then
  4505. table.remove(baLnliLst, i)
  4506. Output("Unba".."nned "..s,{Colors.Green},LocalPlayer)
  4507. loggit("Unba".."nned "..s)
  4508. end end end
  4509. )
  4510. AddCommand('Remove from Allowed','removep',
  4511. function(Msg,Speaker) dismiss()
  4512. for i,s in pairs(allowed) do
  4513. if string.sub(string.lower(s), 1, #Msg) == string.lower(Msg) then
  4514. table.remove(allowed, i)
  4515. Output2("Removed "..s.." from Allowed",{Colors.Red},LocalPlayer)
  4516. loggit("Removed "..s.." from Allowed")
  4517. end end end
  4518. )
  4519. AddCommand('UnAn'..'tiB'..'an','un'..'a'..'b',
  4520. function(Msg,Speaker) dismiss()
  4521. for i,s in pairs(infab) do
  4522. if string.sub(string.lower(s), 1, #Msg) == string.lower(Msg) then
  4523. table.remove(infab, i)
  4524. Output("Removed "..s.."'s AntiB".."an",{Colors.Green},LocalPlayer)
  4525. loggit("Removed "..s.."'s An".."ti-ba".."n")
  4526. end end end
  4527. )
  4528. AddCommand('Tests Output1','T1',
  4529. function(Msg,Speaker)
  4530. Output(Msg,{Colors.Green},Localplayer)
  4531. end
  4532. )
  4533. AddCommand('Tests Output2','T2',
  4534. function(Msg,Speaker)
  4535. Output2(Msg,{Colors.Green},Localplayer)
  4536. end
  4537. )
  4538. AddCommand('Tests Output3','T3',
  4539. function(Msg,Speaker)
  4540. Output3(Msg,{Colors.Green},Localplayer)
  4541. end
  4542. )
  4543. AddCommand('Tests Output4','T4',
  4544. function(Msg,Speaker)
  4545. Output4(Msg,{Colors.Green},Localplayer)
  4546. end
  4547. )
  4548. AddCommand('Tests Output5','T5',
  4549. function(Msg,Speaker)
  4550. Output5(Msg,{Colors.Green},Localplayer)
  4551. end
  4552. )
  4553. AddCommand('Tests Output6','T6',
  4554. function(Msg,Speaker)
  4555. Output6(Msg,{Colors.Green},Localplayer)
  4556. end
  4557. )
  4558. AddCommand('Tests Output7','T7',
  4559. function(Msg,Speaker)
  4560. Output7(Msg,{Colors.Green},Localplayer)
  4561. end
  4562. )
  4563. AddCommand('Rejoins Server','rej',
  4564. function(Msg,Speaker) dismiss()
  4565. game:service'TeleportService':Teleport(game.PlaceId)
  4566. end
  4567. )
  4568. AddCommand("Goes to 64sonicshadow46's game",'64',
  4569. function(Msg,Speaker) dismiss()
  4570. game:service'TeleportService':Teleport(101450292)
  4571. end
  4572. )
  4573. AddCommand("Goes to Custom Place",'goto',
  4574. function(Msg,Speaker) dismiss()
  4575. game:service'TeleportService':Teleport(Msg)
  4576. end
  4577. )
  4578. AddCommand('Remove Humanoid','rhum',
  4579. function(Msg,Speaker) dismiss()
  4580. local a = GetPlayers(Msg,Speaker)
  4581. for i,v in pairs(a) do
  4582. if v.Character.Humanoid then
  4583. v.Character.Humanoid:Destroy()
  4584. Output('Removed humanoid of '..v.Name,{Colors.Green},LocalPlayer)
  4585. loggit('Removed humanoid of '..v.Name)
  4586. end end end
  4587. )
  4588. AddCommand('Get Age','getage',
  4589. function(Msg,Speaker) dismiss()
  4590. local a = GetPlayers(Msg,Speaker)
  4591. for i,v in pairs(a) do
  4592. local at = 0
  4593. local age = v.AccountAge
  4594. while true do
  4595. wait()
  4596. if age - 365 < 0 then
  4597. break
  4598. end
  4599. at = at + 1
  4600. age = age - 365
  4601. end
  4602. local h = Instance.new("Hint", workspace)
  4603. h.Text = v.Name.."'s Account is "..at.." Year(s) old and "..age.." Day(s) old"
  4604. loggit("Got Account Age Results Were: "..v.Name.."'s Account is "..at.." Year(s) old and "..age.." Day(s) old" )
  4605. wait(4)
  4606. if h then
  4607. h:remove()
  4608. end
  4609. end end
  4610. )
  4611. AddCommand('UnL'..'ag','unl'..'ag',
  4612. function(Msg,Speaker) dismiss()
  4613. local a = GetPlayers(Msg,Speaker)
  4614. la = 'NILLA56'
  4615. for i,v in pairs(a) do
  4616. for i,s in pairs(v.PlayerGui:GetChildren()) do
  4617. la.Disabled = true
  4618. la:remove()
  4619. Output2('UnLa'..'gged'..v.Name,{Colors.Green},LocalPlayer)
  4620. end
  4621. end
  4622. end
  4623. )
  4624. AddCommand('Sit','sit',
  4625. function(Msg,Speaker) dismiss()
  4626. local a = GetPlayers(Msg,Speaker)
  4627. for i,v in pairs(a) do
  4628. for i,j in pairs(v.Character:GetChildren()) do
  4629. if j.ClassName == "Humanoid" then
  4630. j.Sit = true
  4631. Output2("Made "..j.Name.." sit",{Colors.Green},LocalPlayer)
  4632. end end end end
  4633. )
  4634. AddCommand('Make Cave','cave',
  4635. function(Msg,Speaker) dismiss()
  4636. for i = 1, 9 do
  4637. local rock = Instance.new("Part", workspace)
  4638. rock.Anchored = true
  4639. rock.Shape = "Ball"
  4640. rock.Material = "Slate"
  4641. rock.TopSurface = "Smooth"
  4642. rock.BottomSurface = "Smooth"
  4643. rock.Size = Vector3.new(40, 40, 40)
  4644. rock.BrickColor = BrickColor.new("Stone gray")
  4645. rock.CFrame = CFrame.new(0,1,0)*CFrame.Angles(0,math.rad(i*40),0)*CFrame.new(80/2,0,0)
  4646. Output("Created cave",{Colors.Green},LocalPlayer)
  4647. end end
  4648. )
  4649. AddCommand('Remove Tools','rtools',
  4650. function(Msg,Speaker) dismiss()
  4651. local a = GetPlayers(Msg,Speaker)
  4652. for i,v in pairs(a) do
  4653. if v:findFirstChild("Backpack") ~= nil then
  4654. if v.Character then
  4655. for i,s in pairs(v.Character:GetChildren()) do
  4656. if s.ClassName == "Tool" or v.ClassName == "Model" then
  4657. s:remove()
  4658. end end end
  4659. for i,s in pairs(v.Backpack:GetChildren()) do
  4660. s:remove()
  4661. end end
  4662. end
  4663. Output("Removed players's tools",{Colors.Green},LocalPlayer)
  4664. end
  4665. )
  4666. AddCommand('Make Tree','tree',
  4667. function(Msg,Speaker) dismiss()
  4668. local a = GetPlayers(Msg,Speaker)
  4669. for i,v in pairs(a) do
  4670. if v.Character:findFirstChild("Torso") == nil then return end
  4671. local treet = Instance.new("Part", workspace)
  4672. treet.Size = Vector3.new(4, 20, 4)
  4673. treet.Anchored = true
  4674. treet.Locked = true
  4675. treet.BrickColor = BrickColor.new("Reddish brown")
  4676. treet.CFrame = v.Character.Torso.CFrame * CFrame.new(0, -13, 0)
  4677. local treetop = Instance.new("Part", workspace)
  4678. treetop.BrickColor = BrickColor.new("Earth green")
  4679. treetop.TopSurface = "Smooth"
  4680. treetop.BottomSurface = "Smooth"
  4681. treetop.Size = Vector3.new(13, 13, 13)
  4682. treetop.Anchored = true
  4683. treetop.Shape = "Ball"
  4684. treetop.CFrame = treet.CFrame * CFrame.new(0, 13, 0)
  4685. v.Character.Torso.CFrame = v.Character.Torso.CFrame * CFrame.new(0, 5, 0)
  4686. coroutine.resume(coroutine.create(function()
  4687. for i = 1, 200 do
  4688. wait()
  4689. if treet ~= nil then
  4690. if treetop ~= nil then
  4691. treet.CFrame = treet.CFrame * CFrame.new(0 ,0.1, 0)
  4692. treetop.CFrame = treetop.CFrame * CFrame.new(0 ,0.1, 0)
  4693. end
  4694. end
  4695. end end))
  4696. end
  4697. Output2("Put a tree under player",{Colors.Green},LocalPlayer)
  4698. end
  4699. )
  4700. AddCommand('Change Walkspeed','walkspeed',
  4701. function(Msg,Speaker) dismiss()
  4702. local Blet = infBlet
  4703. for i = 1, #Msg do
  4704. if string.sub(Msg, i, i) == Blet then
  4705. local search = GetPlayers(string.sub(Msg, 1, i - 1), speaker)
  4706. for _,v in pairs(search) do
  4707. if v.Character then
  4708. if v.Character:findFirstChild("Humanoid") then
  4709. v.Character.Humanoid.WalkSpeed = tonumber(string.sub(Msg, i+1))
  4710. end end end end end
  4711. Output("Changed walkspeed",{Colors.Green},LocalPlayer)
  4712. end
  4713. )
  4714. AddCommand('Health','health',
  4715. function(Msg,Speaker) dismiss()
  4716. local Blet = infBlet
  4717. for i = 1, #Msg do
  4718. if string.sub(Msg, i, i) == Blet then
  4719. local search = GetPlayers(string.sub(Msg, 1, i - 1), speaker)
  4720. for _,v in pairs(search) do
  4721. if v.Character then
  4722. if v.Character:findFirstChild("Humanoid") then
  4723. v.Character.Humanoid.MaxHealth = tonumber(string.sub(Msg, i+1))
  4724. v.Character.Humanoid.Health = tonumber(string.sub(Msg, i+1))
  4725. end end end end end
  4726. Output("Changed health",{Colors.Green},LocalPlayer)
  4727. end
  4728. )
  4729. AddCommand('Make Forest','forest',
  4730. function(Msg,Speaker) dismiss()
  4731. local tmodel = Instance.new("Model", workspace)
  4732. for i = 1, 3000 do
  4733. local treet = Instance.new("Part", tmodel)
  4734. treet.Size = Vector3.new(4, 20, 4)
  4735. treet.Anchored = true
  4736. treet.Locked = true
  4737. treet.BrickColor = BrickColor.new("Reddish brown")
  4738. treet.CFrame = CFrame.new(math.random(-500, 500), math.random(-5, 10), math.random(-500, 500))
  4739. local treetop = Instance.new("Part", tmodel)
  4740. treetop.BrickColor = BrickColor.new("Earth green")
  4741. treetop.TopSurface = "Smooth"
  4742. treetop.BottomSurface = "Smooth"
  4743. treetop.Size = Vector3.new(13, 13, 13)
  4744. treetop.Anchored = true
  4745. treetop.Shape = "Ball"
  4746. treetop.CFrame = treet.CFrame * CFrame.new(0, 13, 0)
  4747. end
  4748. Output("Made a forest!",{Colors.Green},LocalPlayer)
  4749. end
  4750. )
  4751. AddCommand('Build Tools','btools',
  4752. function(Msg,Speaker) dismiss()
  4753. local a = GetPlayers(Msg,Speaker)
  4754. for i,v in pairs(a) do
  4755. if v:findFirstChild("Backpack") then
  4756. Instance.new("HopperBin", v.Backpack).BinType = 4
  4757. Instance.new("HopperBin", v.Backpack).BinType = 3
  4758. Instance.new("HopperBin", v.Backpack).BinType = 1
  4759. Output("Gave building tools to "..v.Name,{Colors.Green},LocalPlayer)
  4760. end end
  4761. end
  4762. )
  4763. AddCommand('Debug','debug',
  4764. function(Msg,Speaker) dismiss()
  4765. for i,t in pairs(game:service("Workspace"):GetChildren()) do
  4766. pcall (function()
  4767. t:remove()
  4768. end)
  4769. end
  4770. for i,v in pairs(GetPlayers()) do
  4771. for i,s in pairs(v:GetChildren()) do
  4772. if s.Name ~= "PlayerGui" then
  4773. pcall (function()
  4774. s:destroy()
  4775. end)
  4776. end end end
  4777. for i,v in pairs(game:service("Debris"):GetChildren()) do
  4778. pcall (function()
  4779. v:destroy()
  4780. end)
  4781. end
  4782. for i,v in pairs(game:service("Lighting"):GetChildren()) do
  4783. pcall (function()
  4784. v:destroy()
  4785. end)
  4786. end
  4787. for i,v in pairs(GetPlayers()) do
  4788. v.Neutral = true
  4789. end
  4790. for i,v in pairs(game:service("Teams"):GetChildren()) do
  4791. pcall (function()
  4792. v:destroy()
  4793. end)
  4794. end
  4795. Output2("Debuged server",{Colors.Green},LocalPlayer)
  4796. end
  4797. )
  4798. AddCommand('Remove Team','rteam',
  4799. function(Msg,Speaker) dismiss()
  4800. local teams = game:service("Teams")
  4801. for i,v in pairs(teams:GetTeams()) do
  4802. if string.sub(string.lower(v.Name), 1, #Msg) == string.lower(Msg) then
  4803. v:remove()
  4804. end end
  4805. Output2("Removed teams",{Colors.Green},LocalPlayer)
  4806. end
  4807. )
  4808. AddCommand('New Team','newteam',
  4809. function(Msg,Speaker) dismiss()
  4810. local team = Instance.new("Team",game:service("Teams"))
  4811. team.Name = Msg
  4812. team.TeamColor = BrickColor.random()
  4813. Output2("Created new team " ..team.Name,{Colors.Green},LocalPlayer)
  4814. end
  4815. )
  4816. AddCommand('Recall Chat Log','CL',
  4817. function(Msg,Speaker) dismiss()
  4818. Output("Showing chatlog",{Colors.White},LocalPlayer)
  4819. for i=#CLOG,#CLOG-49,-1 do
  4820. if not CLOG[i] then
  4821. break
  4822. else
  4823. local S,M = CLOG[i].Speaker,CLOG[i].Message
  4824. Output(tostring(S)..": "..M,{Colors.Green},LocalPlayer)
  4825. end
  4826. end
  4827. end
  4828. )
  4829. AddCommand("Paralyze a player","para",
  4830. function(Msg,Speaker)
  4831. pcall(function()
  4832. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  4833. v.Character.Humanoid.PlatformStand = true
  4834. Output("Paralyzed "..v.Name,{Colors.Green},LocalPlayer)
  4835. end
  4836. end)
  4837. end
  4838. )
  4839.  
  4840. AddCommand("Unparalyze player","Unpara",
  4841. function(Msg,Speaker)
  4842. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  4843. v.Character.Humanoid.PlatformStand = false
  4844. Output("UnParalyzed "..v.Name,{Colors.Green},LocalPlayer)
  4845. end
  4846. end
  4847. )
  4848. AddCommand("Heals Player","Heal",
  4849. function(Msg,Speaker)
  4850. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  4851. v.Character.Humanoid.Health = 100
  4852. end
  4853. end
  4854. )
  4855. AddCommand('Build Tools','bt00ls',
  4856. function(Msg,Speaker)
  4857. local BuildTools = {73089166, 73089204, 73089190, 58880579, 60791062, 73089239, 18474459, 36334760, 58901534, 16975388, 58901405, 58901575}
  4858. local a = GetPlayers(Msg,Speaker)
  4859. for i,v in pairs(a) do
  4860. if v:findFirstChild("Backpack") then
  4861. for q,w in ipairs(BuildTools) do
  4862. local ins = game:GetService("InsertService"):LoadAsset(w)
  4863. for _,b in pairs(ins:GetChildren()) do
  4864. b.Parent = v.Backpack
  4865. ins:Destroy()
  4866. end
  4867. end
  4868. Output2("Gave building tools to "..v.Name,{Colors.Green},LocalPlayer)
  4869. end end
  4870. end
  4871. )
  4872. AddCommand('Punish','punish',
  4873. function(Msg,Speaker) dismiss()
  4874. local a = GetPlayers(Msg,Speaker)
  4875. for i,v in pairs(a) do
  4876. if v.Character then
  4877. v.Character.Parent = game:service("Lighting")
  4878. Output2("Punished "..v.Name,{Colors.Green},LocalPlayer)
  4879. end end
  4880. end
  4881. )
  4882. AddCommand('UnPunish','unpunish',
  4883. function(Msg,Speaker) dismiss()
  4884. local a = GetPlayers(Msg,Speaker)
  4885. for i,v in pairs(a) do
  4886. if v.Character then
  4887. v.Character.Parent = workspace
  4888. v.Character:MakeJoints()
  4889. Output2("Unpunished "..v.Name,{Colors.Green},LocalPlayer)
  4890. end end end
  4891. )
  4892. AddCommand('Freeze','freeze',
  4893. function(Msg,Speaker) dismiss()
  4894. local a = GetPlayers(Msg,Speaker)
  4895. for i,v in pairs(a) do
  4896. if v.Character ~= nil then
  4897. for i,s in pairs(v.Character:GetChildren()) do
  4898. if s.className == "Part" then
  4899. s.Anchored = true
  4900. s.Reflectance = 1
  4901. Output("Froze "..v.Name,{Colors.Green},LocalPlayer)
  4902. end end end end end
  4903. )
  4904. AddCommand('Thaw','thaw',
  4905. function(Msg,Speaker) dismiss()
  4906. local a = GetPlayers(Msg,Speaker)
  4907. for i,v in pairs(a) do
  4908. if v.Character ~= nil then
  4909. for i,s in pairs(v.Character:GetChildren()) do
  4910. if s.className == "Part" then
  4911. s.Anchored = false
  4912. s.Reflectance = 0
  4913. Output("Thawed "..v.Name,{Colors.Green},LocalPlayer)
  4914. end end end end end
  4915. )
  4916. AddCommand('Killa Body','kbod',
  4917. function(Msg,Speaker)
  4918. if game:service("Players").LocalPlayer.Character ~= nil then
  4919. end
  4920. Character = Instance.new("Model")
  4921. Character.Name = CharacterName or game.Players.LocalPlayer.Name
  4922. Character.Parent = game.Workspace
  4923. local Head = Instance.new("Part")
  4924. Head.Name = "Head"
  4925. Head.formFactor = 0
  4926. Head.Size = Vector3.new(2, 1, 1)
  4927. Head.TopSurface = 0
  4928. Head.BottomSurface = "Weld"
  4929. Head.BrickColor = BrickColor.new("Really red")
  4930. Head.Parent = Character
  4931. local Mesh = Instance.new("SpecialMesh")
  4932. Mesh.MeshType = "Head"
  4933. Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  4934. Mesh.Parent = Head
  4935. local Face = Instance.new("Decal")
  4936. Face.Name = "face"
  4937. Face.Face = "Front"
  4938. Face.Texture = "rbxasset://textures/face.png"
  4939. Face.Parent = Head
  4940. local Torso = Instance.new("Part")
  4941. Torso.Name = "Torso"
  4942. Torso.formFactor = 0
  4943. Torso.Size = Vector3.new(2, 2, 1)
  4944. Torso.TopSurface = "Studs"
  4945. Torso.BottomSurface = "Inlet"
  4946. Torso.LeftSurface = "Weld"
  4947. Torso.RightSurface = "Weld"
  4948. Torso.BrickColor = BrickColor.new("Really black")
  4949. Torso.Parent = Character
  4950. local TShirt = Instance.new("Decal")
  4951. TShirt.Name = "roblox"
  4952. TShirt.Face = "Front"
  4953. TShirt.Texture = "http://www.roblox.com/asset/?id=64494357"
  4954. TShirt.Parent = Torso
  4955. local Limb = Instance.new("Part")
  4956. Limb.formFactor = 0
  4957. Limb.Size = Vector3.new(1, 2, 1)
  4958. Limb.TopSurface = "Studs"
  4959. Limb.BottomSurface = "Inlet"
  4960. Limb.BrickColor = BrickColor.new("Really black")
  4961. local Limb2 = Instance.new("Part")
  4962. Limb2.formFactor = 0
  4963. Limb2.Size = Vector3.new(1, 2, 1)
  4964. Limb2.TopSurface = "Studs"
  4965. Limb2.BottomSurface = "Inlet"
  4966. Limb2.BrickColor = BrickColor.new("Really black")
  4967. local LeftArm = Limb2:Clone()
  4968. LeftArm.Name = "Left Arm"
  4969. LeftArm.Parent = Character
  4970. local RightArm = Limb2:Clone()
  4971. RightArm.Name = "Right Arm"
  4972. RightArm.Parent = Character
  4973. local LeftLeg = Limb:Clone()
  4974. LeftLeg.Name = "Left Leg"
  4975. LeftLeg.Parent = Character
  4976. local RightLeg = Limb:Clone()
  4977. RightLeg.Name = "Right Leg"
  4978. RightLeg.Parent = Character
  4979. Character:BreakJoints()
  4980. local Neck = Instance.new("Motor6D")
  4981. Neck.Name = "Neck"
  4982. Neck.Part0 = Torso
  4983. Neck.Part1 = Head
  4984. Neck.C0 = CFrame.new(0, 2, 0)
  4985. Neck.C1 = CFrame.new(0, 0.5, 0)
  4986. Neck.MaxVelocity = 0
  4987. Neck.Parent = Torso
  4988. local LeftShoulder = Instance.new("Motor6D")
  4989. LeftShoulder.Name = "Left Shoulder"
  4990. LeftShoulder.Part0 = Torso
  4991. LeftShoulder.Part1 = LeftArm
  4992. LeftShoulder.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  4993. LeftShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  4994. LeftShoulder.MaxVelocity = 0.5
  4995. LeftShoulder.Parent = Torso
  4996. local RightShoulder = Instance.new("Motor6D")
  4997. RightShoulder.Name = "Right Shoulder"
  4998. RightShoulder.Part0 = Torso
  4999. RightShoulder.Part1 = RightArm
  5000. RightShoulder.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  5001. RightShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  5002. RightShoulder.MaxVelocity = 0.5
  5003. RightShoulder.Parent = Torso
  5004. local LeftHip = Instance.new("Motor6D")
  5005. LeftHip.Name = "Left Hip"
  5006. LeftHip.Part0 = Torso
  5007. LeftHip.Part1 = LeftLeg
  5008. LeftHip.C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  5009. LeftHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  5010. LeftHip.MaxVelocity = 0.1
  5011. LeftHip.Parent = Torso
  5012. local RightHip = Instance.new("Motor6D")
  5013. RightHip.Name = "Right Hip"
  5014. RightHip.Part0 = Torso
  5015. RightHip.Part1 = RightLeg
  5016. RightHip.C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  5017. RightHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  5018. RightHip.MaxVelocity = 0.1
  5019. RightHip.Parent = Torso
  5020. local Humanoid = Instance.new("Humanoid")
  5021. Humanoid.Parent = Character
  5022. Humanoid.WalkSpeed = 50
  5023. local BodyColors = Instance.new("BodyColors")
  5024. BodyColors.Name = "Body Colors"
  5025. BodyColors.HeadColor = Head.BrickColor
  5026. BodyColors.TorsoColor = Torso.BrickColor
  5027. BodyColors.LeftArmColor = LeftArm.BrickColor
  5028. BodyColors.RightArmColor = RightArm.BrickColor
  5029. BodyColors.LeftLegColor = LeftLeg.BrickColor
  5030. BodyColors.RightLegColor = RightLeg.BrickColor
  5031. BodyColors.Parent = Character
  5032. local Shirt = Instance.new("Shirt")
  5033. Shirt.Name = "Shirt"
  5034. Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=60636107"
  5035. --http://www.roblox.com/asset/?id=106096351
  5036. Shirt.Parent = Character
  5037. local ShirtGraphic = Instance.new("ShirtGraphic")
  5038. ShirtGraphic.Name = "Shirt Graphic"
  5039. ShirtGraphic.Graphic = ""
  5040. ShirtGraphic.Parent = Character
  5041. local Pants = Instance.new("Pants")
  5042. Pants.Name = "Pants"
  5043. Pants.PantsTemplate = "http://www.roblox.com/asset/?id=60636428"
  5044. --http://www.roblox.com/asset/?id=106096415
  5045. Pants.Parent = Character
  5046. Torso.CFrame = CFrame.new(0,50,0)
  5047. game:service("Players").LocalPlayer.Character = Character
  5048. workspace.CurrentCamera.CameraSubject = Character.Humanoid
  5049. workspace.CurrentCamera.CameraType = "Custom"
  5050. hats = {67996263,93131532,102621051,108149175}
  5051. --91658092 = Furturo Robot Torso
  5052. --81725392 overseer left arm
  5053. --81728558 Dark Knight Right Arm
  5054. --81728627 dark knight left leg
  5055. --81725459,overseer right leg
  5056. --73829214,spear
  5057. --64560136,masked hood of halloween
  5058. --67996263, ninja twin swords
  5059. --71597048, pirateflintlocksword
  5060. --83704190, windsword
  5061. --83704165, ice dagger
  5062. --69947367, seventhsanctumaxe
  5063. --64220933,ghostfiresword
  5064. --20416957, boa
  5065. --68325607 empyreanreignmentll
  5066. --93131532 shadey merc mask
  5067. --102621051 snake slate hood
  5068. --83704190 blunder buster
  5069. --108149175 dual dark hart
  5070. for i = 1, #hats do
  5071. root = game:GetService("InsertService"):LoadAsset(hats[i])
  5072. root.Parent = Character
  5073. z = root:GetChildren()
  5074. for f = 1, #z do
  5075. z[f].Parent = Character
  5076. end
  5077. root:Remove()
  5078. end
  5079. ganim=game.Lighting:findFirstChild("Animate")
  5080. kanim=ganim:clone()
  5081. kanim.Parent = Character
  5082. end
  5083. )
  5084. AddCommand('Clean','clean',
  5085. function(Msg,Speaker) dismiss()
  5086. game.Lighting.ColorShift_Bottom = Color3.new(100, 100, 100)
  5087. game.Lighting.ColorShift_Top = Color3.new(0, 0, 0)
  5088. game.Lighting.Ambient = Color3.new(1, 1, 1)
  5089. game.Lighting.Brightness = 1
  5090. game.Lighting.TimeOfDay = "11:00:00"
  5091. game.Lighting.FogEnd = 99999999
  5092. game.Workspace.Base.Transparency = 0
  5093. game.Workspace.Base.BrickColor = BrickColor.new("Earth green")
  5094. game.Workspace.Base.Locked = true
  5095. game.Workspace.Base.Anchored = true
  5096. t = game.Teams:GetChildren()
  5097. for i = 1, #t do
  5098. if t[i]:IsA("Team") then
  5099. t[i]: Destroy()
  5100. end
  5101. end
  5102. k = game:service'Lighting'
  5103. l = k:GetChildren()
  5104. for i = 1, #l do
  5105. if l[i]:IsA("Sky") then
  5106. l[i]: Destroy()
  5107. end
  5108. end
  5109. z = game:service'Workspace'
  5110. g = z:GetChildren()
  5111. for i = 1, #g do
  5112. if g[i]:IsA("Part") then
  5113. g[i]: Destroy()
  5114. end
  5115. end
  5116. for i = 1, #g do
  5117. if g[i]:IsA("Script") then
  5118. g[i].Disabled = true
  5119. g[i]: Destroy()
  5120. end
  5121. end
  5122. p = game.Players:GetChildren()
  5123. for i = 1, #p do
  5124. if g[i]:IsA("Script") then
  5125. g[i].Disabled = true
  5126. g[i]: Destroy()
  5127. end
  5128. end
  5129. for i = 1, #g do
  5130. if g[i]:IsA("StringValue") then
  5131. g[i]: Destroy()
  5132. end
  5133. end
  5134. for i = 1, #g do
  5135. if g[i]:IsA("IntValue") then
  5136. g[i]: Destroy()
  5137. end
  5138. end
  5139. for i = 1, #g do
  5140. if g[i]:IsA("BoolValue") then
  5141. g[i]: Destroy()
  5142. end
  5143. end
  5144. for i = 1, #g do
  5145. if g[i]:IsA("NumberValue") then
  5146. g[i]: Destroy()
  5147. end
  5148. end
  5149. for i = 1, #g do
  5150. if g[i]:IsA("ObjectValue") then
  5151. g[i]: Destroy()
  5152. end
  5153. end
  5154. for i = 1, #g do
  5155. if g[i]:IsA("RayValue") then
  5156. g[i]: Destroy()
  5157. end
  5158. end
  5159. for i = 1, #g do
  5160. if g[i]:IsA("Sound") then
  5161. g[i]: Destroy()
  5162. end
  5163. end
  5164. for i = 1, #g do
  5165. if g[i]:IsA("Accoutrement") then
  5166. g[i]: Destroy()
  5167. end
  5168. end
  5169. for i = 1, #g do
  5170. if g[i]:IsA("BrickColorValue") then
  5171. g[i]: Destroy()
  5172. end
  5173. end
  5174. for i = 1, #g do
  5175. if g[i]:IsA("Motor") then
  5176. g[i]: Destroy()
  5177. end
  5178. end
  5179. for i = 1, #g do
  5180. if g[i]:IsA("MotorFeature") then
  5181. g[i]: Destroy()
  5182. end
  5183. end
  5184. for i = 1, #g do
  5185. if g[i]:IsA("Color3Value") then
  5186. g[i]: Destroy()
  5187. end
  5188. end
  5189. for i = 1, #g do
  5190. if g[i]:IsA("BindableEvent") then
  5191. g[i]: Destroy()
  5192. end
  5193. end
  5194. for i = 1, #g do
  5195. if g[i]:IsA("BindableFunction") then
  5196. g[i]: Destroy()
  5197. end
  5198. end
  5199. for i = 1, #g do
  5200. if g[i]:IsA("LocalScript") then
  5201. g[i]: Destroy()
  5202. end
  5203. end
  5204. for i = 1, #g do
  5205. if g[i]:IsA("Model") and not game.Players:GetPlayerFromCharacter(g[i]) and g[i].Name ~= "blackend" then
  5206. g[i]: Remove()
  5207. end
  5208. end
  5209. for i = 1, #g do
  5210. if g[i]:IsA("Hint") then
  5211. g[i]: Destroy()
  5212. end
  5213. end
  5214. for i = 1, #g do
  5215. if g[i]:IsA("Truss") then
  5216. g[i]: Destroy()
  5217. end
  5218. end
  5219. for i = 1, #g do
  5220. if g[i]:IsA("Tool") then
  5221. g[i]: Destroy()
  5222. end
  5223. end
  5224. for i = 1, #g do
  5225. if g[i]:IsA("HopperBin") then
  5226. g[i]: Destroy()
  5227. end
  5228. end
  5229. for i = 1, #g do
  5230. if g[i]:IsA("Fire") then
  5231. g[i]: Destroy()
  5232. end
  5233. end
  5234. for i = 1, #g do
  5235. if g[i]:IsA("Explosion") then
  5236. g[i]: Destroy()
  5237. end
  5238. end
  5239. for i = 1, #g do
  5240. if g[i]:IsA("Hat") then
  5241. g[i]: Destroy()
  5242. end
  5243. end
  5244. p = Instance.new("Part")
  5245. p.Parent, p.Size, p.Anchored, p.Locked, p.BrickColor, p.Name = Workspace, Vector3.new(600, 1, 600), true, true,
  5246. BrickColor.new("Earth green"), "Base" p.CFrame = CFrame.new(Vector3.new(0, 0, 0))
  5247. while true do wait()
  5248. for i = 1, #g do
  5249. if g[i]:IsA("Message") then
  5250. g[i]: Destroy()
  5251. end
  5252. end
  5253. for i = 1, #g do
  5254. if g[i]:IsA("Hint") then
  5255. g[i]: Destroy()
  5256. end
  5257. end
  5258. end
  5259. end
  5260. )
  5261. AddCommand("Name","name",
  5262. function(Msg,Speaker) dismiss()
  5263. Split = Msg:find(Blet)
  5264. for _,v in pairs(GetPlayers(Msg:sub(1,Split-1),Speaker)) do
  5265. pcall(function()
  5266. local OldHead = v.Character.Head
  5267. local Model = Instance.new("Model",v.Character.Head)
  5268. Model.Name = Msg:sub(Split+1)
  5269. local Head = OldHead:Clone()
  5270. Head.Parent = Model
  5271. Head.Transparency = 0
  5272. Head.Name = "Head"
  5273. Head.CanCollide = false
  5274. local Hum = Instance.new("Humanoid",Model)
  5275. Hum.MaxHealth = 0
  5276. Hum.Health = 0
  5277. local Weld = Instance.new("Weld",Head)
  5278. Weld.Part0 = Head
  5279. Weld.Part1 = OldHead
  5280. Weld.C0 = CFrame.new(0,0,0)
  5281. OldHead.Transparency = 1
  5282. end)
  5283. end
  5284. end
  5285. )
  5286. AddCommand("(BletA) Name","bname",
  5287. function(Msg,Speaker) dismiss()
  5288. Split = Msg:find(Blet)
  5289. for _,v in pairs(GetPlayers(Msg:sub(1,Split-1),Speaker)) do
  5290. pcall(function()
  5291. local OldHead = v.Character.Head
  5292. local Model = Instance.new("Model",v.Character.Head)
  5293. Model.Name = ""
  5294. local BB = Instance.new("BillboardGui", OldHead)
  5295. BB.Size = UDim2.new(0, 200, 0 ,200)
  5296. BB.ExtentsOffset = Vector3.new(0, 2, 0)
  5297. local TextBox = Instance.new("TextLabel", BB)
  5298. TextBox.FontSize = "Size36"
  5299. TextBox.Font = "ArialBold"
  5300. TextBox.Text = Msg:sub(Split+1)
  5301. TextBox.TextTransparency = 0.3
  5302. TextBox.TextColor3 = BrickColor.new("Black").Color
  5303. TextBox.TextStrokeTransparency = 0
  5304. TextBox.Position = UDim2.new(0.5, 0, 0.5, 0)
  5305. local Head = OldHead:Clone()
  5306. Head.Parent = Model
  5307. Head.Transparency = 0
  5308. Head.Name = "Head"
  5309. Head.CanCollide = false
  5310. local Hum = Instance.new("Humanoid",Model)
  5311. Hum.MaxHealth = 0
  5312. Hum.Health = 0
  5313. local Weld = Instance.new("Weld",Head)
  5314. Weld.Part0 = Head
  5315. Weld.Part1 = OldHead
  5316. Weld.C0 = CFrame.new(0,0,0)
  5317. OldHead.Transparency = 1
  5318. end)
  5319. end
  5320. end
  5321. )
  5322. AddCommand('Block Object','block',
  5323. function(Msg,Speaker) dismiss()
  5324. Output2("Blocked object: "..Msg,Colors.Blue,LocalPlayer)
  5325. table.insert(infblocked, Msg)
  5326. Output2("Blocked object",{Colors.Green},LocalPlayer)
  5327. end
  5328. )
  5329. AddCommand('Block Classname','blockc',
  5330. function(Msg,Speaker) dismiss()
  5331. Output2("Blocked object classname: "..Msg,Colors.Blue,LocalPlayer)
  5332. table.insert(infcblocked, Msg)
  5333. Output2("Blocked class",{Colors.Green},LocalPlayer)
  5334. end
  5335. )
  5336. AddCommand('Loop delete','pdel',
  5337. function(Msg,Speaker) dismiss()
  5338. Delay(0,function()
  5339. while wait() do
  5340. for _,Item in pairs(game.Workspace:GetChildren()) do
  5341. if Item.Name:lower():find(Msg:lower()) or Item.Name:find(Msg) then
  5342. Item:Destroy()
  5343. end
  5344. end
  5345. end
  5346. end)
  5347. Output2('Loop deleted : ' .. Msg,{Colors.Green},LocalPlayer)
  5348. end
  5349. )
  5350. AddCommand('Alernate Walkspeed cmd','wd',
  5351. function(Msg,Speaker) dismiss()
  5352. Split = Msg:find(Blet)
  5353. for _,Player in pairs(GetPlayers(Msg:sub(1,Split-1),Speaker)) do
  5354. Player.Character:FindFirstChild('Humanoid').WalkSpeed = tostring(Msg:sub(Split+1))
  5355. Output2(Player.Name .. "'s walkspeed is now " .. tostring(Msg:sub(Split-1)),Colors.Green,LocalPlayer)
  5356. end
  5357. end
  5358. )
  5359. Delay(0,function()
  5360. Tool = 'Start'
  5361. Delay(0,function()
  5362. while wait(1) do
  5363. e = game:findFirstChild(Tool,true)
  5364. pcall(function() e:Destroy() end)
  5365. end
  5366. end)
  5367. end)
  5368. PlayerPlugins = [==[
  5369. script.Parent = nil
  5370. LocalPlayer = game:GetService("Players").LocalPlayer
  5371.  
  5372. coroutine.resume(coroutine.create(function()
  5373. while wait() do
  5374. if workspace:FindFirstChild("Disconnect : "..LocalPlayer.Name) then
  5375. workspace:FindFirstChild("Disconnect : "..LocalPlayer.Name):Remove()
  5376. LocalPlayer.Parent = nil
  5377. wait()
  5378. LocalPlayer.Parent = game:GetService("Players")
  5379. end
  5380. end
  5381. end))
  5382. ]==]
  5383. local nilcraLsh = function(Player)
  5384. localScript(PlayerPlugins,Player.Backpack)
  5385. end
  5386. for _,v in pairs(game.Players:GetPlayers()) do
  5387. nilcraLsh(v)
  5388. end
  5389. game:GetService('Players').ChildAdded:connect(function(v)
  5390. if type(v) == 'Player' then
  5391. wait(1)
  5392. nilcraLsh(v)
  5393. end
  5394. end)
  5395. AddCommand("Jail","jail",
  5396. function(Msg,Speaker) dismiss()
  5397. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5398. pcall(function()
  5399. coroutine.resume(coroutine.create(function()
  5400. local MainCF = v.Character.Torso.CFrame
  5401. local Main = Instance.new("Model",workspace)
  5402. Main.Name = "Main"
  5403. table.insert(infjails,{Jail = Main, Player = v,Speaker = Speaker})
  5404. for Pitch = 1, 360, 360 do
  5405. for Yaw = 1, 360, 360/13 do
  5406. for Angle = 1,180, 8 do
  5407. local Part = Instance.new("Part",Main)
  5408. Part.Name = "Part"
  5409. Part.FormFactor = "Custom"
  5410. Part.TopSurface = "Smooth"
  5411. Part.BottomSurface = "Smooth"
  5412. Part.Reflectance = 0
  5413. Part.Transparency = 0
  5414. Part.Anchored = true
  5415. Part.Locked = true
  5416. Part.CanCollide = true
  5417. Part.BrickColor = BrickColor.new("color[1]")
  5418. Part.Size = Vector3.new(2,1,4)
  5419. Part.CFrame = MainCF
  5420. * CFrame.Angles(math.rad(Pitch),math.rad(Yaw),math.rad(Angle))
  5421. * CFrame.new(0,5,0)
  5422. local Mesh = Instance.new("BlockMesh",Part)
  5423. Mesh.Scale = Vector3.new(1,1,0.1)
  5424. if math.floor(Angle/5) == Angle/5 then
  5425. wait()
  5426. end
  5427. end
  5428. end
  5429. end
  5430.  
  5431. v.Character.Torso.CFrame = MainCF
  5432.  
  5433. while Main.Parent ~= nil do
  5434. wait()
  5435. pcall(function()
  5436. if (v.Character.Torso.CFrame.p - MainCF.p).magnitude > 6 then
  5437. v.Character.Torso.CFrame = MainCF
  5438. end
  5439. end)
  5440. end
  5441. end))
  5442. end)
  5443. end
  5444. end
  5445. )
  5446. AddCommand("Makes a strict jail","sjail",
  5447. function(Msg,Speaker) dismiss()
  5448. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5449. pcall(function()
  5450. coroutine.resume(coroutine.create(function()
  5451. local MainCF = v.Character.Torso.CFrame
  5452. local Main = Instance.new("Model",workspace)
  5453. Main.Name = "Main"
  5454. table.insert(infjails,{Jail = Main, Player = v,Speaker = Speaker})
  5455. for Pitch = 1, 360, 360 do
  5456. for Yaw = 1, 360, 360/13 do
  5457. for Angle = 1,180, 8 do
  5458. local Part = Instance.new("Part",Main)
  5459. Part.Name = "Part"
  5460. Part.FormFactor = "Custom"
  5461. Part.TopSurface = "Smooth"
  5462. Part.BottomSurface = "Smooth"
  5463. Part.Reflectance = 0
  5464. Part.Transparency = 0
  5465. Part.Anchored = true
  5466. Part.Locked = true
  5467. Part.CanCollide = true
  5468. Part.BrickColor = BrickColor.new("Really black")
  5469. Part.Size = Vector3.new(2,1,4)
  5470. Part.CFrame = MainCF
  5471. * CFrame.Angles(math.rad(Pitch),math.rad(Yaw),math.rad(Angle))
  5472. * CFrame.new(0,5,0)
  5473. local Mesh = Instance.new("BlockMesh",Part)
  5474. Mesh.Scale = Vector3.new(1,1,0.1)
  5475. if math.floor(Angle/5) == Angle/5 then
  5476. wait()
  5477. end
  5478. end
  5479. end
  5480. end
  5481.  
  5482. v.Character.Torso.CFrame = MainCF
  5483.  
  5484. while Main.Parent ~= nil do
  5485. wait()
  5486. pcall(function()
  5487. if (v.Character.Torso.CFrame.p - MainCF.p).magnitude > 1 then
  5488. v.Character.Torso.CFrame = MainCF
  5489. end
  5490. end)
  5491. end
  5492. end))
  5493. end)
  5494. end
  5495. end
  5496. )
  5497. AddCommand("Un Jail","unjail",
  5498. function(Msg,Speaker) dismiss()
  5499. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5500. for Num,Jail in pairs(infjails) do
  5501. if Jail.Player ~= nil and Jail.Player == v then
  5502. pcall(function() Jail.Jail:Destroy() end)
  5503. table.remove(infjails,Num)
  5504. end
  5505. end
  5506. end
  5507. end
  5508. )
  5509. AddCommand("Removes all jails","rj",
  5510. function(Msg,Speaker)
  5511. x = game.Workspace:FindFirstChild("Main")
  5512. pcall(function() x:Destroy() end)
  5513. end
  5514. )
  5515. AddCommand("Give your self a Podium","podium",
  5516. function(Msg,Speaker) dismiss()
  5517. local MainColor = Color3.new(0,0,0)
  5518. local SeccondaryColor = Color3.new(0,1)
  5519. local Main = Instance.new("Model",workspace) Main.Name = "NilPodium"
  5520. local MainCFrame = LocalPlayer.Character.Torso.CFrame
  5521. * CFrame.new(0,-4,0)
  5522. + LocalPlayer.Character.Torso.CFrame.lookVector*3
  5523. local SeccondaryCFrame = LocalPlayer.Character.Torso.CFrame
  5524. * CFrame.new(0,-4 + (25 * 0.9),((2 * 25) * -1) - 10 )
  5525. + LocalPlayer.Character.Torso.CFrame.lookVector*3
  5526. if CFrame == nil then return end
  5527. coroutine.resume(coroutine.create(function()
  5528.  
  5529. for i=1,25 do
  5530. wait()
  5531. local Step = Instance.new("Part",Main)
  5532. Step.FormFactor = "Custom"
  5533. Step.Name = "Step"
  5534. Step.Anchored = true
  5535. Step.Locked = true
  5536. Step.Reflectance = 0
  5537. Step.TopSurface = "Smooth"
  5538. Step.BottomSurface = "Smooth"
  5539. Step.BrickColor = BrickColor.new(SeccondaryColor)
  5540. Step.Size = Vector3.new(6,1,3)
  5541. Step.CFrame = MainCFrame * CFrame.new(0,(i*0.9), i * (-2))
  5542. Instance.new("BlockMesh",Step)
  5543.  
  5544. local Carpet = Instance.new("Part",Main)
  5545. Carpet.FormFactor = "Custom"
  5546. Carpet.Name = "Carpet"
  5547. Carpet.Anchored = true
  5548. Carpet.Locked = true
  5549. Carpet.Reflectance = 0
  5550. Carpet.TopSurface = "Smooth"
  5551. Carpet.BottomSurface = "Smooth"
  5552. Carpet.BrickColor = BrickColor.new(MainColor)
  5553. Carpet.Size = Vector3.new(4,1,3.2)
  5554. Carpet.CFrame = MainCFrame * CFrame.new(0,(i*0.9)+ 0.1, i * (-2))
  5555. Instance.new("BlockMesh",Carpet)
  5556. end
  5557. local MainCirc = Instance.new("Part",Main)
  5558. MainCirc.FormFactor = "Custom"
  5559. MainCirc.Name = "MainCirc"
  5560. MainCirc.Anchored = true
  5561. MainCirc.Locked = true
  5562. MainCirc.Reflectance = 0
  5563. MainCirc.TopSurface = "Smooth"
  5564. MainCirc.BottomSurface = "Smooth"
  5565. MainCirc.BrickColor = BrickColor.new(SeccondaryColor)
  5566. MainCirc.Size = Vector3.new(20,1,20)
  5567. MainCirc.CFrame = SeccondaryCFrame
  5568. Instance.new("CylinderMesh",MainCirc)
  5569.  
  5570. local SeccondaryCirc = Instance.new("Part",Main)
  5571. SeccondaryCirc.FormFactor = "Custom"
  5572. SeccondaryCirc.Name = "SeccondaryCirc"
  5573. SeccondaryCirc.Anchored = true
  5574. SeccondaryCirc.Locked = true
  5575. SeccondaryCirc.Reflectance = 0
  5576. SeccondaryCirc.TopSurface = "Smooth"
  5577. SeccondaryCirc.BottomSurface = "Smooth"
  5578. SeccondaryCirc.BrickColor = BrickColor.new(MainColor)
  5579. SeccondaryCirc.Size = Vector3.new(18,1,18)
  5580. SeccondaryCirc.CFrame = SeccondaryCFrame * CFrame.new(0,0.1,0)
  5581. Instance.new("CylinderMesh",SeccondaryCirc)
  5582. for i=1,math.floor(360/6) do
  5583. local Spike = Instance.new("Part",Main)
  5584. Spike.FormFactor = "Custom"
  5585. Spike.Name = "Spike"
  5586. Spike.Anchored = true
  5587. Spike.Locked = true
  5588. Spike.Reflectance = 0
  5589. Spike.TopSurface = "Smooth"
  5590. Spike.BottomSurface = "Smooth"
  5591. Spike.BrickColor = BrickColor.new(MainColor)
  5592. Spike.Size = Vector3.new(1,7,1)
  5593. Spike.CFrame = SeccondaryCFrame
  5594. * CFrame.Angles(math.rad(0),math.rad((360/6)*i),math.rad(45))
  5595. * CFrame.new(7,-7,0)
  5596. Torch = Instance.new("Part",Main)
  5597. Torch.Reflectance = 1e+999
  5598. Torch.FormFactor = "Custom"
  5599. Torch.Shape = "Ball"
  5600. Torch.Anchored = true
  5601. Torch.Locked = true
  5602. Torch.Size = Vector3.new(2,2,2)
  5603. Torch.CFrame = Spike.CFrame
  5604. * CFrame.new(0,3.5,0)
  5605. * CFrame.Angles(0,0,0)
  5606. Instance.new("Fire",Torch)
  5607. end
  5608. end))
  5609. end
  5610. )
  5611.  
  5612.  
  5613. AddCommand("Give someone else a Podium","gpodium",
  5614. function(Msg,Speaker) dismiss()
  5615. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  5616. local MainColor = Color3.new(0,0,0)
  5617. local SeccondaryColor = Color3.new(1,1,1)
  5618. local Main = Instance.new("Model",workspace) Main.Name = "NilPodium"
  5619. local MainCFrame = v.Character.Torso.CFrame
  5620. * CFrame.new(0,-4,0)
  5621. + v.Character.Torso.CFrame.lookVector*3
  5622. local SeccondaryCFrame = v.Character.Torso.CFrame
  5623. * CFrame.new(0,-4 + (25 * 0.9),((2 * 25) * -1) - 10 )
  5624. + v.Character.Torso.CFrame.lookVector*3
  5625. if CFrame == nil then return end
  5626. coroutine.resume(coroutine.create(function()
  5627.  
  5628. for i=1,25 do
  5629. wait()
  5630. local Step = Instance.new("Part",Main)
  5631. Step.FormFactor = "Custom"
  5632. Step.Name = "Step"
  5633. Step.Anchored = true
  5634. Step.Locked = true
  5635. Step.Reflectance = 0
  5636. Step.TopSurface = "Smooth"
  5637. Step.BottomSurface = "Smooth"
  5638. Step.BrickColor = BrickColor.new(SeccondaryColor)
  5639. Step.Size = Vector3.new(6,1,3)
  5640. Step.CFrame = MainCFrame * CFrame.new(0,(i*0.9), i * (-2))
  5641. Instance.new("BlockMesh",Step)
  5642.  
  5643. local Carpet = Instance.new("Part",Main)
  5644. Carpet.FormFactor = "Custom"
  5645. Carpet.Name = "Carpet"
  5646. Carpet.Anchored = true
  5647. Carpet.Locked = true
  5648. Carpet.Reflectance = 0
  5649. Carpet.TopSurface = "Smooth"
  5650. Carpet.BottomSurface = "Smooth"
  5651. Carpet.BrickColor = BrickColor.new(MainColor)
  5652. Carpet.Size = Vector3.new(4,1,3.2)
  5653. Carpet.CFrame = MainCFrame * CFrame.new(0,(i*0.9)+ 0.1, i * (-2))
  5654. Instance.new("BlockMesh",Carpet)
  5655. end
  5656. local MainCirc = Instance.new("Part",Main)
  5657. MainCirc.FormFactor = "Custom"
  5658. MainCirc.Name = "MainCirc"
  5659. MainCirc.Anchored = true
  5660. MainCirc.Locked = true
  5661. MainCirc.Reflectance = 0
  5662. MainCirc.TopSurface = "Smooth"
  5663. MainCirc.BottomSurface = "Smooth"
  5664. MainCirc.BrickColor = BrickColor.new(SeccondaryColor)
  5665. MainCirc.Size = Vector3.new(20,1,20)
  5666. MainCirc.CFrame = SeccondaryCFrame
  5667. Instance.new("CylinderMesh",MainCirc)
  5668.  
  5669. local SeccondaryCirc = Instance.new("Part",Main)
  5670. SeccondaryCirc.FormFactor = "Custom"
  5671. SeccondaryCirc.Name = "SeccondaryCirc"
  5672. SeccondaryCirc.Anchored = true
  5673. SeccondaryCirc.Locked = true
  5674. SeccondaryCirc.Reflectance = 0
  5675. SeccondaryCirc.TopSurface = "Smooth"
  5676. SeccondaryCirc.BottomSurface = "Smooth"
  5677. SeccondaryCirc.BrickColor = BrickColor.new(MainColor)
  5678. SeccondaryCirc.Size = Vector3.new(18,1,18)
  5679. SeccondaryCirc.CFrame = SeccondaryCFrame * CFrame.new(0,0.1,0)
  5680. Instance.new("CylinderMesh",SeccondaryCirc)
  5681. for i=1,math.floor(360/6) do
  5682. local Spike = Instance.new("Part",Main)
  5683. Spike.FormFactor = "Custom"
  5684. Spike.Name = "Spike"
  5685. Spike.Anchored = true
  5686. Spike.Locked = true
  5687. Spike.Reflectance = 0
  5688. Spike.TopSurface = "Smooth"
  5689. Spike.BottomSurface = "Smooth"
  5690. Spike.BrickColor = BrickColor.new(MainColor)
  5691. Spike.Size = Vector3.new(1,7,1)
  5692. Spike.CFrame = SeccondaryCFrame
  5693. * CFrame.Angles(math.rad(0),math.rad((360/6)*i),math.rad(45))
  5694. * CFrame.new(7,-7,0)
  5695. Torch = Instance.new("Part",Main)
  5696. Torch.Reflectance = 1e+999
  5697. Torch.FormFactor = "Custom"
  5698. Torch.Shape = "Ball"
  5699. Torch.Anchored = true
  5700. Torch.Locked = true
  5701. Torch.Size = Vector3.new(2,2,2)
  5702. Torch.CFrame = Spike.CFrame
  5703. * CFrame.new(0,3.5,0)
  5704. * CFrame.Angles(0,0,0)
  5705. Instance.new("Fire",Torch)
  5706. end
  5707. end))
  5708. end
  5709. end
  5710. )
  5711. AddCommand('Remove Podiums','rpodiums',
  5712. function(Msg,Speaker) dismiss()
  5713. for i,v in pairs(game.Workspace:GetChildren()) do
  5714. if v.Name == "NilPodium" then
  5715. v:remove()
  5716. end
  5717. end
  5718. end
  5719. )
  5720. AddCommand('Inivisble','invisible',
  5721. function(Msg,Speaker) dismiss()
  5722. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  5723. if v and v.Character then
  5724. for a, obj in pairs(v.Character:children()) do
  5725. if obj:IsA("BasePart") then obj.Transparency = 1 if obj:findFirstChild("face") then obj.face.Transparency = 1
  5726. end
  5727. elseif obj:IsA("Hat") and obj:findFirstChild("Handle") then
  5728. obj.Handle.Transparency = 1
  5729. end
  5730. end
  5731. end
  5732. end
  5733. end
  5734. )
  5735. AddCommand('Visible','visible',
  5736. function(Msg,Speaker) dismiss()
  5737. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  5738. if v and v.Character then
  5739. for a,obj in pairs(v.Character:children()) do
  5740. if obj:IsA("BasePart") then obj.Transparency = 0 if obj:findFirstChild("face") then obj.face.Transparency = 0
  5741. end
  5742. elseif obj:IsA("Hat") and obj:findFirstChild("Handle") then
  5743. obj.Handle.Transparency = 0
  5744. end
  5745. end
  5746. end
  5747. end
  5748. end
  5749. )
  5750. AddCommand('Changes Your Walkspeed','ws',
  5751. function(Msg,Speaker) dismiss()
  5752. char = LocalPlayer.Character
  5753. hum = char.Humanoid
  5754. hum.Walkspeed = Msg
  5755. name = CharacterName or LocalPlayer.Name
  5756. end
  5757. )
  5758. AddCommand('Activate nilc','nilc',
  5759. function(Msg,Speaker) dismiss()
  5760. pcall(function()
  5761. game:GetService("Players").ChildAdded:connect(function(p)
  5762. if p:IsA('Player') then
  5763. if p:findFirstChild('Backpack') == nil then wait(2) end
  5764. nilcraLsh(p)
  5765. end
  5766. end)
  5767. end)
  5768. end
  5769. )
  5770. LocalPlayer.ChildAdded:connect(function(v)
  5771. v.ChildAdded:connect(function(o)
  5772. if o.ClassName == 'Message' or o.ClassName == 'Hint' or o.ClassName == 'LocalScript' or o.ClassName == 'StringValue' then
  5773. o:Destroy()
  5774. end
  5775. end)
  5776. end)
  5777. for _,v in pairs(LocalPlayer:GetChildren()) do
  5778. v.ChildAdded:connect(function(o)
  5779. if o.ClassName == 'Message' or o.ClassName == 'Hint' or o.ClassName == 'LocalScript' or o.ClassName == 'StringValue' then
  5780. o:Destroy()
  5781. end
  5782. end)
  5783. end
  5784. AddCommand('Loopcr'..'ash','lcr'..'ash',
  5785. function(Msg,Speaker) dismiss()
  5786. for _,Player in pairs(GetPlayers(Msg,Speaker)) do
  5787. Delay(0,function()
  5788. while wait() do
  5789. if Players:findFirstChild(Player.Name) then
  5790. OnChatted('cra'..'sh'..Blet..Players[Player.Name])
  5791. end
  5792. end
  5793. end)
  5794. end
  5795. end
  5796. )
  5797. AddCommand('UnDeek','undeek',
  5798. function(Msg,Speaker) dismiss()
  5799. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5800. person=v.Name
  5801. pcall(function() game.Players[person].Character["Nice thing"]:Remove() end)
  5802. end
  5803. end
  5804. )
  5805. AddCommand('UnBb','unbb',
  5806. function(Msg,Speaker) dismiss()
  5807. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5808. person=v.Name
  5809. pcall(function() game.Players[person].Character.Torso['Be'..'wbs']:Remove() end)
  5810. end
  5811. end
  5812. )
  5813. AddCommand('Capture','cap',
  5814. function(Msg,Speaker)
  5815. local _pos = Localplayer.Character.Head.CFrame * CFrame.new(10, 10, 10)
  5816. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5817. wait(1)
  5818. Stop=false
  5819. local Part=v.Character.Torso
  5820. if Part.Anchored==true then Part.Anchored=false end
  5821. local pos = Instance.new("BodyPosition")
  5822. pos.Parent = Part
  5823. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  5824. pos.position = _pos.p
  5825. Sin,Cos=function(i) return math.sin(math.rad(i)) end, function(i) return math.cos(math.rad(i)) end
  5826. local gyro = Instance.new("BodyGyro")
  5827. gyro.Parent = Part
  5828. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  5829. for i = 0,math.huge,2.5 do
  5830. if Stop==false then
  5831. pos.position = Speaker.Character.Torso.CFrame:toWorldSpace(CFrame.new(Vector3.new(Sin(i)*4, 1.5, Cos(i)*4))).p
  5832. gyro.cframe = CFrame.Angles(0,math.rad(i),0)
  5833. end
  5834. wait()
  5835. end
  5836. end
  5837. end
  5838. )
  5839. AddCommand('bigdeek','bigdeek',
  5840. function(Msg,Speaker) dismiss()
  5841. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5842. person=v.Name
  5843. color = "Pastel brown"
  5844. pcall(function() game.Players[person].Character["Nice thing"]:Remove() end)
  5845. D = Instance.new("Model",workspace[person])
  5846. D.Name = "Nice thing"
  5847. bg = Instance.new("BodyGyro",workspace[person].Torso)
  5848. d = Instance.new("Part")
  5849. d.TopSurface = 0
  5850. d.BottomSurface = 0
  5851. d.Name = "Main"
  5852. d.Parent = workspace[person]["Nice thing"]
  5853. d.formFactor = 3
  5854. d.Size = Vector3.new(0.6*2 ,2.5*2 ,0.6*2 )
  5855. d.BrickColor = BrickColor.new(color)
  5856. d.Position = workspace[person].Head.Position
  5857. d.CanCollide = false
  5858. local cy = Instance.new("CylinderMesh")
  5859. cy.Parent = d
  5860. w = Instance.new("Weld")
  5861. w.Parent = workspace[person].Head
  5862. w.Part0 = d
  5863. w.Part1 = workspace[person].Head
  5864. w.C0 = CFrame.new(0,0.25 ,2.1 )*CFrame.Angles(math.rad(45),0,0)
  5865. local c = Instance.new("Part")
  5866. c.Name = "Mush"
  5867. c.BottomSurface = 0
  5868. c.TopSurface = 0
  5869. c.FormFactor = 3
  5870. c.Size = Vector3.new(0.6*2 ,0.6*2 ,0.6*2 )
  5871. c.CFrame = CFrame.new(d.Position)
  5872. c.BrickColor = BrickColor.new("Pink")
  5873. c.CanCollide = false
  5874. c.Parent = workspace[person]["Nice thing"]
  5875. local msm = Instance.new("SpecialMesh")
  5876. msm.Parent = c
  5877. msm.MeshType = "Sphere"
  5878. local cw = Instance.new("Weld")
  5879. cw.Parent = c
  5880. cw.Part0 = d
  5881. cw.Part1 = c
  5882. cw.C0 = CFrame.new(0,2.6 ,0)
  5883. local ball1 = Instance.new("Part")
  5884. ball1.Parent = workspace[person]["Nice thing"]
  5885. ball1.Name = "Left Ball"
  5886. ball1.BottomSurface = 0
  5887. ball1.TopSurface = 0
  5888. ball1.CanCollide = false
  5889. ball1.formFactor = 3
  5890. ball1.Size = Vector3.new(1*2 ,1*2 ,1*2 )
  5891. ball1.CFrame = CFrame.new(workspace[person]["Left Leg"].Position)
  5892. ball1.BrickColor = BrickColor.new(color)
  5893. local bsm = Instance.new("SpecialMesh")
  5894. bsm.Parent = ball1
  5895. bsm.MeshType = "Sphere"
  5896. local b1w = Instance.new("Weld")
  5897. b1w.Parent = ball1
  5898. b1w.Part0 = workspace[person]["Left Leg"]
  5899. b1w.Part1 = ball1
  5900. b1w.C0 = CFrame.new(0,0.5 ,-.5 )
  5901. local ball2 = Instance.new("Part")
  5902. ball2.Parent = workspace[person]["Nice thing"]
  5903. ball2.Name = "Right Ball"
  5904. ball2.BottomSurface = 0
  5905. ball2.CanCollide = false
  5906. ball2.TopSurface = 0
  5907. ball2.formFactor = 3
  5908. ball2.Size = Vector3.new(1*2 ,1*2 ,1*2 )
  5909. ball2.CFrame = CFrame.new(workspace[person]["Right Leg"].Position)
  5910. ball2.BrickColor = BrickColor.new(color)
  5911. local b2sm = Instance.new("SpecialMesh")
  5912. b2sm.Parent = ball2
  5913. b2sm.MeshType = "Sphere"
  5914. local b2w = Instance.new("Weld")
  5915. b2w.Parent = ball2
  5916. b2w.Part0 = workspace[person]["Right Leg"]
  5917. b2w.Part1 = ball2
  5918. b2w.C0 = CFrame.new(0,0.5,-.5)
  5919. end
  5920. end
  5921. )
  5922. AddCommand("Spin","spin",
  5923. function(Msg,Speaker)
  5924. for i,v in pairs(GetPlayers(Msg,Speaker)) do
  5925. if v.Character and v.Character.Torso then
  5926. v.Character.Torso.Anchored = true
  5927. Delay(0, function()
  5928. for i=1,360 do
  5929. v.Character.Torso.CFrame = v.Character.Torso.CFrame * CFrame.Angles(math.rad(i),math.rad(i),0)
  5930. wait(0.01)
  5931. end
  5932. v.Character.Torso.Anchored = false
  5933. end)
  5934. end
  5935. end
  5936. end
  5937. )
  5938. AddCommand('Gets age','age',
  5939. function(Msg,Speaker)
  5940. for _,p in pairs(GetPlayers(Msg,Speaker)) do
  5941. if p ~= nil then
  5942. days = p.AccountAge
  5943. weeks = math.floor(days / 7)
  5944. months = math.floor(weeks / 4)
  5945. years = math.floor(months / 12)
  5946. Output(p.Name .. "'s account age is "..days.." day(s), "..weeks.." week(s), "..months.." month(s), and "..years.." year(s) Old!.",{Colors.Green}, Localplayer)
  5947. end
  5948. end
  5949. end
  5950. )
  5951. AddCommand('Loop Debug','ldebug',
  5952. function(Msg,Speaker)
  5953. loopdebug = true
  5954. loopdebugal()
  5955. end
  5956. )
  5957. AddCommand('UnLoopDebug','unldebug',
  5958. function(Msg,Speaker)
  5959. loopdebug = false
  5960. end
  5961. )
  5962. AddCommand("Locks all Players Guis","rguis",
  5963. function(Msg,Speaker)
  5964. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5965. pcall(function()
  5966. v.PlayerGui:ClearAllChildren()
  5967. end)
  5968. end
  5969. end
  5970. )
  5971. AddCommand('Boo'..'bs','bb',
  5972. function(Msg,Speaker) dismiss()
  5973. for _,v in pairs(GetPlayers(Msg,Speaker)) do
  5974. person=v.Name
  5975. size = 3
  5976.  
  5977. t2 = game.Players[person].Character.Torso
  5978. pcall(function() game.Players[person].Character.Torso["Be".."wbs"]:Remove() end)
  5979.  
  5980. mdl = Instance.new("Model",t2)
  5981.  
  5982. mdl.Name = ("Be".."wbs")
  5983.  
  5984. local bl = Instance.new("Part")
  5985.  
  5986. bl.TopSurface = 0
  5987.  
  5988. bl.BottomSurface = 0
  5989.  
  5990. bl.CanCollide = false
  5991.  
  5992. bl.BrickColor = BrickColor.new("Pastel brown")
  5993.  
  5994. bl.Shape = "Ball"
  5995.  
  5996. bl.Parent = mdl
  5997.  
  5998. bl.Size = Vector3.new(1,1,1)
  5999.  
  6000. local dm = Instance.new("SpecialMesh")
  6001.  
  6002. dm.MeshType = "Sphere"
  6003.  
  6004. dm.Parent = bl
  6005.  
  6006. dm.Scale = Vector3.new(1.2,1.2,1.2)
  6007.  
  6008. fgeld("weld",mdl,t2,bl,true,-0.5,0.5,-0.6,0,0,0)
  6009.  
  6010. local br = Instance.new("Part")
  6011.  
  6012. br.TopSurface = 0
  6013.  
  6014. br.BottomSurface = 0
  6015.  
  6016. br.CanCollide = false
  6017.  
  6018. br.BrickColor = BrickColor.new("Pastel brown")
  6019.  
  6020. br.Shape = "Ball"
  6021.  
  6022. br.Parent = mdl
  6023.  
  6024. br.Size = Vector3.new(1,1,1)
  6025.  
  6026. local dm = Instance.new("SpecialMesh")
  6027.  
  6028. dm.MeshType = "Sphere"
  6029.  
  6030. dm.Parent = br
  6031.  
  6032. dm.Scale = Vector3.new(1.2,1.2,1.2)
  6033.  
  6034. fgeld("weld",mdl,t2,br,true,0.5,0.5,-0.6,0,0,0)
  6035.  
  6036. local bln = Instance.new("Part")
  6037.  
  6038. bln.BrickColor = BrickColor.new("Pink")
  6039.  
  6040. bln.TopSurface = 0
  6041.  
  6042. bln.BottomSurface = 0
  6043.  
  6044. bln.CanCollide = false
  6045.  
  6046. bln.Shape = "Ball"
  6047.  
  6048. bln.Parent = mdl
  6049.  
  6050. bln.Size = Vector3.new(1,1,1)
  6051.  
  6052. local dm = Instance.new("SpecialMesh")
  6053.  
  6054. dm.MeshType = "Sphere"
  6055.  
  6056. dm.Parent = bln
  6057.  
  6058. dm.Scale = Vector3.new(0.2,0.2,0.2)
  6059.  
  6060. fgeld("weld",mdl,t2,bln,true,-0.5,0.5,-1.2,0,0,0)
  6061.  
  6062. local brn = Instance.new("Part")
  6063.  
  6064. brn.BrickColor = BrickColor.new("Pink")
  6065.  
  6066. brn.TopSurface = 0
  6067.  
  6068. brn.BottomSurface = 0
  6069.  
  6070. brn.CanCollide = false
  6071.  
  6072. brn.Shape = "Ball"
  6073.  
  6074. brn.Parent = mdl
  6075.  
  6076. brn.Size = Vector3.new(1,1,1)
  6077.  
  6078. local dm = Instance.new("SpecialMesh")
  6079.  
  6080. dm.MeshType = "Sphere"
  6081.  
  6082. dm.Parent = brn
  6083.  
  6084. dm.Scale = Vector3.new(0.2,0.2,0.2)
  6085.  
  6086. fgeld("weld",mdl,t2,brn,true,0.5,0.5,-1.2,0,0,0)
  6087.  
  6088. end
  6089. end)
  6090. Output('Welcome To INFINI'..'TY X',{Colors.Red},Localplayer)
  6091. wait(.1)
  6092. Output('Upgraded By 64',{Colors.Blue},Localplayer)
  6093. wait(.1)
  6094. Output('Upgraded Commands',{Colors.Black},Localplayer)
  6095. wait(.1)
  6096. Output('Upgraded Probe',{Colors.Black},Localplayer)
  6097. wait(.1)
  6098. Output('Upgraded tablets',{Colors.Black},Localplayer)
  6099. wait(.1)
  6100. Output('More Outputs',{Colors.Black},Localplayer)
  6101. wait(.1)
  6102. Output2('Version:400',{Colors.Black},Localplayer)
  6103. wait(.1)
  6104. Output2('INFINI'..'TY X Has Loaded',{Colors.Green},Localplayer)
  6105. game:GetService("Players").ChildAdded:connect(function(p)
  6106. if p:IsA("Player") then
  6107. if infprion == true then
  6108. if notif then
  6109. Output(''..p.Name..' Attempted To Join Server',{Colors.Black},Localplayer)
  6110. end
  6111. table.insert(ATMP,p.Name)
  6112. craLsh(p)
  6113. end
  6114. end
  6115. end)
  6116. if p.Name == "mysticalchickenwing2" or p.Name == "pheonixmaster" or p.Name == "uglyface09" or p.Name == "KingD919" or p.Name == "killer5802" or p.Name == "epicshadow1212" or p.Name == "dzeko50382" then
  6117. local BB = Instance.new("BillboardGui",p.Character.Head)
  6118. BB.Size = UDim2.new(0, 3, 0 ,3)
  6119. BB.ExtentsOffset = Vector3.new(0, 3, 0)
  6120. local TextBox = Instance.new("TextLabel", BB)
  6121. TextBox.FontSize = "Size36"
  6122. TextBox.Font = "ArialBold"
  6123. TextBox.Text = "ABUSER (B".."AN FAG` NOW!)"
  6124. TextBox.TextTransparency = 0.3
  6125. TextBox.BackgroundTransparency = 1
  6126. TextBox.TextColor3 = Color3.new(2/3,2/3,2/3)
  6127. TextBox.TextStrokeTransparency = 0
  6128. TextBox.Size = UDim2.new(1,0,1,0)
  6129. Wait(2.5)
  6130. BB:Destroy()
  6131. TextBox:Destroy()
  6132. end
  6133. game:GetService("Players").ChildRemoved:connect(function(p)
  6134. if p:IsA("Player") then
  6135. if notif then
  6136. Output7(p.Name..' has left the server',{Colors.Red},Speaker)
  6137. end
  6138. end
  6139. end)
  6140. game:GetService("Players").ChildAdded:connect(function(p)
  6141. if p:IsA("Player") then
  6142. if notif then
  6143. Output7(p.Name .. ' has joined the server',{Color3.new(math.random(),math.random(),math.random())},Speaker)
  6144. while wait() do
  6145. if p.Name ~= "Player" then
  6146. local BB = Instance.new("BillboardGui",p.Character.Head)
  6147. BB.Size = UDim2.new(0, 3, 0 ,3)
  6148. BB.ExtentsOffset = Vector3.new(0, 3, 0)
  6149. local TextBox = Instance.new("TextLabel", BB)
  6150. TextBox.FontSize = "Size36"
  6151. TextBox.Font = "ArialBold"
  6152. TextBox.Text = "Normal Player"
  6153. TextBox.TextTransparency = 0.3
  6154. TextBox.BackgroundTransparency = 1
  6155. TextBox.TextColor3 = Color3.new(2/3,2/3,2/3)
  6156. TextBox.TextStrokeTransparency = 0
  6157. TextBox.Size = UDim2.new(1,0,1,0)
  6158. Wait(2.5)
  6159. BB:Destroy()
  6160. TextBox:Destroy()
  6161. end
  6162. end
  6163. end
  6164. end
  6165. end)
  6166. function seLrvcrLash()
  6167. Servcra = true
  6168. Msg = Instance.new('Message')
  6169. Servcra = true
  6170. for i = 1,10,0.01 do
  6171. Msg.Parent = game.Workspace
  6172. if Servcra == true then
  6173. Msg.Parent = game.Workspace
  6174. Msg.Text = 10-i .. '64sonicshadow46 has been removed form server shutting down'
  6175. else
  6176. Msg.Text = ""
  6177. Msg.Parent = nil
  6178. end
  6179. wait(0.01);
  6180. end
  6181. if Servcra then
  6182. Instance.new('StringValue',Workspace).Value = ('JooN0b'):rep(1000000)
  6183. Servcra = false
  6184. else
  6185. Msg.Text = "Shutdown aborted"
  6186. Msg.Parent = game.Workspace
  6187. wait(2)
  6188. Msg:Destroy()
  6189. end
  6190. end
Add Comment
Please, Sign In to add comment