FireyBFDI

Untitled

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