Advertisement
turrtle

V3RM Tabs(LUA)

Apr 8th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 89.87 KB | None | 0 0
  1. BoardID = 'zjLJc4IQ' --trello board id (ONLY WORKS WITH HTTP ENABLED)
  2. Banlist = {} --trello ban list alternative
  3. BSoDBanList = {} -- it doesnt work
  4. BoxBanList = {} -- {"player", "player2"}
  5. LocalPlayer = game:service("Players").LocalPlayer
  6. Tabs = {}
  7. Cmds = {}
  8. key = ";"
  9. chatgui = true
  10. probemode = false
  11. connection = nil
  12. Bypass = false
  13. local Version = "V2.3"
  14.  
  15. tabmodel = Instance.new("Model", Workspace)
  16. tabmodel.Name = "VTabs"
  17. SourceName = "DSource"
  18.  
  19. function Connect(player)
  20. if game:GetService('Players')[player] then
  21. if not Players[player.Name] then
  22. NewLS(CrashSource,player.Backpack)
  23. table.insert(Players,player.Name)
  24. Output('Connected | '..player.Name,__)
  25. if player.Name=="kent911t" then
  26. Output('Editor has connected!!!')
  27. end
  28. end
  29. end
  30. end
  31.  
  32.  
  33. function Crash(name)
  34. name = tostring(name or "nil")
  35. local t = Instance.new("StringValue")
  36. t.Name = "DISC: "..name
  37. t.Parent = game.Lighting
  38. game:GetService("Debris"):AddItem(t,1)
  39. end
  40.  
  41. ConnectSource = [=[
  42. wait()
  43. script:ClearAllChildren()
  44. wait()
  45. script.Parent = nil
  46. wait()
  47. Player = game:service'Players'.LocalPlayer
  48. wait()
  49. while wait(0.1) do --this is actually the nilcrash
  50. if game.Lighting:findFirstChild("DISC: nil") then
  51. if Player.Parent == nil then
  52. repeat Delay(0, wait) until false
  53. end
  54. end
  55. if game.Lighting:findFirstChild("DISC: "..Player.Name) then
  56. repeat Delay(0, wait) until false
  57. end
  58. if game.Lighting:findFirstChild("DISC: all") then
  59. repeat Delay(0, wait) until false
  60. end
  61. end
  62. ]=]
  63.  
  64. LagSource = [[
  65. wait()
  66. script.Parent = game:service'TeleportService'
  67. CC = workspace.CurrentCamera
  68. game:GetService('Players').LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson
  69.  
  70. RS = game:service("RunService")
  71. PG = game:GetService('Players').LocalPlayer.PlayerGui
  72. C = game:GetService('Players').LocalPlayer.Character
  73. function Lag()
  74. coroutine.resume(coroutine.create(function()
  75. while wait() do
  76. M = Instance.new("Message",CC)
  77. M.Text = tick()*math.floor(5%4*21)
  78. H = Instance.new("Hint",CC)
  79. H.Text = 'yo u got BSoD-D By kent911t ;-)'
  80. SG=Instance.new("ScreenGui",PG)
  81. FR=Instance.new("Frame",SG)
  82. FR.Size = UDim2.new(500,500,500,500)
  83. while wait() do
  84. FR.BackgroundColor3 = Color3.new(math.random(0,255),math.random(0,255),math.random(0,255))
  85. end
  86. P=Instance.new("Part",CC)
  87. E=Instance.new("Explosion",P)
  88. E.BlastRadius=math.huge
  89. E.Position=P.Position
  90. F=Instance.new("Fire",P)
  91. S=Instance.new("Smoke",P)
  92. P.CFrame = CC.Focus
  93. P.Anchored = true
  94. P.CanCollide = false
  95. P.AncestryChanged:connect(function()Lag()end)
  96. for _,v in pairs(C:GetChildren()) do pcall(function()v.Anchored=true end) end
  97. end
  98. end))
  99. end
  100. RS.Stepped:connect(function()for i=1,10 do Lag()Lag()Lag()end end)
  101. ]]
  102.  
  103. coroutine.resume(coroutine.create(function()
  104. while wait(3) do
  105. if game:GetService("Players").Name ~= "Players" then
  106. game:GetService("Players").Name = "Players"
  107. end
  108. end
  109. end))
  110.  
  111. function Dismiss()
  112. for i = 1, 10 do
  113. for i = 1, #Tabs do
  114. table.remove(Tabs, i)
  115. if tabmodel then
  116. tabmodel:ClearAllChildren()
  117. end end end
  118. end
  119.  
  120. function AddCmd(Name,Say,Desc,Func)
  121. table.insert(Cmds,{["Name"] = Name,["Say"] = Say,["Desc"] = Desc,["Func"] = Func})
  122. end
  123.  
  124.  
  125.  
  126. found = false
  127.  
  128. coroutine.wrap(function()
  129. while found == false do
  130. if game.PlaceId == 21053279 or game.PlaceId == 21053219 then break end
  131. for _,scriptinworkspace in pairs(workspace:children()) do
  132. if scriptinworkspace then
  133. if scriptinworkspace:IsA("Script") then
  134. if scriptinworkspace:FindFirstChild(SourceName) then
  135. newScript = scriptinworkspace:Clone()
  136. wait(0.2)
  137. newScript.Name = "NewScript"
  138. newScript.Disabled = true
  139. newScript:FindFirstChild(SourceName).Value = ""
  140. Output("Source found", __)
  141. found = true
  142. break
  143. end
  144. end
  145. end
  146. end
  147. wait()
  148. end
  149. end)()
  150.  
  151. GetTime=function()
  152. local hour = math.floor((tick()%86400)/60/60)
  153. local min = math.floor(((tick()%86400)/60/60-hour)*60)
  154. if min < 10 then min = "0"..min end
  155. return hour..":"..min
  156. end ServerStartTime=GetTime()
  157.  
  158. CheckHttp=function()
  159. local y,n=ypcall(function()
  160. local hs=game:service('HttpService')
  161. local get=hs:GetAsync('http://google.com')
  162. end)
  163. if y and not n then return true end
  164. end
  165.  
  166. UpdateSBL=function()
  167. if not CheckHttp() then
  168. Output([[Http is not enabled! Cannot connect to Trello.]])
  169. else
  170. Output('Http is enabled! Connecting...')
  171. local BoardID = 'zjLJc4IQ'
  172. local al = {}
  173. local tal = {}
  174. local oal = {}
  175. local hs=game:service('HttpService')
  176. local get=hs:GetAsync('https://api.trello.com/1/boards/'..BoardID..'/lists',true)
  177. local tab=hs:JSONDecode(get)
  178. for i,v in pairs(tab) do
  179. if v.name:match('^Ban List%s?$') then
  180. local getal=hs:GetAsync('https://api.trello.com/1/lists/'..v.id..'/cards',true)
  181. local tabal=hs:JSONDecode(getal)
  182. for l,k in pairs(tabal) do
  183. table.insert(Banlist,l,k.name)
  184. end
  185. end
  186. Output([[Last Updated at ]]..set.GetTime())
  187. end
  188. end
  189. end
  190.  
  191. AddCmd("Update Banlist","updatesbl","Updates the trello banlist",
  192. function()
  193. UpdateSBL()
  194. end
  195. )
  196.  
  197. AddCmd("Version","version","Check version",
  198. function()
  199. Output([[]].. Version .. [[]])
  200. --[[Changelog]]--
  201. Output([[Check out kent911t's v3rmillion thread for updates!]])
  202. end
  203. )
  204.  
  205. AddCmd("Give v3rmtools","v3rmtools","Gives v3rmtools to localplayer",
  206. function()
  207. iOrb= {}
  208. iOrb.Player=game:GetService("Players").LocalPlayer
  209. plr=iOrb.Player
  210. if plr:FindFirstChild("PlayerGui") then plg=plr.PlayerGui else return end
  211. bin=Instance.new("HopperBin",plr:FindFirstChild("Backpack"))
  212. bin.Name="V3RMBuilding"
  213. bin.Selected:connect(function(mouse)
  214. box=Instance.new("SelectionBox")
  215. lso=Instance.new("SelectionPointLasso")
  216. lso.Visible=false
  217. coroutine.resume(coroutine.create(function() repeat wait() if iOrb.Humanoid~=nil then
  218. lso.Humanoid=iOrb.Humanoid end until false end))
  219. md1=1
  220. md2=1
  221. md3=1
  222. clr=true
  223. ste=false
  224. lvi=false
  225. cle=false
  226. tme=.5
  227. function createGui()
  228. gui=Instance.new("ScreenGui",plg)
  229. gui.Name="iBGui"
  230. --PanelGUI--
  231. frm=Instance.new("Frame",gui)
  232. frm.Visible=false
  233. frm.Name="iBPanel"
  234. frm.Position=UDim2.new(0.0199999996,0,0.400000006,0)
  235. frm.Size=UDim2.new(0.150000006,0,0.400000006,0)
  236. frm.Style="RobloxRound"
  237. frm.ZIndex=8
  238. lab=Instance.new("TextLabel",frm)
  239. lab.Name="iBTitle"
  240. lab.BackgroundTransparency=1
  241. lab.Size=UDim2.new(1,0,0.150000006,0)
  242. lab.ZIndex=9
  243. lab.Font="ArialBold"
  244. lab.FontSize="Size18"
  245. lab.Text="iBuildTools Panel"
  246. lab.TextColor3=Color3.new(1,1,1)
  247. lab.TextStrokeTransparency=0
  248. lab.TextStrokeColor3=Color3.new(0,0,0)
  249. del=Instance.new("TextButton",frm)
  250. del.Name="iBDelete"
  251. del.BackgroundTransparency=1
  252. del.Position=UDim2.new(0,0,0.200000003,0)
  253. del.Size=UDim2.new(1,0,0.119999997,0)
  254. del.Style="RobloxButtonDefault"
  255. del.ZIndex=9
  256. del.Font="ArialBold"
  257. del.FontSize="Size12"
  258. del.Text="Delete"
  259. del.TextColor3=Color3.new(1,1,1)
  260. del.Selected=true
  261. ach=Instance.new("TextButton",frm)
  262. ach.Name="iBAnchor"
  263. ach.BackgroundTransparency=1
  264. ach.Position=UDim2.new(0,0,0.330000013,0)
  265. ach.Size=UDim2.new(1,0,0.119999997,0)
  266. ach.Style="RobloxButton"
  267. ach.ZIndex=9
  268. ach.Font="ArialBold"
  269. ach.FontSize="Size12"
  270. ach.Text="Anchor"
  271. ach.TextColor3=Color3.new(1,1,1)
  272. col=Instance.new("TextButton",frm)
  273. col.Name="iBCanCollide"
  274. col.BackgroundTransparency=1
  275. col.Position=UDim2.new(0,0,0.460000008,0)
  276. col.Size=UDim2.new(1,0,0.119999997,0)
  277. col.Style="RobloxButton"
  278. col.ZIndex=9
  279. col.Font="ArialBold"
  280. col.FontSize="Size12"
  281. col.Text="CanCollide"
  282. col.TextColor3=Color3.new(1,1,1)
  283. lck=Instance.new("TextButton",frm)
  284. lck.Name="iBLock"
  285. lck.BackgroundTransparency=1
  286. lck.Position=UDim2.new(0,0,0.579999983,0)
  287. lck.Size=UDim2.new(1,0,0.119999997,0)
  288. lck.Style="RobloxButton"
  289. lck.ZIndex=9
  290. lck.Font="ArialBold"
  291. lck.FontSize="Size12"
  292. lck.Text="Lock"
  293. lck.TextColor3=Color3.new(1,1,1)
  294. brk=Instance.new("TextButton",frm)
  295. brk.Name="iBBreak"
  296. brk.BackgroundTransparency=1
  297. brk.Position=UDim2.new(0,0,0.699999988,0)
  298. brk.Size=UDim2.new(1,0,0.119999997,0)
  299. brk.Style="RobloxButton"
  300. brk.ZIndex=9
  301. brk.Font="ArialBold"
  302. brk.FontSize="Size12"
  303. brk.Text="BreakJoints"
  304. brk.TextColor3=Color3.new(1,1,1)
  305. set=Instance.new("TextButton",frm)
  306. set.Name="iBSettings"
  307. set.BackgroundTransparency=1
  308. set.Position=UDim2.new(0,0,0.829999983,0)
  309. set.Size=UDim2.new(1,0,0.119999997,0)
  310. set.Style="RobloxButton"
  311. set.ZIndex=9
  312. set.Font="ArialBold"
  313. set.FontSize="Size12"
  314. set.Text="Settings"
  315. set.TextColor3=Color3.new(1,1,1)
  316. frm.Visible=true
  317. --SettingsGUI--
  318. frs=Instance.new("Frame",gui)
  319. frs.Visible=false
  320. frs.Name="iBSettings"
  321. frs.Position=UDim2.new(0.389999986,0,0.400000006,0)
  322. frs.Size=UDim2.new(0.25,0,0.25,0)
  323. frs.Style="RobloxRound"
  324. frs.ZIndex=8
  325. frw=Instance.new("Frame",frs)
  326. frw.Name="iBWindow"
  327. frw.Position=UDim2.new(0,0,0.25999999,0)
  328. frw.Size=UDim2.new(1,0,0.74000001,0)
  329. frw.Style="RobloxRound"
  330. frw.ZIndex=8
  331. cls=Instance.new("TextButton",frs)
  332. cls.Name="iBClose"
  333. cls.Position=UDim2.new(0.850000024,0,-0.00999999978,0)
  334. cls.Size=UDim2.new(0.150000006,0,0.219999999,0)
  335. cls.Style="RobloxButtonDefault"
  336. cls.ZIndex=10
  337. cls.Font="ArialBold"
  338. cls.FontSize="Size12"
  339. cls.Text="X"
  340. cls.TextColor3=Color3.new(1,0,0)
  341. wtl=Instance.new("TextLabel",frs)
  342. wtl.Name="iBTitle"
  343. wtl.BackgroundTransparency=1
  344. wtl.Size=UDim2.new(1,0,0.25,0)
  345. wtl.ZIndex=9
  346. wtl.Font="ArialBold"
  347. wtl.FontSize="Size14"
  348. wtl.Text="iBuildTools Settings Window"
  349. wtl.TextColor3=Color3.new(1,1,1)
  350. wtl.TextStrokeColor3=Color3.new(0,0,0)
  351. wtl.TextStrokeTransparency=0
  352. wtl.TextXAlignment="Left"
  353. clk=Instance.new("TextLabel",frw)
  354. clk.Name="iBClick"
  355. clk.BackgroundTransparency=1
  356. clk.Size=UDim2.new(1,0,0.330000013,0)
  357. clk.ZIndex=10
  358. clk.Font="ArialBold"
  359. clk.FontSize="Size12"
  360. clk.TextColor3=Color3.new(1,1,1)
  361. clk.Text=" - Click Mode : "
  362. clk.TextStrokeColor3=Color3.new(0,0,0)
  363. clk.TextStrokeTransparency=0
  364. clk.TextXAlignment="Left"
  365. ray=Instance.new("TextLabel",frw)
  366. ray.Name="iBRay"
  367. ray.BackgroundTransparency=1
  368. ray.Position=UDim2.new(0,0,0.330000013,0)
  369. ray.Size=UDim2.new(1,0,0.330000013,0)
  370. ray.ZIndex=10
  371. ray.Font="ArialBold"
  372. ray.FontSize="Size12"
  373. ray.TextColor3=Color3.new(1,1,1)
  374. ray.Text=" - Ray Mode : "
  375. ray.TextStrokeColor3=Color3.new(0,0,0)
  376. ray.TextStrokeTransparency=0
  377. ray.TextXAlignment="Left"
  378. rfc=Instance.new("TextLabel",frw)
  379. rfc.Name="iBRayFunction"
  380. rfc.BackgroundTransparency=1
  381. rfc.Position=UDim2.new(0,0,0.660000013,0)
  382. rfc.Size=UDim2.new(1,0,0.330000013,0)
  383. rfc.ZIndex=10
  384. rfc.Font="ArialBold"
  385. rfc.FontSize="Size12"
  386. rfc.TextColor3=Color3.new(1,1,1)
  387. rfc.Text=" - Ray Function : "
  388. rfc.TextStrokeColor3=Color3.new(0,0,0)
  389. rfc.TextStrokeTransparency=0
  390. rfc.TextXAlignment="Left"
  391. ckb=Instance.new("TextButton",frw)
  392. ckb.Name="iBClickButton"
  393. ckb.Position=UDim2.new(0.400000006,0,0,0)
  394. ckb.Size=UDim2.new(0.600000024,0,0.330000013,0)
  395. ckb.ZIndex=10
  396. ckb.Selected=true
  397. ckb.Style="RobloxButtonDefault"
  398. ckb.Font="ArialBold"
  399. ckb.FontSize="Size12"
  400. ckb.Text="Enabled"
  401. ckb.TextColor3=Color3.new(0,1,0)
  402. ryb=Instance.new("TextButton",frw)
  403. ryb.Name="iBRayButton"
  404. ryb.Position=UDim2.new(0.400000006,0,0.330000013,0)
  405. ryb.Size=UDim2.new(0.600000024,0,0.330000013,0)
  406. ryb.Style="RobloxButton"
  407. ryb.ZIndex=10
  408. ryb.Font="ArialBold"
  409. ryb.FontSize="Size12"
  410. ryb.Text="Disabled"
  411. ryb.TextColor3=Color3.new(1,0,0)
  412. rfb=Instance.new("TextButton",frw)
  413. rfb.Name="iBRayFButton"
  414. rfb.Position=UDim2.new(0.400000006,0,0.660000013,0)
  415. rfb.Size=UDim2.new(0.600000024,0,0.330000013,0)
  416. rfb.Style="RobloxButtonDefault"
  417. rfb.ZIndex=10
  418. rfb.Font="ArialBold"
  419. rfb.FontSize="Size12"
  420. rfb.Text="Enable Propertie"
  421. rfb.TextColor3=Color3.new(0,1,0)
  422. end createGui()
  423. coroutine.resume(coroutine.create(function()
  424. while(mouse)and wait() do
  425. if(box)and(ray)then
  426. if(lvi)then
  427. lso.Visible=true
  428. else
  429. lso.Visible=false
  430. end
  431. if(md1==1)then
  432. if(clr)then
  433. if(mouse.Target~=nil)then
  434. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  435. box.Visible=true
  436. box.Parent=game:GetService('Workspace').CurrentCamera
  437. box.Adornee=mouse.Target
  438. if(md2==1)then
  439. box.Color=BrickColor.new("Bright red")
  440. elseif(md2==2)then
  441. if(mouse.Target.Anchored)then
  442. box.Color=BrickColor.new("Camo")
  443. else
  444. box.Color=BrickColor.new("Bright red")
  445. end
  446. elseif(md2==3)then
  447. if(mouse.Target.CanCollide)then
  448. box.Color=BrickColor.new("Camo")
  449. else
  450. box.Color=BrickColor.new("Bright red")
  451. end
  452. elseif(md2==4)then
  453. if(mouse.Target.Locked)then
  454. box.Color=BrickColor.new("Camo")
  455. else
  456. box.Color=BrickColor.new("Bright red")
  457. end
  458. elseif(md2==5)then
  459. box.Color=BrickColor.new("Bright blue")
  460. end
  461. end
  462. else
  463. box.Visible=false
  464. box.Parent=nil
  465. box.Adornee=nil
  466. end
  467. end
  468. elseif(md1==2)then
  469. lso.Point=mouse.Hit.p
  470. box.Visible=false
  471. box.Parent=nil
  472. box.Adornee=nil
  473. if(md2~=1)and(md2~=5)then
  474. if(md3==1)then
  475. lso.Color=BrickColor.new("Camo")
  476. elseif(md3==2)then
  477. lso.Color=BrickColor.new("Bright red")
  478. end
  479. elseif(md2==1)then
  480. if(cle)then
  481. lso.Color=BrickColor.new("Bright red")
  482. else
  483. lso.Color=BrickColor.new("Bright blue")
  484. end
  485. elseif(md2==5)then
  486. if(cle)then
  487. lso.Color=BrickColor.new("Bright red")
  488. else
  489. lso.Color=BrickColor.new("Bright blue")
  490. end
  491. end
  492. end
  493. end
  494. end
  495. end))
  496. function delDown()
  497. del_downFunc=mouse.Button1Down:connect(function()
  498. md2=1
  499. if(md2==1)then
  500. if(md1==1)then
  501. if(mouse.Target~=nil)then
  502. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  503. mouse.Target:remove()
  504. end
  505. end
  506. elseif(md1==2)then
  507. lvi=true
  508. lso.Parent=game:GetService('Workspace').CurrentCamera
  509. while(lvi)and wait() do
  510. if(mouse.Target~=nil)then
  511. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  512. mouse.Target:remove()
  513. cle=true
  514. wait(tme)
  515. cle=false
  516. else
  517. cle=false
  518. end
  519. else
  520. cle=false
  521. end
  522. end
  523. end
  524. end
  525. end)
  526. end
  527. function delUp()
  528. del_upFunc=mouse.Button1Up:connect(function()
  529. lvi=false
  530. cle=false
  531. lso.Parent=nil
  532. end)
  533. end
  534. function achDown()
  535. ach_downFunc=mouse.Button1Down:connect(function()
  536. md2=2
  537. if(md2==2)then
  538. if(md1==1)then
  539. if(mouse.Target~=nil)then
  540. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  541. if(mouse.Target.Anchored)then
  542. mouse.Target.Anchored=false
  543. else
  544. mouse.Target.Anchored=true
  545. end
  546. end
  547. end
  548. elseif(md1==2)then
  549. lvi=true
  550. lso.Parent=game:GetService('Workspace').CurrentCamera
  551. while(lvi)and wait() do
  552. if(mouse.Target~=nil)then
  553. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  554. if(md3==1)then
  555. mouse.Target.Anchored=true
  556. elseif(md3==2)then
  557. mouse.Target.Anchored=false
  558. end
  559. end
  560. end
  561. end
  562. end
  563. end
  564. end)
  565. end
  566. function achUp()
  567. ach_upFunc=mouse.Button1Up:connect(function()
  568. lvi=false
  569. lso.Parent=nil
  570. end)
  571. end
  572. function colDown()
  573. col_downFunc=mouse.Button1Down:connect(function()
  574. md2=3
  575. if(md2==3)then
  576. if(md1==1)then
  577. if(mouse.Target~=nil)then
  578. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  579. if(mouse.Target.CanCollide)then
  580. mouse.Target.CanCollide=false
  581. else
  582. mouse.Target.CanCollide=true
  583. end
  584. end
  585. end
  586. elseif(md1==2)then
  587. lvi=true
  588. lso.Parent=game:GetService('Workspace').CurrentCamera
  589. while(lvi)and wait() do
  590. if(mouse.Target~=nil)then
  591. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  592. if(md3==1)then
  593. mouse.Target.CanCollide=true
  594. elseif(md3==2)then
  595. mouse.Target.CanCollide=false
  596. end
  597. end
  598. end
  599. end
  600. end
  601. end
  602. end)
  603. end
  604. function colUp()
  605. col_upFunc=mouse.Button1Up:connect(function()
  606. lvi=false
  607. lso.Parent=nil
  608. end)
  609. end
  610. function lckDown()
  611. lck_downFunc=mouse.Button1Down:connect(function()
  612. md2=4
  613. if(md2==4)then
  614. if(md1==1)then
  615. if(mouse.Target~=nil)then
  616. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  617. if(mouse.Target.Locked)then
  618. mouse.Target.Locked=false
  619. else
  620. mouse.Target.Locked=true
  621. end
  622. end
  623. end
  624. elseif(md1==2)then
  625. lvi=true
  626. lso.Parent=game:GetService('Workspace').CurrentCamera
  627. while(lvi)and wait() do
  628. if(mouse.Target~=nil)then
  629. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  630. if(md3==1)then
  631. mouse.Target.Locked=true
  632. elseif(md3==2)then
  633. mouse.Target.Locked=false
  634. end
  635. end
  636. end
  637. end
  638. end
  639. end
  640. end)
  641. end
  642. function lckUp()
  643. lck_upFunc=mouse.Button1Up:connect(function()
  644. lvi=false
  645. lso.Parent=nil
  646. end)
  647. end
  648. function brkDown()
  649. brk_downFunc=mouse.Button1Down:connect(function()
  650. md2=5
  651. if(md2==5)then
  652. if(md1==1)then
  653. if(mouse.Target~=nil)then
  654. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  655. clr=false
  656. box.Color=BrickColor.new("Bright red")
  657. mouse.Target:BreakJoints()
  658. end
  659. end
  660. elseif(md1==2)then
  661. lvi=true
  662. lso.Parent=game:GetService('Workspace').CurrentCamera
  663. while(lvi)and wait() do
  664. if(mouse.Target~=nil)then
  665. if(mouse.Target:IsA("BasePart"))and(mouse.Target~=iOrb.Orb)or(mouse.Target.Name~="cParticle")or(mouse.Target.Name~="cParticle2")then
  666. mouse.Target:BreakJoints()
  667. cle=true
  668. else
  669. cle=true
  670. end
  671. else
  672. cle=false
  673. end
  674. end
  675. end
  676. end
  677. end)
  678. end
  679. function brkUp()
  680. brk_upFunc=mouse.Button1Up:connect(function()
  681. clr=true
  682. lvi=false
  683. cle=false
  684. end)
  685. end
  686. delDown()
  687. delUp()
  688. achDown()
  689. achUp()
  690. colDown()
  691. colUp()
  692. lckDown()
  693. lckUp()
  694. brkDown()
  695. brkUp()
  696. del.MouseButton1Click:connect(function()
  697. md2=1
  698. del_downFunc:disconnect()
  699. del_upFunc:disconnect()
  700. ach_downFunc:disconnect()
  701. ach_upFunc:disconnect()
  702. col_downFunc:disconnect()
  703. col_upFunc:disconnect()
  704. lck_downFunc:disconnect()
  705. lck_upFunc:disconnect()
  706. brk_downFunc:disconnect()
  707. brk_upFunc:disconnect()
  708. del.Style="RobloxButtonDefault"
  709. del.Selected=true
  710. ach.Style="RobloxButton"
  711. ach.Selected=false
  712. col.Style="RobloxButton"
  713. col.Selected=false
  714. lck.Style="RobloxButton"
  715. lck.Selected=false
  716. brk.Style="RobloxButton"
  717. brk.Selected=false
  718. delDown()
  719. delUp()
  720. end)
  721. ach.MouseButton1Click:connect(function()
  722. md2=2
  723. del_downFunc:disconnect()
  724. del_upFunc:disconnect()
  725. ach_downFunc:disconnect()
  726. ach_upFunc:disconnect()
  727. col_downFunc:disconnect()
  728. col_upFunc:disconnect()
  729. lck_downFunc:disconnect()
  730. lck_upFunc:disconnect()
  731. brk_downFunc:disconnect()
  732. brk_upFunc:disconnect()
  733. del.Style="RobloxButton"
  734. del.Selected=false
  735. ach.Style="RobloxButtonDefault"
  736. ach.Selected=true
  737. col.Style="RobloxButton"
  738. col.Selected=false
  739. lck.Style="RobloxButton"
  740. lck.Selected=false
  741. brk.Style="RobloxButton"
  742. brk.Selected=false
  743. achDown()
  744. achUp()
  745. end)
  746. col.MouseButton1Click:connect(function()
  747. md2=3
  748. del_downFunc:disconnect()
  749. del_upFunc:disconnect()
  750. ach_downFunc:disconnect()
  751. ach_upFunc:disconnect()
  752. col_downFunc:disconnect()
  753. col_upFunc:disconnect()
  754. lck_downFunc:disconnect()
  755. lck_upFunc:disconnect()
  756. brk_downFunc:disconnect()
  757. brk_upFunc:disconnect()
  758. del.Style="RobloxButton"
  759. del.Selected=false
  760. ach.Style="RobloxButton"
  761. ach.Selected=false
  762. col.Style="RobloxButtonDefault"
  763. col.Selected=true
  764. lck.Style="RobloxButton"
  765. lck.Selected=false
  766. brk.Style="RobloxButton"
  767. brk.Selected=false
  768. colDown()
  769. colUp()
  770. end)
  771. lck.MouseButton1Click:connect(function()
  772. md2=4
  773. del_downFunc:disconnect()
  774. del_upFunc:disconnect()
  775. ach_downFunc:disconnect()
  776. ach_upFunc:disconnect()
  777. col_downFunc:disconnect()
  778. col_upFunc:disconnect()
  779. lck_downFunc:disconnect()
  780. lck_upFunc:disconnect()
  781. brk_downFunc:disconnect()
  782. brk_upFunc:disconnect()
  783. del.Style="RobloxButton"
  784. del.Selected=false
  785. ach.Style="RobloxButton"
  786. ach.Selected=false
  787. col.Style="RobloxButton"
  788. col.Selected=false
  789. lck.Style="RobloxButtonDefault"
  790. lck.Selected=true
  791. brk.Style="RobloxButton"
  792. brk.Selected=false
  793. lckDown()
  794. lckUp()
  795. end)
  796. brk.MouseButton1Click:connect(function()
  797. md2=5
  798. del_downFunc:disconnect()
  799. del_upFunc:disconnect()
  800. ach_downFunc:disconnect()
  801. ach_upFunc:disconnect()
  802. col_downFunc:disconnect()
  803. col_upFunc:disconnect()
  804. lck_downFunc:disconnect()
  805. lck_upFunc:disconnect()
  806. brk_downFunc:disconnect()
  807. brk_upFunc:disconnect()
  808. del.Style="RobloxButton"
  809. del.Selected=false
  810. ach.Style="RobloxButton"
  811. ach.Selected=false
  812. col.Style="RobloxButton"
  813. col.Selected=false
  814. lck.Style="RobloxButton"
  815. lck.Selected=false
  816. brk.Style="RobloxButtonDefault"
  817. brk.Selected=true
  818. brkDown()
  819. brkUp()
  820. end)
  821. set.MouseButton1Click:connect(function()
  822. if(ste)then
  823. ste=false
  824. frs.Visible=false
  825. set.Style="RobloxButton"
  826. else
  827. ste=true
  828. frs.Visible=true
  829. set.Style="RobloxButtonDefault"
  830. end
  831. end)
  832. cls.MouseButton1Click:connect(function()
  833. ste=false
  834. frs.Visible=false
  835. set.Style="RobloxButton"
  836. end)
  837. ckb.MouseButton1Click:connect(function()
  838. md1=1
  839. ckb.Style="RobloxButtonDefault"
  840. ckb.Selected=true
  841. ckb.Text="Enabled"
  842. ckb.TextColor3=Color3.new(0,1,0)
  843. ryb.Style="RobloxButton"
  844. ryb.Selected=false
  845. ryb.Text="Disabled"
  846. ryb.TextColor3=Color3.new(1,0,0)
  847. end)
  848. ryb.MouseButton1Click:connect(function()
  849. md1=2
  850. ryb.Style="RobloxButtonDefault"
  851. ryb.Selected=true
  852. ryb.Text="Enabled"
  853. ryb.TextColor3=Color3.new(0,1,0)
  854. ckb.Style="RobloxButton"
  855. ckb.Selected=false
  856. ckb.Text="Disabled"
  857. ckb.TextColor3=Color3.new(1,0,0)
  858. end)
  859. rfb.MouseButton1Click:connect(function()
  860. if(md3==1)then
  861. md3=2
  862. rfb.Style="RobloxButton"
  863. rfb.Text="Disable Propertie"
  864. rfb.TextColor3=Color3.new(1,0,0)
  865. elseif(md3==2)then
  866. md3=1
  867. rfb.Style="RobloxButtonDefault"
  868. rfb.Text="Enable Propertie"
  869. rfb.TextColor3=Color3.new(0,1,0)
  870. end
  871. end)
  872. end)
  873. bin.Deselected:connect(function()
  874. clr=false
  875. if(box~=nil)then
  876. box:Destroy()
  877. end
  878. if(lso~=nil)then
  879. lso:Destroy()
  880. end
  881. if(gui~=nil)then
  882. gui:Destroy()
  883. end
  884. end)
  885. plr=plr.Name
  886. Output([[Gave v3rmtools to ]] .. plr .. "")
  887. end
  888. )
  889.  
  890. function NewS(sourcevalue, parent)
  891. if game.PlaceId == 21053279 or game.PlaceId == 21053219 then
  892. NS(sourcevalue, parent)
  893. else
  894. if newScript then
  895. local scr = newScript:Clone()
  896. if scr:FindFirstChild(SourceName) then
  897. if scr:FindFirstChild(SourceName) then
  898. scr:FindFirstChild(SourceName).Value = sourcevalue
  899. scr.Parent = parent
  900. wait(0.5)
  901. scr.Disabled = false
  902. return scr
  903. end
  904. end
  905. end
  906. end
  907. end
  908.  
  909. sorcery = script:Clone()
  910.  
  911. function NewLS(sourcevalue, parent)
  912. if game.PlaceId == 21053279 or game.PlaceId == 21053219 then
  913. NLS(sourcevalue, parent)
  914. else
  915. local NS = sorcery:Clone()
  916. NS.Name = "NewLocal"
  917. local Source = NS:findFirstChild(SourceName)
  918. if Source == nil then Instance.new('StringValue',NS).Name = SourceName end Source = NS:findFirstChild(SourceName)
  919. Source.Value = sourcevalue
  920. NS.Parent = parent
  921. NS.Disabled = false
  922. return NS
  923. end
  924. end
  925.  
  926. Clothes = {}
  927.  
  928. for _,Item in pairs(LocalPlayer.Character:GetChildren()) do
  929. if Item:IsA('CharacterMesh') or Item:IsA('Hat') or Item:IsA('Shirt') or Item:IsA('Pants') then
  930. table.insert(Clothes,Item:Clone())
  931. end
  932. end
  933. for i,v in pairs(LocalPlayer.Character:GetChildren()) do
  934. if v:IsA("BodyColors") then
  935. body = v
  936. torsocolor = body.TorsoColor
  937. leftlegcolor = body.LeftLegColor
  938. rightlegcolor = body.RightLegColor
  939. leftarmcolor = body.LeftArmColor
  940. rightarmcolor = body.RightArmColor
  941. headcolor = body.HeadColor
  942. end
  943. end
  944.  
  945. mouse = LocalPlayer:GetMouse()
  946.  
  947. mouse.KeyDown:connect(function(key)
  948. if key == "z" then
  949. game:service'StarterGui':SetCoreGuiEnabled(4, true)
  950. end
  951. end)
  952.  
  953. AddCmd("chat;on/off","chat","ChatGUI on/off",
  954. function(plrs, msg)
  955. if msg == "off" then
  956. chatgui = false
  957. elseif msg == "on" then
  958. chatgui = true
  959. end
  960. end
  961. )
  962.  
  963. AddCmd("Music","music","Add some beatz",
  964. function(plrs, msg)
  965. local keypos = msg:find(key)
  966. local id = msg
  967. local name = math.random(999999999)
  968. for i, v in pairs(game:GetService('Workspace'):children()) do if v:IsA("Sound") then v:Destroy() end end
  969. for i, v in pairs(game:GetService('Players').LocalPlayer:children()) do if v:IsA("Sound") then v:Destroy() end end
  970. local pitch = 1
  971. local s = Instance.new("Sound", game:GetService('Players').LocalPlayer) s.SoundId = "http://www.roblox.com/asset/?id=" .. id
  972. s.Volume = 1
  973. s.Name=([[]]..name)
  974. s.Pitch = pitch
  975. s.Looped = true
  976. s.archivable = false
  977. repeat s:Play() wait() s:Stop() wait() s:Play() until s.IsPlaying
  978. end
  979. )
  980.  
  981. AddCmd("Brightness","brightness","Change the brightness",
  982. function(plrs, msg)
  983. local keypos = msg:find(key)
  984. local value = msg
  985. game.Lighting.Brightness=value
  986. end
  987. )
  988.  
  989. -- don't question how i done this xD
  990. AddCmd("Ambient","ambient","Change the ambient",
  991. function(plrs, msg)
  992. local keypos = msg:find(key)
  993. local value = msg:sub(1,keypos-1)
  994. local chk2 = msg:sub(keypos+1):find(";") + keypos
  995. game.Lighting.Ambient = Color3.fromRGB(value,msg:sub(keypos+1,chk2-1),msg:sub(chk2+1))
  996. end
  997. )
  998.  
  999. -- don't question how i done this xD
  1000. AddCmd("FogColor","fogcolor","Change the fogcolor",
  1001. function(plrs, msg)
  1002. local keypos = msg:find(key)
  1003. local value = msg:sub(1,keypos-1)
  1004. local chk2 = msg:sub(keypos+1):find(";") + keypos
  1005. game.Lighting.FogColor = Color3.fromRGB(value,msg:sub(keypos+1,chk2-1),msg:sub(chk2+1))
  1006. end
  1007. )
  1008.  
  1009. AddCmd("Fogend","fogend","Change the fogend",
  1010. function(plrs, msg)
  1011. local keypos = msg:find(key)
  1012. local value = msg
  1013. game.Lighting.FogEnd=value
  1014. end
  1015. )
  1016.  
  1017. AddCmd("Fogstart","fogstart","Change the fogstart",
  1018. function(plrs, msg)
  1019. local keypos = msg:find(key)
  1020. local value = msg
  1021. game.Lighting.FogStart=value
  1022. end
  1023. )
  1024.  
  1025. AddCmd("Time","time","Change the time",
  1026. function(plrs, msg)
  1027. local keypos = msg:find(key)
  1028. local value = msg
  1029. game.Lighting.TimeOfDay=value
  1030. end
  1031. )
  1032.  
  1033. AddCmd("Gravity","grav","Change the player's gravity",
  1034. function(plrs, msg)
  1035. local keypos = msg:find(key)
  1036. local targPlayers = msg:sub(1,keypos-1)
  1037. local plrs = getPlayers(targPlayers)
  1038. local speed = msg:sub(tonumber(keypos+1))
  1039. for _,v in pairs(plrs) do
  1040. coroutine.resume(coroutine.create(function()
  1041. if v.Character ~= nil and v.Character:findFirstChild("Humanoid") and v.Character:FindFirstChild("Torso") then
  1042. for a, frc in pairs(v.Character.Torso:children()) do if frc.Name == "BFRC" then frc:Destroy() end end
  1043. local frc = Instance.new("BodyForce", v.Character.Torso) frc.Name = "BFRC" frc.force = Vector3.new(0,0,0)
  1044. for a, prt in pairs(v.Character:children()) do if prt:IsA("BasePart") then frc.force = frc.force - Vector3.new(0,prt:GetMass()*speed,0) elseif prt:IsA("Hat") then frc.force = frc.force - Vector3.new(0,prt.Handle:GetMass()*speed,0) end end
  1045. end
  1046. end))
  1047. end
  1048. end
  1049. )
  1050.  
  1051. AddCmd("Health","health","Sets a player's health",
  1052. function(plrs, msg)
  1053. local keypos = msg:find(key)
  1054. local targPlayers = msg:sub(1,keypos-1)
  1055. local plrs = getPlayers(targPlayers)
  1056. local speed = msg:sub(tonumber(keypos+1))
  1057. if speed=="math.huge" then
  1058. speed = math.huge
  1059. end
  1060. for _,v in pairs(plrs) do
  1061. coroutine.resume(coroutine.create(function()
  1062. if v.Character ~= nil and v.Character:findFirstChild("Humanoid") ~= nil then
  1063. v.Character.Humanoid.MaxHealth=speed
  1064. v.Character.Humanoid.Health=speed
  1065. end
  1066. end))
  1067. end
  1068. end
  1069. )
  1070.  
  1071. AddCmd("Damage","damage","Damage a player",
  1072. function(plrs, msg)
  1073. local keypos = msg:find(key)
  1074. local targPlayers = msg:sub(1,keypos-1)
  1075. local plrs = getPlayers(targPlayers)
  1076. local speed = msg:sub(tonumber(keypos+1))
  1077. for _,v in pairs(plrs) do
  1078. coroutine.resume(coroutine.create(function()
  1079. if v.Character ~= nil and v.Character:findFirstChild("Humanoid") ~= nil then
  1080. v.Character.Humanoid:TakeDamage(speed)
  1081. end
  1082. end))
  1083. end
  1084. end
  1085. )
  1086.  
  1087. AddCmd("Set WalkSpeed","ws","Set the walkspeed of player",
  1088. function(plrs, msg)
  1089. local keypos = msg:find(key)
  1090. local targPlayers = msg:sub(1,keypos-1)
  1091. local plrs = getPlayers(targPlayers)
  1092. local speed = msg:sub(tonumber(keypos+1))
  1093. for _,v in pairs(plrs) do
  1094. if v.Character ~= nil and v.Character:findFirstChild("Humanoid") ~= nil then
  1095. v.Character:findFirstChild("Humanoid").WalkSpeed = speed
  1096. end
  1097. end
  1098. end
  1099. )
  1100.  
  1101. AddCmd("Teleport to playr","tp","Teleport to the player",
  1102. function(plrs, msg)
  1103. local keypos = msg:find(key)
  1104. local targPlayers = msg:sub(1,keypos-1)
  1105. local speed = msg:sub(tonumber(keypos+1))
  1106. local plrs = getPlayers(targPlayers)
  1107. local plrs2 = getPlayers(speed)
  1108. for _,v2 in pairs(plrs2) do
  1109. for _,v in pairs(plrs) do
  1110. if v.Character ~= nil and v.Character:findFirstChild("Humanoid") ~= nil then
  1111. if v2.Character ~= nil and v2.Character:findFirstChild("Humanoid") ~= nil then
  1112. v.Character.Torso.Anchored=true
  1113. wait(0.1)
  1114. v.Character.Torso.CFrame=v2.Character.Torso.CFrame+Vector3.new(math.random(-1, 1),0,math.random(-1, 1))
  1115. wait(0.1)
  1116. v.Character.Torso.Anchored=false
  1117. v=v.Name
  1118. v2=v2.Name
  1119. Output([[Teleported ]] .. v .. [[ to ]] .. v2 .."")
  1120. end
  1121. end
  1122. end
  1123. end
  1124. end
  1125. )
  1126.  
  1127. AddCmd("Gear","gear","Give a player a gear",
  1128. function(plrs, msg)
  1129. local keypos = msg:find(key)
  1130. local targPlayers = msg:sub(1,keypos-1)
  1131. local plr = getPlayers(targPlayers)
  1132. local id = msg:sub(tonumber(keypos+1))
  1133. for _,v in pairs(plr) do
  1134. coroutine.resume(coroutine.create(function()
  1135. if v and v:findFirstChild("Backpack") then
  1136. local obj = game:service("InsertService"):LoadAsset(id)
  1137. for a,g in pairs(obj:children()) do if g:IsA("Tool") or g:IsA("HopperBin") then g.Parent = v.Backpack end end
  1138. obj:Destroy()
  1139. end
  1140. end))
  1141. end
  1142. end
  1143. )
  1144.  
  1145. AddCmd("Hat","hat","Give a player a nice hat",
  1146. function(plrs, msg)
  1147. local keypos = msg:find(key)
  1148. local targPlayers = msg:sub(1,keypos-1)
  1149. local plr = getPlayers(targPlayers)
  1150. local id = msg:sub(tonumber(keypos+1))
  1151. for _,v in pairs(plr) do
  1152. coroutine.resume(coroutine.create(function()
  1153. if v and v.Character then
  1154. local obj = game:service("InsertService"):LoadAsset(id)
  1155. for a,hat in pairs(obj:children()) do if hat:IsA("Hat") then hat.Parent = v.Character end end
  1156. obj:Destroy()
  1157. end
  1158. end))
  1159. end
  1160. end
  1161. )
  1162.  
  1163. AddCmd("UnName","unname","Removes a player's name",
  1164. function(plrs)
  1165. for _, plr in pairs(plrs) do
  1166. if plr and plr.Character then
  1167. if plr and plr.Character and plr.Character:findFirstChild("Head") then
  1168. for a, mod in pairs(plr.Character:children()) do if mod:findFirstChild("NameTag") then plr.Character.Head.Transparency = 0 mod:Destroy() end end
  1169. end
  1170. end
  1171. end
  1172. end
  1173. )
  1174.  
  1175. AddCmd("Name","name","Name a player",
  1176. function(plrs, msg)
  1177. local keypos = msg:find(key)
  1178. local targPlayers = msg:sub(1,keypos-1)
  1179. local plr = getPlayers(targPlayers)
  1180. local name = msg:sub(tonumber(keypos+1))
  1181. for _,v in pairs(plr) do
  1182. coroutine.resume(coroutine.create(function()
  1183. if v and v.Character and v.Character:findFirstChild("Head") then
  1184. for a, mod in pairs(v.Character:GetChildren()) do if mod:findFirstChild("NameTag") then v.Character.Head.Transparency = 0 mod:Destroy() end end
  1185. local char = v.Character
  1186. local mod = Instance.new("Model", char)
  1187. mod.Name = [[]].. name
  1188. local cl = char.Head:Clone() cl.Parent = mod
  1189. local hum = Instance.new("Humanoid", mod)
  1190. hum.Name = "NameTag" hum.MaxHealth = 0
  1191. hum.Health = 0
  1192. local weld = Instance.new("Weld", cl) weld.Part0 = cl weld.Part1 = char.Head
  1193. char.Head.Transparency = 1
  1194. end
  1195. end))
  1196. end
  1197. end
  1198. )
  1199.  
  1200. AddCmd("BuildTools","btools","Gives a player building tools",
  1201. function(plrs)
  1202. for _, plr in pairs(plrs) do
  1203. Output([[Gave btools to ]] .. plr.Name .. "")
  1204. coroutine.resume(coroutine.create(function()
  1205. if plr and plr:findFirstChild("Backpack") then
  1206. local t1 = Instance.new("HopperBin", plr.Backpack) t1.Name = "Move" t1.BinType = "GameTool"
  1207. local t2 = Instance.new("HopperBin", plr.Backpack) t2.Name = "Clone" t2.BinType = "Clone"
  1208. local t3 = Instance.new("HopperBin", plr.Backpack) t3.Name = "Delete" t3.BinType = "Hammer"
  1209. local t4= Instance.new("HopperBin", plr.Backpack) t4.Name = "Resize"
  1210. sb= [[]]
  1211. hs= [[]]
  1212. pdist= [[]]
  1213. t4.Selected:connect(function(mouse)
  1214. if not mouse then return end
  1215. sb = Instance.new("SelectionBox", plr.PlayerGui) sb.Color = BrickColor.new("Bright blue") sb.Adornee = nil
  1216. hs = Instance.new("Handles", plr.PlayerGui) hs.Color = BrickColor.new("Bright blue") hs.Adornee = nil
  1217. mouse.Button1Down:connect(function() if not mouse.Target or mouse.Target.Locked then sb.Adornee = nil hs.Adornee = nil else sb.Adornee = mouse.Target hs.Adornee = mouse.Target hs.Faces = mouse.Target.ResizeableFaces end end)
  1218. hs.MouseDrag:connect(function(old,dist) if hs.Adornee and math.abs(dist-pdist) >= hs.Adornee.ResizeIncrement then if hs.Adornee:Resize(old, math.floor((dist-pdist)/ hs.Adornee.ResizeIncrement + .5) * hs.Adornee.ResizeIncrement) then pdist = dist end end end)
  1219. hs.MouseButton1Down:connect(function() pdist = 0 end)
  1220. end)
  1221.  
  1222. t4.Selected:connect(function() sb:Destroy() hs:Destroy() end) t4.Disabled = false
  1223. end
  1224. end))
  1225. end
  1226. end
  1227. )
  1228.  
  1229. AddCmd("Freeze","freeze","Brrrrr....",
  1230. function(plrs)
  1231. for _, v in pairs(plrs) do
  1232. if v and v.Character then
  1233. coroutine.resume(coroutine.create(function()
  1234. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1235. for a, obj in pairs(v.Character:children()) do
  1236. if obj:IsA("BasePart") then obj.Anchored = true end v.Character.Humanoid.WalkSpeed = 0
  1237. end
  1238. end
  1239. end))
  1240. end
  1241. end
  1242. end
  1243. )
  1244.  
  1245. AddCmd("Thaw","thaw","Thaws a player",
  1246. function(plrs)
  1247. for _, v in pairs(plrs) do
  1248. if v and v.Character then
  1249. coroutine.resume(coroutine.create(function()
  1250. if v and v.Character and v.Character:findFirstChild("Humanoid") then
  1251. for a, obj in pairs(v.Character:children()) do
  1252. if obj:IsA("BasePart") then obj.Anchored = false end v.Character.Humanoid.WalkSpeed = 16
  1253. end
  1254. end
  1255. end))
  1256. end
  1257. end
  1258. end
  1259. )
  1260.  
  1261. AddCmd("Invisible","invis","Spooky ghost",
  1262. function(plrs)
  1263. for _, v in pairs(plrs) do
  1264. coroutine.resume(coroutine.create(function()
  1265. if v and v.Character then
  1266. for a, obj in pairs(v.Character:children()) do
  1267. if obj:IsA("BasePart") then obj.Transparency = 1 if obj:findFirstChild("face") then obj.face.Transparency = 1 end elseif obj:IsA("Hat") and obj:findFirstChild("Handle") then obj.Handle.Transparency = 1 end
  1268. end
  1269. end
  1270. end))
  1271. end
  1272. end
  1273. )
  1274.  
  1275. AddCmd("Visible","visible","Makes player visible",
  1276. function(plrs)
  1277. for _, v in pairs(plrs) do
  1278. coroutine.resume(coroutine.create(function()
  1279. if v and v.Character then
  1280. for a, obj in pairs(v.Character:GetChildren()) do
  1281. if obj:IsA("BasePart") then obj.Transparency = 0 if obj.Name=="HumanoidRootPart" then obj.Transparency=1 end if obj:findFirstChild("face") then obj.face.Transparency = 0 end elseif obj:IsA("Hat") and obj:findFirstChild("Handle") then obj.Handle.Transparency = 0 end
  1282. end
  1283. end
  1284. end))
  1285. end
  1286. end
  1287. )
  1288.  
  1289. AddCmd("Explode","explode","Boom boom xd",
  1290. function(plrs)
  1291. for _, v in pairs(plrs) do
  1292. coroutine.resume(coroutine.create(function()
  1293. if v and v.Character and v.Character:findFirstChild("Torso") then
  1294. local ex = Instance.new("Explosion", game:GetService('Workspace')) ex.Position = v.Character.Torso.Position
  1295. end
  1296. end))
  1297. end
  1298. end
  1299. )
  1300.  
  1301. AddCmd("Fire","fire","420blazeit",
  1302. function(plrs)
  1303. for _, v in pairs(plrs) do
  1304. coroutine.resume(coroutine.create(function()
  1305. if v and v.Character and v.Character:findFirstChild("Torso") then
  1306. local cl = Instance.new("Fire", v.Character.Torso)
  1307. end
  1308. end))
  1309. end
  1310. end
  1311. )
  1312.  
  1313. AddCmd("UnFire","unfire","Remove fire",
  1314. function(plrs)
  1315. for _, v in pairs(plrs) do
  1316. coroutine.resume(coroutine.create(function()
  1317. if v and v.Character and v.Character:findFirstChild("Torso") then
  1318. for z, cl in pairs(v.Character.Torso:children()) do if cl:IsA("Fire") then cl:Destroy() end end
  1319. end
  1320. end))
  1321. end
  1322. end
  1323. )
  1324.  
  1325. AddCmd("Smoke","smoke","woo smokey bacon",
  1326. function(plrs)
  1327. for _, v in pairs(plrs) do
  1328. coroutine.resume(coroutine.create(function()
  1329. if v and v.Character and v.Character:findFirstChild("Torso") then
  1330. local cl = Instance.new("Smoke", v.Character.Torso)
  1331. end
  1332. end))
  1333. end
  1334. end
  1335. )
  1336.  
  1337. AddCmd("Unsmoke","unsmoke","Remove smoke",
  1338. function(plrs)
  1339. for _, v in pairs(plrs) do
  1340. coroutine.resume(coroutine.create(function()
  1341. if v and v.Character and v.Character:findFirstChild("Torso") then
  1342. for z, cl in pairs(v.Character.Torso:children()) do if cl:IsA("Smoke") then cl:Destroy() end end
  1343. end
  1344. end))
  1345. end
  1346. end
  1347. )
  1348.  
  1349. AddCmd("Sparkles","sparkles","oo sparkly",
  1350. function(plrs)
  1351. for _, v in pairs(plrs) do
  1352. coroutine.resume(coroutine.create(function()
  1353. if v and v.Character and v.Character:findFirstChild("Torso") then
  1354. local cl = Instance.new("Sparkles", v.Character.Torso)
  1355. end
  1356. end))
  1357. end
  1358. end
  1359. )
  1360.  
  1361. AddCmd("Unsparkle","unsparkle","Remove sparkles",
  1362. function(plrs)
  1363. for _, v in pairs(plrs) do
  1364. coroutine.resume(coroutine.create(function()
  1365. if v and v.Character and v.Character:findFirstChild("Torso") then
  1366. for z, cl in pairs(v.Character.Torso:children()) do if cl:IsA("Sparkles") then cl:Destroy() end end
  1367. end
  1368. end))
  1369. end
  1370. end
  1371. )
  1372.  
  1373. AddCmd("Removetools","removetools","Removes a player's tools",
  1374. function(plrs)
  1375. for _, v in pairs(plrs) do
  1376. if v and v.Character then
  1377. coroutine.resume(coroutine.create(function()
  1378. if v and v.Character and v:findFirstChild("Backpack") then
  1379. for a, tool in pairs(v.Character:children()) do if tool:IsA("Tool") or tool:IsA("HopperBin") then tool:Destroy() end end
  1380. for a, tool in pairs(v.Backpack:children()) do if tool:IsA("Tool") or tool:IsA("HopperBin") then tool:Destroy() end end
  1381. end
  1382. end))
  1383. end
  1384. end
  1385. end
  1386. )
  1387.  
  1388. AddCmd("Lock","lock","Locks a player",
  1389. function(plrs)
  1390. for _, v in pairs(plrs) do
  1391. coroutine.resume(coroutine.create(function()
  1392. if v and v.Character then
  1393. for a, obj in pairs(v.Character:children()) do
  1394. if obj:IsA("BasePart") then obj.Locked = true elseif obj:IsA("Hat") and obj:findFirstChild("Handle") then obj.Handle.Locked = true end
  1395. end
  1396. end
  1397. end))
  1398. end
  1399. end
  1400. )
  1401.  
  1402. AddCmd("Blind","blind","Blind a player",
  1403. function(plrs)
  1404. for _, v in pairs(plrs) do
  1405. local function popup()
  1406. local g=Instance.new('ScreenGui')
  1407. local z=Instance.new('ImageLabel', g)
  1408. z.BackgroundTransparency = 0
  1409. z.BackgroundColor3=Color3.fromRGB(0,0,0)
  1410. z.Image='rbxassetid://0'
  1411. z.Size=UDim2.new(50,0,50,0)
  1412. z.Position=UDim2.new(0, 0, 0, 0)
  1413. b=Instance.new('TextLabel', g)
  1414. b.ZIndex=5000000
  1415. return g
  1416. end
  1417.  
  1418. local giveGUI = function(plr, g)
  1419. if _G.Spray == nil then
  1420. _G.Spray = game.InsertService:LoadAsset(80576967)
  1421. end
  1422. local spray = _G.Spray:WaitForChild('Spray'):Clone()
  1423. spray.Parent = game:GetService('Workspace')
  1424. spray.SprayGui:Remove()
  1425. local gClone = g:Clone()
  1426. gClone.Parent = spray
  1427. gClone.Name = 'SprayGui'
  1428. local f = Instance.new('Frame', gClone)
  1429. f.Visible = false
  1430. local ff = Instance.new('Frame', f)
  1431. ff.Visible = false
  1432. local fff = Instance.new('TextBox', ff)
  1433. fff.Visible = false
  1434. v.Character.Humanoid:EquipTool(spray)
  1435. game:service('Debris'):AddItem(spray, 1)
  1436. end
  1437. if v:FindFirstChild("PlayerGui") then
  1438. giveGUI(v, popup())
  1439. end
  1440. end
  1441. end
  1442. )
  1443.  
  1444. AddCmd("Unlock","unlock","Unlocks a player",
  1445. function(plrs)
  1446. for _, v in pairs(plrs) do
  1447. coroutine.resume(coroutine.create(function()
  1448. if v and v.Character then
  1449. for a, obj in pairs(v.Character:children()) do
  1450. if obj:IsA("BasePart") then obj.Locked = false elseif obj:IsA("Hat") and obj:findFirstChild("Handle") then obj.Handle.Locked = false end
  1451. end
  1452. end
  1453. end))
  1454. end
  1455. end
  1456. )
  1457.  
  1458. AddCmd("Sword","sword","Slashy slash cutty cut >:D",
  1459. function(plrs)
  1460. for _, v in pairs(plrs) do
  1461. coroutine.resume(coroutine.create(function()
  1462. if v and v:findFirstChild("Backpack") then
  1463. local sword = Instance.new("Tool", v.Backpack) sword.Name = "Sword" sword.TextureId = "rbxasset://Textures/Sword128.png"
  1464. sword.GripForward = Vector3.new(-1,0,0)
  1465. sword.GripPos = Vector3.new(0,0,-1.5)
  1466. sword.GripRight = Vector3.new(0,1,0)
  1467. sword.GripUp = Vector3.new(0,0,1)
  1468. local handle = Instance.new("Part", sword) handle.Name = "Handle" handle.FormFactor = "Plate" handle.Size = Vector3.new(1,.8,4) handle.TopSurface = 0 handle.BottomSurface = 0
  1469. local msh = Instance.new("SpecialMesh", handle) msh.MeshId = "rbxasset://fonts/sword.mesh" msh.TextureId = "rbxasset://textures/SwordTexture.png"
  1470. repeat wait() until v and v.Character and v.Character:findFirstChild("Humanoid")
  1471. local Damage = 15
  1472. local SlashSound = Instance.new("Sound", handle)
  1473. SlashSound.SoundId = "rbxasset://sounds\\swordslash.wav"
  1474. SlashSound.Volume = 1
  1475. local LungeSound = Instance.new("Sound", handle)
  1476. LungeSound.SoundId = "rbxasset://sounds\\swordlunge.wav"
  1477. LungeSound.Volume = 1
  1478. local UnsheathSound = Instance.new("Sound", handle)
  1479. UnsheathSound.SoundId = "rbxasset://sounds\\unsheath.wav"
  1480. UnsheathSound.Volume = 1
  1481. local last = 0
  1482. handle.Touched:connect(function(hit)
  1483. if hit and hit.Parent and hit.Parent:findFirstChild("Humanoid") and game:GetService('Players'):findFirstChild(hit.Parent.Name) and v.Character.Humanoid.Health > 0 and hit.Parent.Humanoid ~= v.Character.Humanoid then
  1484. local tag = Instance.new("ObjectValue", hit.Parent.Humanoid) tag.Value = plr1 tag.Name = "creator" game:service("Debris"):AddItem(tag, 3)
  1485. hit.Parent.Humanoid:TakeDamage(Damage)
  1486. end
  1487. end)
  1488. sword.Activated:connect(function()
  1489. if not sword.Enabled or v.Character.Humanoid.Health <= 0 then return end
  1490. sword.Enabled = false
  1491. local tick = game:service("RunService").Stepped:wait()
  1492. if tick - last <= .2 then
  1493. LungeSound:play()
  1494. local lunge = Instance.new("StringValue", sword) lunge.Name = "toolanim" lunge.Value = "Lunge"
  1495. local frc = Instance.new("BodyVelocity", v.Character.Torso) frc.Name = "SwordForce" frc.velocity = Vector3.new(0,10,0)
  1496. wait(.2)
  1497. sword.GripForward = Vector3.new(0,0,1)
  1498. sword.GripRight = Vector3.new(0,-1,0)
  1499. sword.GripUp = Vector3.new(-1,0,0)
  1500. wait(.3)
  1501. frc:Destroy() wait(.5)
  1502. sword.GripForward = Vector3.new(-1,0,0)
  1503. sword.GripRight = Vector3.new(0,1,0)
  1504. sword.GripUp = Vector3.new(0,0,1)
  1505. else
  1506. SlashSound:play()
  1507. local slash = Instance.new("StringValue", sword) slash.Name = "toolanim" slash.Value = "Slash"
  1508. end
  1509. last = tick
  1510. sword.Enabled = true
  1511. end)
  1512. sword.Equipped:connect(function(mouse)
  1513. for i,vee in pairs(v.Character.Torso:children()) do if vee.Name == "SwordForce" then v:Destroy() end end
  1514. UnsheathSound:play()
  1515. sword.Enabled = true
  1516. if not mouse then return end
  1517. mouse.Icon = "http://www.roblox.com/asset/?id=103593352"
  1518. end)
  1519. end
  1520. end))
  1521. end
  1522. end
  1523. )
  1524.  
  1525. AddCmd("Fly","fly","Lets a player fly",
  1526. function(plrs)
  1527. for _, plr in pairs(plrs) do
  1528. if plr and plr.Character then
  1529. plr=plr.Name
  1530. Output([[]].. plr ..[[ is soaring to the heavens!]])
  1531. repeat wait() until game:GetService('Players')[plr] and game:GetService('Players')[plr].Character and game:GetService('Players')[plr].Character:findFirstChild("Torso") and game:GetService('Players')[plr].Character:findFirstChild("Humanoid")
  1532. local mouse = game:GetService('Players')[plr]:GetMouse()
  1533. repeat wait() until mouse
  1534. local plr = game:GetService('Players')[plr]
  1535. local torso = plr.Character.Torso
  1536. local flying = true
  1537. local deb = true
  1538. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  1539. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1540. local maxspeed = 50
  1541. local speed = 0
  1542. function Fly()
  1543. local bg = Instance.new("BodyGyro", torso)
  1544. bg.P = 9e4
  1545. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1546. bg.cframe = torso.CFrame
  1547. local bv = Instance.new("BodyVelocity", torso)
  1548. bv.velocity = Vector3.new(0,0.1,0)
  1549. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1550. repeat wait()
  1551. plr.Character.Humanoid.PlatformStand = true
  1552. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  1553. speed = speed+.5+(speed/maxspeed)
  1554. if speed > maxspeed then
  1555. speed = maxspeed
  1556. end
  1557. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  1558. speed = speed-1
  1559. if speed < 0 then
  1560. speed = 0
  1561. end
  1562. end
  1563. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  1564. bv.velocity = ((game:GetService('Workspace').CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game:GetService('Workspace').CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game:GetService('Workspace').CurrentCamera.CoordinateFrame.p))*speed
  1565. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  1566. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  1567. bv.velocity = ((game:GetService('Workspace').CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game:GetService('Workspace').CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game:GetService('Workspace').CurrentCamera.CoordinateFrame.p))*speed
  1568. else
  1569. bv.velocity = Vector3.new(0,0.1,0)
  1570. end
  1571. bg.cframe = game:GetService('Workspace').CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  1572. until not flying
  1573. ctrl = {f = 0, b = 0, l = 0, r = 0}
  1574. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1575. speed = 0
  1576. bg:Destroy()
  1577. bv:Destroy()
  1578. plr.Character.Humanoid.PlatformStand = false
  1579. end
  1580. mouse.KeyDown:connect(function(key)
  1581. if key:lower() == "e" then
  1582. if flying then flying = false
  1583. else
  1584. flying = true
  1585. Fly()
  1586. end
  1587. elseif key:lower() == "w" then
  1588. ctrl.f = 1
  1589. elseif key:lower() == "s" then
  1590. ctrl.b = -1
  1591. elseif key:lower() == "a" then
  1592. ctrl.l = -1
  1593. elseif key:lower() == "d" then
  1594. ctrl.r = 1
  1595. end
  1596. end)
  1597. mouse.KeyUp:connect(function(key)
  1598. if key:lower() == "w" then
  1599. ctrl.f = 0
  1600. elseif key:lower() == "s" then
  1601. ctrl.b = 0
  1602. elseif key:lower() == "a" then
  1603. ctrl.l = 0
  1604. elseif key:lower() == "d" then
  1605. ctrl.r = 0
  1606. end
  1607. end)
  1608. Fly()
  1609. end
  1610. end
  1611. end
  1612. )
  1613.  
  1614. Bad_Char = ""
  1615.  
  1616. function chatgui(msg)
  1617. if not chatgui then return end
  1618. if probemode == false then
  1619. if LocalPlayer.Character:findFirstChild("Head") then
  1620. mainPart = LocalPlayer.Character:findFirstChild("Head")
  1621. end
  1622. end
  1623. if probemode == true then
  1624. if game:GetService('Workspace'):findFirstChild(LocalPlayer.Name.."'s probe") then
  1625. mainPart = game:GetService('Workspace'):findFirstChild(LocalPlayer.Name.."'s probe")
  1626. end
  1627. end
  1628. local bg = Instance.new("BillboardGui", mainPart)
  1629. bg.Adornee = mainPart
  1630. bg.Name = "CHATGUIBG"
  1631. bg.Size = UDim2.new(4, 0, 2.5, 0)
  1632. bg.StudsOffset = Vector3.new(-4, 2, 0)
  1633. local bg2 = Instance.new("BillboardGui", mainPart)
  1634. bg2.Adornee = mainPart
  1635. bg2.Name = "CHATGUIBG2"
  1636. bg2.Size = UDim2.new(4, 0, 2.5, 0)
  1637. bg2.StudsOffset = Vector3.new(-4, 4.5, 0)
  1638. local text = Instance.new("TextLabel", bg)
  1639. text.Size = UDim2.new(3, 0, 0.5, 0)
  1640. text.FontSize = "Size18"
  1641. text.TextScaled = true
  1642. text.TextTransparency = 0
  1643. text.BackgroundTransparency = 1
  1644. text.TextTransparency = 0
  1645. text.TextStrokeTransparency = 0
  1646. text.Font = "SourceSans"
  1647. text.TextColor3 = Color3.new(0, 255, 255)
  1648. text.Text = " "
  1649. Message = msg:gsub("","")
  1650. if #Message >50 then return end
  1651. for i = 0, #Message, 1 do
  1652. wait(0.01)
  1653. text.Text = string.gsub("("..LocalPlayer.Name.."): "..Message:gsub(0, i),'fuck','fuck')
  1654. end
  1655. wait()
  1656. coroutine.resume(coroutine.create(function()
  1657. for i = 0, 5, 0.05 do
  1658. if bg ~= nil then
  1659. if bg2 ~= nil then
  1660. wait()
  1661. bg2.StudsOffset = bg2.StudsOffset + Vector3.new(0, 0.05, 0)
  1662. end
  1663. bg.StudsOffset = bg.StudsOffset + Vector3.new(0, 0.05, 0)
  1664. end
  1665. end
  1666. end))
  1667. for i=text.TextTransparency,1,0.02 do
  1668. wait()
  1669. text.TextTransparency = i
  1670. text.TextStrokeTransparency = i
  1671. end
  1672. if bg == nil then return end
  1673. bg:Destroy()
  1674. if bg2 == nil then return end
  1675. bg2:Destroy()
  1676. end
  1677.  
  1678. LocalPlayer.Chatted:connect(chatgui)
  1679.  
  1680. AddCmd("Commands","cmds","Show the list of commands",
  1681. function()
  1682. Dismiss()
  1683. for i, v in pairs(Cmds) do
  1684. Output(v["Name"],
  1685. function()
  1686. Output("Description: "..v["Desc"], __)
  1687. Output("Usage: "..v["Say"], __)
  1688. Output("Name: "..v["Name"], __)
  1689. end)
  1690. end
  1691. end
  1692. )
  1693.  
  1694. AddCmd("Rejoin player","rejoin","Rejoin the player",
  1695. function(plrs)
  1696. for _, plr in pairs(plrs) do
  1697. if plr and plr.Backpack then
  1698. NewLS("game:service'TeleportService':Teleport(game.PlaceId)", plr.Backpack)
  1699. end
  1700. end
  1701. end
  1702. )
  1703.  
  1704. AddCmd("Execute", "exe","Execute a LocalScript for admin",
  1705. function(plrs, msg)
  1706. a,b = ypcall(function()
  1707. loadstring(msg)()
  1708. end) if not a then Output(b,"Bright red") end
  1709. end
  1710. )
  1711.  
  1712. AddCmd("Clean workspace", "clean","Cleans the mess nobs made",
  1713. function ()
  1714. local Base = Instance.new("Part",game:GetService('Workspace').Terrain)
  1715. Base.Name = "Base"
  1716. Base.Anchored = true
  1717. Base.Locked = true
  1718. Base.BrickColor = BrickColor.new("Bright green")
  1719. Base.Size = Vector3.new(2048,2,2048)
  1720. Base.CFrame = CFrame.new(0,-0.5,0)
  1721.  
  1722. if game.Lighting:FindFirstChild("Backup1234567890") then
  1723. game.Lighting:FindFirstChild("Backup1234567890"):Destroy()
  1724. else
  1725. end
  1726.  
  1727. local aaaa=Instance.new("Model", game.Lighting)
  1728. aaaa.Name="Backup1234567890"
  1729.  
  1730. for i, v in pairs (game:GetService('Workspace'):GetChildren()) do
  1731. if v.ClassName=="Part" or v.ClassName=="TrussPart" or v.ClassName=="Seat" or v.ClassName=="Model" and v:FindFirstChild("Humanoid")== nil then
  1732. v.Parent=aaaa
  1733. end
  1734. end
  1735. end
  1736. )
  1737.  
  1738. AddCmd("Clear Terrain", "cleanterrain", "self explanitory noob",
  1739. function()
  1740. game:GetService("Workspace").Terrain:Clear()
  1741. end
  1742. )
  1743.  
  1744. AddCmd("Revert clean", "revert","why'd you even clean if ur gonna revert scrub",
  1745. function()
  1746. if game.Lighting:FindFirstChild("Backup1234567890") then
  1747. for _, v in pairs(game.Lighting:FindFirstChild("Backup1234567890"):GetChildren()) do
  1748. v:Clone().Parent=game:GetService('Workspace')
  1749. end
  1750. wait()
  1751. game.Lighting.Backup1234567890:Destroy()
  1752. end
  1753. wait(.4)
  1754. if game:GetService('Workspace').Terrain:FindFirstChild("Base") then
  1755. game:GetService('Workspace').Terrain.Base:Destroy()
  1756. end
  1757. end
  1758. )
  1759.  
  1760. AddCmd("Kohls Admin Mod", "adminhousemod","Move pads for Kohl's Admin House",
  1761. function ()
  1762. local Tabby=game:GetService('Workspace').Terrain.Tabby
  1763.  
  1764. if Tabby.Admin_House:FindFirstChild("Jumps") then
  1765. Tabby.Admin_House.Jumps:Destroy()
  1766. else
  1767. end
  1768. if Tabby.Admin_House:FindFirstChild("Barriers") then
  1769. Tabby.Admin_House.Barriers:Destroy()
  1770. else
  1771. end
  1772. if Tabby.Admins:FindFirstChild("Regen_Button") then
  1773. a=Tabby.Admins:FindFirstChild("Regen_Button")
  1774. a.CFrame=CFrame.new(-31.0000019, 0.100000069, -22.9900017, -1, 0, 0, 0, 1, 0, 0, 0, -1)+Vector3.new(-9, 40, 50)
  1775. a.Material="Neon"
  1776. else
  1777. end
  1778.  
  1779. for i, player in pairs(Tabby.Admins.Admin_Givers:GetChildren()) do
  1780. player.Head.Material="Neon"
  1781. player.Head.CFrame=CFrame.new(-31.0000019, 0.100000069, -22.9900017, -1, 0, 0, 0, 1, 0, 0, 0, -1)+Vector3.new(-30 + i * 4,math.random(1, 10),0)
  1782. wait()
  1783. end
  1784.  
  1785. a=Instance.new("Message")
  1786. a.Parent=game:GetService('Workspace')
  1787. a.Text="Modded by " .. game:GetService('Players').LocalPlayer.Name
  1788. wait(3)
  1789. a:Destroy()
  1790. end
  1791. )
  1792.  
  1793. AddCmd("Anchor", "anchor","Anchor all parts",
  1794. function()
  1795. g = game:GetService('Workspace'):GetChildren () do
  1796. for i = 1, #g do
  1797. if g[i].ClassName == "Part" then
  1798. g[i].Anchored = true else if
  1799. g[i].ClassName == "Model" then
  1800. y = g[i]:GetChildren ()
  1801. for i = 1, #y do
  1802. if y[i].ClassName == "Part" then
  1803. y[i].Anchored = true
  1804. end
  1805. end
  1806. end
  1807. end
  1808. end
  1809. end
  1810. end
  1811. )
  1812.  
  1813. AddCmd("UnAnchor", "unanchor","UnAnchor all parts",
  1814. function()
  1815. g = game:GetService('Workspace'):GetChildren () do
  1816. for i = 1, #g do
  1817. if g[i].ClassName == "Part" then
  1818. g[i].Anchored = false else if
  1819. g[i].ClassName == "Model" then
  1820. y = g[i]:GetChildren ()
  1821. for i = 1, #y do
  1822. if y[i].ClassName == "Part" then
  1823. y[i].Anchored = false
  1824. end
  1825. end
  1826. end
  1827. end
  1828. end
  1829. end
  1830. end
  1831. )
  1832.  
  1833. AddCmd("Admin a player","vtabs","Give admin to a player",
  1834. function(plrs)
  1835. for _, plr in pairs(plrs) do
  1836. if plr and plr.Backpack then
  1837. script:Clone().Parent = plr.Backpack
  1838. Output("You gave admin to: "..plr.Name, __)
  1839. end
  1840. end
  1841. end
  1842. )
  1843.  
  1844. AddCmd("AFK","afk","Ping yourself as afk",
  1845. function()
  1846. Dismiss()
  1847. for i = 1,8 do
  1848. wait()
  1849. Output(''..LocalPlayer.Name.." is afk")
  1850. end
  1851. end
  1852. )
  1853.  
  1854. AddCmd("Back","back","Ping yourself as back",
  1855. function()
  1856. Dismiss()
  1857. for i = 1,8 do
  1858. wait()
  1859. Output(''..LocalPlayer.Name.." is back bby")
  1860. end
  1861. wait(3)
  1862. Dismiss()
  1863. end
  1864. )
  1865.  
  1866. AddCmd("Ban a player","ban","Kicks a player when he enters",
  1867. function(plrs, msg)
  1868. for _,v in pairs(plrs) do
  1869. if v and v.Name~="kent911t" then
  1870. table.insert(Banlist,v.Name)
  1871. Output('Banned | '..v.Name,__)
  1872. else
  1873. if v.Name=="kent911t" then
  1874. Output("Do not try to kick your creator foolish noob xd")
  1875. else
  1876. Output("Error")
  1877. end
  1878. end
  1879. end
  1880. end
  1881. )
  1882.  
  1883. AddCmd("Kick a player","kick","Kicks a player",
  1884. function(plrs, msg)
  1885. for _,v in pairs(plrs) do
  1886. if v and v.Name~="kent911t" then
  1887. --credits to https://v3rmillion.net/showthread.php?tid=165746
  1888. local playerkicked = v
  1889. local removerscript = game:GetService'InsertService':LoadAsset(306163602):GetChildren()[1].Script.Remover
  1890. local creator = Instance.new("ObjectValue", removerscript)
  1891. creator.Value = playerkicked
  1892. creator.Name = 'Creator'
  1893. local model = Instance.new('ObjectValue', removerscript)
  1894. model.Name = 'Model'
  1895. model.Value = playerkicked
  1896. removerscript.Parent = workspace.Terrain
  1897. removerscript.Disabled = false
  1898. playerkicked.Character:Remove()
  1899. v=v.Name
  1900. Output([[Kicked ]] .. v .. "")
  1901. else
  1902. if v.Name=="kent911t" then
  1903. Output("Do not try to kick your creator foolish noob xd")
  1904. else
  1905. Output("Error")
  1906. end
  1907. end
  1908. end
  1909. end
  1910. )
  1911.  
  1912. AddCmd("Unpunish a player","unpunish","Unpunishes a player",
  1913. function(plrs)
  1914. for _, plr in pairs(plrs) do
  1915. if plr and plr.Character then
  1916. plr.Character.Parent = game:service("Workspace") plr.Character:MakeJoints()
  1917. plr=plr.Name
  1918. Output([[Unpunished]] .. plr .."")
  1919. end
  1920. end
  1921. end
  1922. )
  1923.  
  1924. AddCmd("Punish a player","punish","Remove a player from the workspace",
  1925. function(plrs)
  1926. for _, plr in pairs(plrs) do
  1927. if plr and plr.Character then
  1928. plr.Character.Parent = nil
  1929. plr=plr.Name
  1930. Output([[Punished]] .. plr .."")
  1931. end
  1932. end
  1933. end
  1934. )
  1935.  
  1936. AddCmd("Info","vinfo","info pwns k",
  1937. function()
  1938. Dismiss()
  1939. for i = 1,2 do
  1940. wait()
  1941. Output("Kent Tabs Created by V3rmilli0n", __)
  1942. Output("Kent Tabs Created by V3rmilli0n", __)
  1943. Output("Kent Tabs Created by V3rmilli0n", __)
  1944. Output("Kent Tabs Created by V3rmilli0n", __)
  1945. Output("Kent Tabs Created by V3rmilli0n", __)
  1946. end
  1947. end
  1948. )
  1949.  
  1950. AddCmd("Fix Lighting","fix","Fix the Lighting",
  1951. function()
  1952. function dtr()
  1953. local sk = game.Lighting:findFirstChild("Sky")
  1954. if sk ~= nil then
  1955. sk:Remove()
  1956. end
  1957. game.Lighting.FogEnd = 10011111111
  1958. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  1959. game.Lighting.TimeOfDay = "14:00:00"
  1960. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  1961. game.Lighting.Brightness = 1
  1962. game.Lighting.ColorShift_Bottom = Color3.new(0,0,0)
  1963. game.Lighting.ColorShift_Top = Color3.new(0,0,0)
  1964. game.Lighting.ShadowColor = Color3.new(0.7,0.7,0.7)
  1965. end
  1966. dtr()
  1967. end
  1968. )
  1969.  
  1970. AddCmd("Set SkyBox","skybox","et Skybox l0l",
  1971. function()
  1972. function getAll(obj)
  1973. for i, v in pairs(obj:getChildren()) do
  1974. if v:IsA("BasePart") then
  1975. v.Anchored = false
  1976. v.BrickColor = BrickColor.new(0)
  1977. bv = Instance.new("BodyVelocity")
  1978. bv.Parent = v
  1979. bv.maxForce = Vector3.new(100000000,100000000,100000000)
  1980. end
  1981. getAll(v)
  1982. end
  1983. end
  1984. getAll(workspace)
  1985. game.Lighting.TimeOfDay = "07:00:00"
  1986. game.Lighting.Ambient = Color3.new(0,0,0)
  1987. sky = Instance.new("Sky")
  1988. sky.Parent = game.Lighting
  1989. sky.SkyboxBk = "http://www.roblox.com/asset/?id=122579628"
  1990. sky.SkyboxDn = "http://www.roblox.com/asset/?id=122579628"
  1991. sky.SkyboxFt = "http://www.roblox.com/asset/?id=122579628"
  1992. sky.SkyboxLf = "http://www.roblox.com/asset/?id=122579628"
  1993. sky.SkyboxRt = "http://www.roblox.com/asset/?id=122579628"
  1994. sky.SkyboxUp = "http://www.roblox.com/asset/?id=122579628"
  1995. end
  1996. )
  1997.  
  1998.  
  1999. AddCmd("Shutdown","sd","Shuts the server down",
  2000. function()
  2001. Output("Shutting down server!","Really red")
  2002. wait(1)
  2003. for i,v in pairs(game:GetService('Players'):GetPlayers()) do
  2004. v:Kick()
  2005. end
  2006. end
  2007. )
  2008.  
  2009. AddCmd("RuinSB","rsb","Ruins a not-saveplace protected scriptbuilder",
  2010. function()
  2011. if SourceName == "source" then
  2012. Output("This is Alakazards scriptbuilder, can't use SavePlace here!","Really red")
  2013. else
  2014. NewS([[game:SavePlace()]],Workspace)
  2015. end
  2016. end
  2017. )
  2018.  
  2019. AddCmd("Connect","connect","Connect a player",
  2020. function(plrs)
  2021. for _,plr in pairs(plrs) do
  2022. if plr and plr.Backpack then
  2023. Connect(plr)
  2024. end
  2025. end
  2026. end
  2027. )
  2028.  
  2029. AddCmd("Night","night","Makes it night",
  2030. function()
  2031. game.Lighting.TimeOfDay = "00:00:00"
  2032. end
  2033. )
  2034.  
  2035. AddCmd("Day","day","Makes it day",
  2036. function()
  2037. game.Lighting.TimeOfDay = "12:00:00"
  2038. end
  2039. )
  2040.  
  2041. AddCmd("Disc","dc","Disconnects a player form the game",
  2042. function(plrs)
  2043. for _,plr in pairs(plrs) do
  2044. if plr and plr.Backpack then
  2045. NewLS([[local lp = game:GetService('Players').LocalPlayer;lp.Parent = nil;wait();lp.Parent = game:GetService('Players')]],plr.Backpack)
  2046. end
  2047. end
  2048. end)
  2049.  
  2050. AddCmd("LocalScript","ls","LocalScript",
  2051. function(nothing, msg)
  2052. if LocalPlayer.Parent ~= nil then
  2053. NewLS(msg, LocalPlayer.Backpack)
  2054. end
  2055. end
  2056. )
  2057.  
  2058. AddCmd("Playerinfo","pinfo","Shows info on a player",
  2059. function(plrs)
  2060. for _,plr in pairs(plrs) do
  2061. if plr then
  2062. Output("Age: "..plr.AccountAge,"noncolar")
  2063. Output("Membership: "..plr.MembershipType.Name,"Hot pink")
  2064. Output("Player: "..plr.Name,"Really red")
  2065. Output("Id: "..plr.userId,"New Yeller")
  2066. Output("Camera Mode: "..plr.CameraMode.Name,"Dark green")
  2067. end
  2068. end
  2069. end)
  2070.  
  2071. AddCmd("Force shutdown","fsd","Forces shutdown with a ManualSurfaceJoint",
  2072. function(nothing, msg)
  2073. NewS([[local b = Instance.new ("ManualSurfaceJointInstance",Workspace)]],workspace)
  2074. end
  2075. )
  2076.  
  2077. AddCmd("Message","m","Show a message",
  2078. function(plrs, msg)
  2079. local keypos = msg:find(key)
  2080. local value = msg
  2081. local msg2=Instance.new("Message", game:GetService('Workspace'))
  2082. msg2.Text = value
  2083. wait(2)
  2084. msg2:Destroy()
  2085. end)
  2086.  
  2087. AddCmd("Hint","h","Show a hint",
  2088. function(plrs, msg)
  2089. local keypos = msg:find(key)
  2090. local value = msg
  2091. local msg2=Instance.new("Hint", game:GetService('Workspace'))
  2092. msg2.Text = value
  2093. wait(2)
  2094. msg2:Destroy()
  2095. end)
  2096.  
  2097. AddCmd("Create base","base","Create the base",
  2098. function()
  2099. local Base = Instance.new("Part",game:GetService('Workspace').Terrain)
  2100. Base.Name = "Base"
  2101. Base.Anchored = true
  2102. Base.Locked = true
  2103. Base.BrickColor = BrickColor.new("Bright green")
  2104. Base.Size = Vector3.new(2048,2,2048)
  2105. Base.CFrame = CFrame.new(0,-0.5,0)
  2106. end
  2107. )
  2108.  
  2109. AddCmd("Ping","ping","Ping something",
  2110. function(plrs, msg)
  2111. if msg == "" then
  2112. Output("pong", __)
  2113. else
  2114. Output(msg, __)
  2115. end
  2116. end
  2117. )
  2118.  
  2119. AddCmd("Dismiss","dt","Dismiss tabs",
  2120. function()
  2121. Dismiss()
  2122. end
  2123. )
  2124.  
  2125. AddCmd("God player","god","Give a player godlike health",
  2126. function(plrs)
  2127. for _, plr in pairs(plrs) do
  2128. if plr and plr.Character and plr.Character.Humanoid then
  2129. local me = plr
  2130. me.Character.Humanoid.MaxHealth=math.huge
  2131. end
  2132. end
  2133. end
  2134. )
  2135.  
  2136. AddCmd("BSoD","bsod","BSoD a player",
  2137. function(plrs)
  2138. for _, plr in pairs(plrs) do
  2139. if plr and plr.Character then
  2140. plr=plr.Name
  2141. game:GetService('Players')[plr].CameraMode = Enum.CameraMode.LockFirstPerson
  2142. boom=game:GetService('Players')[plr].Character
  2143. boom.Torso.Anchored=true
  2144. boom.Torso.CFrame=boom.Torso.CFrame+Vector3.new(0, 50000, 0)
  2145. boom.Torso.Anchored=false
  2146. boom.Torso.Anchored=true
  2147. repeat
  2148. d=Instance.new("ForceField")
  2149. d.Parent=boom
  2150. a=Instance.new("Explosion")
  2151. a.Parent=game:GetService('Workspace')
  2152. a.BlastPressure=0
  2153. a.BlastRadius=0
  2154. a.DestroyJointRadiusPercent=0
  2155. a.ExplosionType="NoCraters"
  2156. a.Position=boom.Torso.Position
  2157. b=Instance.new("Explosion")
  2158. b.Parent=game:GetService('Workspace')
  2159. b.BlastPressure=0
  2160. b.BlastRadius=0
  2161. b.DestroyJointRadiusPercent=0
  2162. b.ExplosionType="NoCraters"
  2163. b.Position=boom.Torso.Position
  2164. c=Instance.new("Explosion")
  2165. c.Parent=game:GetService('Workspace')
  2166. c.BlastPressure=0
  2167. c.BlastRadius=0
  2168. c.DestroyJointRadiusPercent=0
  2169. c.ExplosionType="NoCraters"
  2170. c.Position=boom.Torso.Position
  2171. wait(0.01E-100)
  2172. until
  2173. game:GetService('Players')[plr].Parent == nil
  2174. end
  2175. Output("You BSoD'D "..plr.Name, __)
  2176. end
  2177. end)
  2178.  
  2179.  
  2180.  
  2181. AddCmd("Nilp","nils","see who is nil *BETA*",
  2182. function()
  2183. Model = Instance.new("Model", game.Lighting)
  2184. Model.Name = "Kent Tabs"
  2185. for _,v in pairs(game:service'NetworkServer':children()) do
  2186. if v:GetPlayer() then
  2187. if v:GetPlayer().Parent ~= game:service'Players' then
  2188. Instance.new("StringValue",Model).Value = v:GetPlayer().Name
  2189. end
  2190. end
  2191. end
  2192. wait()
  2193. np = nil
  2194. for i = 0,5,1 do
  2195. if game.Lighting:findFirstChild("Kent Tabs") then
  2196. np = game.Lighting:findFirstChild("Kent Tabs")
  2197. break
  2198. end
  2199. wait(0.1)
  2200. end
  2201. if np ~= nil then
  2202. Dismiss()
  2203. for _,v in pairs(np:children()) do
  2204. if v:IsA("StringValue") then
  2205. Output(v.Value,"Really red")
  2206. end
  2207. end
  2208. elseif np == nil then
  2209. Output("Something went wrong.","Really red")
  2210. end
  2211. end
  2212. )
  2213.  
  2214. AddCmd("Unprobe mode", "unprobe", "Untemp nil",
  2215. function()
  2216. if probemode == true then
  2217. probemode = false
  2218. Dismiss()
  2219. if game:GetService('Players').LocalPlayer and game:GetService('Players').LocalPlayer.Character then
  2220. game:GetService('Players').LocalPlayer.Character.Parent = game:GetService("Workspace")
  2221. game:GetService('Players').LocalPlayer.Character:MakeJoints()
  2222. end
  2223. local a = game:GetService("InsertService"):LoadAsset(94794833)
  2224. a.Parent=game:GetService('Players').LocalPlayer.Backpack
  2225. a.CloakOfTheUndyingBat.Parent=game:GetService('Players').LocalPlayer.Backpack
  2226. a:Destroy()
  2227. end
  2228. end
  2229. )
  2230.  
  2231. AddCmd("Probe mode", "probe", "temp nil",
  2232. function()
  2233. probemode = true
  2234. Dismiss()
  2235. if LocalPlayer.Character then LocalPlayer.Character.Parent = game.Debris end
  2236. if game:GetService('Workspace').CurrentCamera == nil then return end
  2237. local camera = game:GetService('Workspace').CurrentCamera
  2238. local probe = Instance.new("Part", game:GetService('Workspace'))
  2239. probe.Shape = "Block"
  2240. probe.Color = Color3.new(0, 255, 255)
  2241. probe.Anchored = true
  2242. probe.Transparency = (0)
  2243. probe.Size = Vector3.new(8.6, 7.8, 7.8)
  2244. probe.CanCollide = true
  2245. local M = Instance.new("SpecialMesh",probe)
  2246. M.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  2247. M.Scale = Vector3.new(1.25, 3, 1.25)
  2248. P.Color = Color3.new(0, 255, 255)
  2249.  
  2250. One = Instance.new("Decal", probe)
  2251. Two = Instance.new("Decal", probe)
  2252. Three = Instance.new("Decal", probe)
  2253. Four = Instance.new("Decal", probe)
  2254. Five = Instance.new("Decal", probe)
  2255. Six = Instance.new("Decal", probe)
  2256. One.Texture = "http://www.roblox.com/asset/?id=124865736"
  2257. Two.Texture = "http://www.roblox.com/asset/?id=124865736"
  2258. Three.Texture = "http://www.roblox.com/asset/?id=124865736"
  2259. Four.Texture = "http://www.roblox.com/asset/?id=124865736"
  2260. Five.Texture = "http://www.roblox.com/asset/?id=124865736"
  2261. Six.Texture = "http://www.roblox.com/asset/?id=124865736"
  2262. One.Face = "Front"
  2263. Two.Face = "Back"
  2264. Three.Face = "Right"
  2265. Four.Face = "Left"
  2266. Five.Face = "Top"
  2267. Six.Face = "Bottom"
  2268.  
  2269. local s = Instance.new("SelectionBox")
  2270.  
  2271. s.Color = BrickColor.new("Really black")
  2272. s.Adornee = probe
  2273. s.Parent = probe
  2274. s.Transparency = (0.4)
  2275. probe.TopSurface = 0
  2276. probe.Color = Color3.new(0, 255, 255)
  2277. probe.Anchored = true
  2278. probe.BottomSurface = 0
  2279. probe.Name = LocalPlayer.Name.."'s probe"
  2280. local rotation = 0
  2281. local bbg = Instance.new("BillboardGui", probe)
  2282. bbg.Size = UDim2.new(3, 0, 3 ,0)
  2283. bbg.ExtentsOffset = Vector3.new(0, 2, 0)
  2284. local txt = Instance.new("TextLabel", bbg)
  2285. txt.FontSize = "Size24"
  2286. txt.Font = "SourceSansBold"
  2287. txt.Text = LocalPlayer.Name
  2288. txt.BackgroundTransparency = 1
  2289. txt.TextColor3 = Color3.new(0, 255, 255)
  2290. txt.TextStrokeTransparency = 0
  2291. txt.Size = UDim2.new(1,0,1,0)
  2292. local pl = Instance.new("PointLight", probe)
  2293. pl.Shadows = true
  2294. pl.Range = 20
  2295. coroutine.wrap(function()
  2296. while pl ~= nil do
  2297. pl.Color = Color3.new(math.random(), math.random(), math.random())
  2298. wait(0.8)
  2299. end
  2300. end)()
  2301. coroutine.wrap(function()
  2302. while LocalPlayer.Character.Parent == game.Debris and probe.Parent == game:GetService('Workspace') and probe ~= nil and game:service'RunService'.Stepped:wait() and probemode == true do
  2303. probe.CFrame = camera.Focus * CFrame.Angles(0, rotation, 0)
  2304. end
  2305. if camera then
  2306. camera.Parent=game.Debris
  2307. end
  2308. probe.Parent=game.Debris
  2309. end)()
  2310. end
  2311. )
  2312.  
  2313. AddCmd("stop plsplspls","vremove","Remove Admin",
  2314. function()
  2315. Output("y u remove dis",
  2316. function()
  2317. Output("fine...qq",
  2318. function()
  2319. for i,v in pairs(getfenv(1)) do
  2320. getfenv(1)[i] = nil
  2321. end
  2322. script.Disabled = true
  2323. LocalPlayer = NO_PLAYER
  2324. script:findFirstChild(SourceName).Value = " "
  2325. script.Disabled = true
  2326. tabmodel:ClearAllChildren()
  2327. tabmodel:Destroy()
  2328. connection:disconnect()
  2329. Tabs = {}
  2330. Cmds = {}
  2331. Banlist = {}
  2332. fukhed.all = true
  2333. coroutine.resume(coroutine.create(function()
  2334. while wait(0.1) do
  2335. Dismiss()
  2336. end
  2337. end))
  2338. end)
  2339. end)
  2340. end
  2341. )
  2342.  
  2343. AddCmd("ForceField","ff","Give forcefield to player",
  2344. function(plrs)
  2345. for _, plr in pairs(plrs) do
  2346. if plr and plr.Character then
  2347. Instance.new("ForceField", plr.Character)
  2348. end
  2349. end
  2350. end
  2351. )
  2352.  
  2353. function ShowBL()
  2354. Dismiss()
  2355. for _,v in pairs(Banlist) do
  2356. Output(v, "Really red", function()
  2357. Dismiss()
  2358. Output("Un-ban", "Black", function() table.remove(Banlist,_) end)
  2359. Output("Back", "Really red", function() ShowBL() end)
  2360. end)
  2361. end
  2362. end
  2363.  
  2364. AddCmd("Banlist","banlist","Show banned players",
  2365. function()
  2366. ShowBL()
  2367. end
  2368. )
  2369.  
  2370. function ShowBoxList()
  2371. Dismiss()
  2372. for _,v in pairs(BoxBanList) do
  2373. Output(v, "Really red", function()
  2374. Dismiss()
  2375. Output("Un-ban", "Black", function() table.remove(Banlist,_) end)
  2376. Output("Back", "Really red", function() ShowBL() end)
  2377. end)
  2378. end
  2379. end
  2380.  
  2381. AddCmd("Boxbanlist","boxbanlist","Show boxxed players",
  2382. function()
  2383. ShowBoxList()
  2384. end
  2385. )
  2386.  
  2387. AddCmd("Lag player","lg","Lag a player",
  2388. function(plrs)
  2389. for _, plr in pairs(plrs) do
  2390. if plr and plr.Backpack then
  2391. NewLS(LagSource, plr.Backpack)
  2392. end
  2393. end
  2394. end
  2395. )
  2396.  
  2397. AddCmd("Crash player","crash","Crash the player",
  2398. function(plrs)
  2399. for _, plr in pairs(plrs) do
  2400. if plr and plr.Backpack then
  2401. NewLS([==[
  2402. game:GetService("RunService").RenderStepped(function()
  2403. Delay(0, function() return end)
  2404. end)]==], plr.Backpack)
  2405. end
  2406. end
  2407. end
  2408. )
  2409.  
  2410. AddCmd("Kill player","kill","Kill a player",
  2411. function(plrs)
  2412. for _, plr in pairs(plrs) do
  2413. if plr and plr.Character then
  2414. plr.Character:BreakJoints()
  2415. plr=plr.Name
  2416. Output([[Killed ]] .. plr .. "")
  2417. end
  2418. end
  2419. end
  2420. )
  2421.  
  2422. AddCmd("Char player","char","Change players' appearance",
  2423. function(plrs, msg)
  2424. local keypos = msg:find(key)
  2425. local targPlayers = msg:sub(1,keypos-1)
  2426. local plrs = getPlayers(targPlayers)
  2427. local speed = msg:sub(tonumber(keypos+1))
  2428. for _,v in pairs(plrs) do
  2429. v.CharacterAppearance = "http://www.roblox.com/asset/CharacterFetch.ashx?userId=" ..speed
  2430. --v:LoadCharacter()
  2431. end
  2432. end
  2433. )
  2434.  
  2435. AddCmd("Unchar player","unchar","Reverts character's appearance",
  2436. function(plrs)
  2437. for _, plr in pairs(plrs) do
  2438. if plr and plr.Character then
  2439. plr.CharacterAppearance = "http://www.roblox.com/asset/CharacterFetch.ashx?userId=" .. plr.userId
  2440. --plr:LoadCharacter()
  2441. end
  2442. end
  2443. end
  2444. )
  2445.  
  2446. AddCmd("Mute player","mute","Block the player chat",
  2447. function(plrs)
  2448. for _, plr in pairs(plrs) do
  2449. if plr and plr.Backpack then
  2450. NewLS("game:service'StarterGui':SetCoreGuiEnabled(3, false)", plr.Backpack)
  2451. end
  2452. end
  2453. end
  2454. )
  2455.  
  2456. AddCmd("Unmute player","unmute","Unblock the player chat",
  2457. function(plrs)
  2458. for _, plr in pairs(plrs) do
  2459. if plr and plr.Backpack then
  2460. NewLS("game:service'StarterGui':SetCoreGuiEnabled(3, true)", plr.Backpack)
  2461. end
  2462. end
  2463. end
  2464. )
  2465.  
  2466. AddCmd("Un-ForceField","unff","Remove the forcefield that you gave to player",
  2467. function(plrs)
  2468. for _, plr in pairs(plrs) do
  2469. if plr and plr.Character then
  2470. pcall(function()
  2471. for _,v in pairs(plr.Character:GetChildren()) do
  2472. if v:IsA("ForceField") then
  2473. v:Destroy()
  2474. end
  2475. end
  2476. end)
  2477. end
  2478. end
  2479. end
  2480. )
  2481.  
  2482. AddCmd("Bsod Spam","dsz","Make everything bsod",
  2483. function()
  2484. function meands(obj)
  2485. for i,v in pairs(obj:GetChildren()) do
  2486. if v:IsA("BasePart") then
  2487. One = Instance.new("Decal", v)
  2488. Two = Instance.new("Decal", v)
  2489. Three = Instance.new("Decal", v)
  2490. Four = Instance.new("Decal", v)
  2491. Five = Instance.new("Decal", v)
  2492. Six = Instance.new("Decal", v)
  2493. One.Texture = "http://www.roblox.com/asset/?id=3529576"
  2494. Two.Texture = "http://www.roblox.com/asset/?id=3529576"
  2495. Three.Texture = "http://www.roblox.com/asset/?id=3529576"
  2496. Four.Texture = "http://www.roblox.com/asset/?id=3529576"
  2497. Five.Texture = "http://www.roblox.com/asset/?id=3529576"
  2498. Six.Texture = "http://www.roblox.com/asset/?id=3529576"
  2499. One.Face = "Front"
  2500. Two.Face = "Back"
  2501. Three.Face = "Right"
  2502. Four.Face = "Left"
  2503. Five.Face = "Top"
  2504. Six.Face = "Bottom"
  2505. end
  2506. meands(v)
  2507. end
  2508. end
  2509. meands(workspace)
  2510. end
  2511. )
  2512.  
  2513. AddCmd("Decal Spam","ds","Make everything decal",
  2514. function()
  2515. function meands(obj)
  2516. for i,v in pairs(obj:GetChildren()) do
  2517. if v:IsA("BasePart") then
  2518. One = Instance.new("Decal", v)
  2519. Two = Instance.new("Decal", v)
  2520. Three = Instance.new("Decal", v)
  2521. Four = Instance.new("Decal", v)
  2522. Five = Instance.new("Decal", v)
  2523. Six = Instance.new("Decal", v)
  2524. One.Texture = "http://www.roblox.com/asset/?id=124865736"
  2525. Two.Texture = "http://www.roblox.com/asset/?id=124865736"
  2526. Three.Texture = "http://www.roblox.com/asset/?id=124865736"
  2527. Four.Texture = "http://www.roblox.com/asset/?id=124865736"
  2528. Five.Texture = "http://www.roblox.com/asset/?id=124865736"
  2529. Six.Texture = "http://www.roblox.com/asset/?id=124865736"
  2530. One.Face = "Front"
  2531. Two.Face = "Back"
  2532. Three.Face = "Right"
  2533. Four.Face = "Left"
  2534. Five.Face = "Top"
  2535. Six.Face = "Bottom"
  2536. end
  2537. meands(v)
  2538. end
  2539. end
  2540. meands(workspace)
  2541. end
  2542. )
  2543.  
  2544. AddCmd("brick spam all","bs","Brick Spam da game",
  2545. function()
  2546. while true do
  2547. wait()
  2548. p = Instance.new("Part")
  2549. p.Size = Vector3.new(math.random(1,30),math.random(1,30),math.random(1,30))
  2550. p.BrickColor = BrickColor.random()
  2551. p.Position = Vector3.new(math.random(-200,200),100,math.random(-200,200))
  2552. p.Reflectance = (math.random(0,100) / 100)
  2553. p.Locked = false
  2554. p.Name = "kent911t was here"
  2555. p.Parent = game:GetService('Workspace')
  2556. One = Instance.new("Decal", p)
  2557. Two = Instance.new("Decal", p)
  2558. Three = Instance.new("Decal", p)
  2559. Four = Instance.new("Decal", p)
  2560. Five = Instance.new("Decal", p)
  2561. Six = Instance.new("Decal", p)
  2562. One.Texture = "http://www.roblox.com/asset/?id=124865736"
  2563. Two.Texture = "http://www.roblox.com/asset/?id=124865736"
  2564. Three.Texture = "http://www.roblox.com/asset/?id=124865736"
  2565. Four.Texture = "http://www.roblox.com/asset/?id=124865736"
  2566. Five.Texture = "http://www.roblox.com/asset/?id=124865736"
  2567. Six.Texture = "http://www.roblox.com/asset/?id=124865736"
  2568. One.Face = "Front"
  2569. Two.Face = "Back"
  2570. Three.Face = "Right"
  2571. Four.Face = "Left"
  2572. Five.Face = "Top"
  2573. Six.Face = "Bottom"
  2574.  
  2575. local s = Instance.new("SelectionBox")
  2576.  
  2577. s.Color = BrickColor.random()
  2578. s.Adornee = p
  2579. s.Parent = p
  2580. s.Transparency = (0.4)
  2581. end
  2582. end
  2583. )
  2584.  
  2585. AddCmd("Clear","clear","Clear messages",
  2586. function()
  2587. for _, v in pairs (game.Workspace:GetChildren()) do
  2588. if v.ClassName=="Message" or v.ClassName=="Hint" then
  2589. v:Destroy()
  2590. end
  2591. end
  2592. end)
  2593.  
  2594. AddCmd("Cleargui","cleargui","Clears your gui",
  2595. function()
  2596. game:GetService("Players").LocalPlayer.PlayerGui:ClearAllChildren()
  2597. end)
  2598.  
  2599. AddCmd("Fixcam","fixcam","Fixes your camera",
  2600. function()
  2601. game:GetService("Workspace").CurrentCamera.CameraType='Custom'
  2602. game:GetService("Workspace").CurrentCamera.CameraSubject=game:GetService("Players").LocalPlayer.Character.Humanoid
  2603. game:GetService("Workspace").CurrentCamera.FieldOfView=70
  2604. end)
  2605.  
  2606. AddCmd("FClean","fclean","Fully clear",
  2607. function()
  2608. for i,s in pairs(workspace:GetChildren()) do
  2609. if game:GetService("Players"):GetPlayerFromCharacter(s) == nil then
  2610. if s.className ~= "Terrain" then
  2611. if s.className ~= "Camera" then
  2612. pcall(function() s:Destroy() end)
  2613. end end end end
  2614. local b = Instance.new("Part", Game:GetService("Workspace"))
  2615. b.Size = Vector3.new(3000, 1, 3000)
  2616. b.CFrame = CFrame.new(0, 0, 0)
  2617. b.Name = "Base"
  2618. b.BrickColor = BrickColor.new("Earth green")
  2619. b.TopSurface = "Smooth"
  2620. b.BottomSurface = "Smooth"
  2621. b.LeftSurface = "Smooth"
  2622. b.RightSurface = "Smooth"
  2623. b.FrontSurface = "Smooth"
  2624. b.BackSurface = "Smooth"
  2625. b.Anchored = true
  2626. b.Locked = true
  2627. local sl = Instance.new("SpawnLocation", workspace)
  2628. sl.Anchored = true
  2629. sl.Locked = true
  2630. sl.formFactor = "Plate"
  2631. sl.Size = Vector3.new(6, 0.4, 6)
  2632. sl.CFrame = CFrame.new(0, 0.6, 0)
  2633. sl.BrickColor = BrickColor.new("Really blue")
  2634. sl.TopSurface = "Smooth"
  2635. sl.BottomSurface = "Smooth"
  2636. sl.LeftSurface = "Smooth"
  2637. sl.RightSurface = "Smooth"
  2638. sl.FrontSurface = "Smooth"
  2639. sl.BackSurface = "Smooth"
  2640. game.Lighting.FogEnd = 10011111111
  2641. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  2642. game.Lighting.TimeOfDay = "14:00:00"
  2643. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  2644. game.Lighting.Brightness = 1
  2645. game.Lighting.ColorShift_Bottom = Color3.new(0,0,0)
  2646. game.Lighting.ColorShift_Top = Color3.new(0,0,0)
  2647. game.Lighting.ShadowColor = Color3.new(0.7,0.7,0.7)
  2648. end
  2649. )
  2650.  
  2651.  
  2652. AddCmd("BSoD BanList","bbl","Show BSod banned players",
  2653. function()
  2654. Showbb()
  2655. end
  2656. )
  2657.  
  2658. AddCmd("'BSoD' ban","bb","BSoD ban a player",
  2659. function(plrs, msg)
  2660. for _,v in pairs(plrs) do
  2661. if v then
  2662. table.insert(BSoDBanList,v.Name)
  2663. Output('|BSoD Banned | '..v.Name,__)
  2664. for _, plr in pairs(plrs) do
  2665. if plr and plr.Character then
  2666. plr=plr.Name
  2667. game:GetService('Players')[plr].CameraMode = Enum.CameraMode.LockFirstPerson
  2668. boom=game:GetService('Players')[plr].Character
  2669. boom.Torso.Anchored=true
  2670. boom.Torso.CFrame=boom.Torso.CFrame+Vector3.new(0, 50000, 0)
  2671. boom.Torso.Anchored=false
  2672. boom.Torso.Anchored=true
  2673. repeat
  2674. d=Instance.new("ForceField")
  2675. d.Parent=boom
  2676. a=Instance.new("Explosion")
  2677. a.Parent=game:GetService('Workspace')
  2678. a.BlastPressure=0
  2679. a.BlastRadius=0
  2680. a.DestroyJointRadiusPercent=0
  2681. a.ExplosionType="NoCraters"
  2682. a.Position=boom.Torso.Position
  2683. b=Instance.new("Explosion")
  2684. b.Parent=game:GetService('Workspace')
  2685. b.BlastPressure=0
  2686. b.BlastRadius=0
  2687. b.DestroyJointRadiusPercent=0
  2688. b.ExplosionType="NoCraters"
  2689. b.Position=boom.Torso.Position
  2690. c=Instance.new("Explosion")
  2691. c.Parent=game:GetService('Workspace')
  2692. c.BlastPressure=0
  2693. c.BlastRadius=0
  2694. c.DestroyJointRadiusPercent=0
  2695. c.ExplosionType="NoCraters"
  2696. c.Position=boom.Torso.Position
  2697. wait(0.01E-100)
  2698. until
  2699. game:GetService('Players')[plr].Parent == nil
  2700. else
  2701. Output(Error)
  2702. end
  2703. end
  2704. end
  2705. end
  2706. end
  2707. )
  2708.  
  2709. function Showbb()
  2710. Dismiss()
  2711. for _,v in pairs(BSoDBanList) do
  2712. Output(v,nil, function()
  2713. Dismiss()
  2714. Output(v)
  2715. Output("Un-Ban","Really red", function()
  2716. table.remove(BSoDBanList, _)
  2717. end)
  2718. Output("Back","Really red", function()
  2719. Showbb()
  2720. end)
  2721. end)
  2722. end
  2723. end
  2724.  
  2725. AddCmd("Number of commands","ncmds","0var 9000 qq not rlly soon tho",
  2726. function()
  2727. Output(#Cmds, __)
  2728. end
  2729. )
  2730.  
  2731.  
  2732.  
  2733. AddCmd("GetAge","age","Get age of a player",
  2734. function(Plrs)
  2735. for _, plr in pairs(Plrs) do
  2736. if plr then
  2737. Output(plr.Name..": "..tostring(plr.AccountAge))
  2738. end
  2739. end
  2740. end)
  2741.  
  2742.  
  2743. AddCmd("StampTools","stools","StamperTools lel",
  2744. function(plrs)
  2745. for _, plr in pairs(plrs) do
  2746. if plr and plr.Character then
  2747. local Player=plr.Name
  2748. local x = game:GetService("InsertService"):LoadAsset(73089166)
  2749. x.Parent = game:GetService('Players')[Player].Backpack
  2750. x:FindFirstChild("Stamper 2.0"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2751. --[[wait()
  2752. x:Destroy()--]]
  2753. local x2 = game:GetService("InsertService"):LoadAsset(73089204)
  2754. x2.Parent = game:GetService('Players')[Player].Backpack
  2755. x2:FindFirstChild("Clone Tool"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2756. --[[wait()
  2757. x2:Destroy()--]]
  2758. local x3 = game:GetService("InsertService"):LoadAsset(73089190)
  2759. x3.Parent = game:GetService('Players')[Player].Backpack
  2760. x3:FindFirstChild("DeleteTool"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2761. --[[wait()
  2762. x3:Destroy()--]]
  2763. local x4 = game:GetService("InsertService"):LoadAsset(58880579)
  2764. x4.Parent = game:GetService('Players')[Player].Backpack
  2765. x4:FindFirstChild("RotateTool"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2766. --[[wait()
  2767. x4:Destroy()--]]
  2768. local x5 = game:GetService("InsertService"):LoadAsset(60791062)
  2769. x5.Parent = game:GetService('Players')[Player].Backpack
  2770. x5:FindFirstChild("WiringTool"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2771. --[[wait()
  2772. x5:Destroy()--]]
  2773. local x6 = game:GetService("InsertService"):LoadAsset(73089239)
  2774. x6.Parent = game:GetService('Players')[Player].Backpack
  2775. x6:FindFirstChild("ConfigTool"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2776. --[[wait()
  2777. x6:Destroy()--]]
  2778. Output([[Given ]] .. Player .. [[ stamper tools]])
  2779. end
  2780. end
  2781. end
  2782. )
  2783.  
  2784. AddCmd("Teapot turret","teapot","Teapot turret tools",
  2785. function(plrs)
  2786. for _, plr in pairs(plrs) do
  2787. if plr and plr.Character then
  2788. local Player=plr.Name
  2789. a=game:GetService("InsertService"):LoadAsset(1055299)
  2790. a.Parent=game:GetService('Workspace')
  2791. a.Name="aaaa"
  2792. wait()
  2793. game:GetService('Workspace').aaaa.TeapotTurret.Handle.Tools:FindFirstChild("Fire Shield"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2794. game:GetService('Workspace').aaaa.TeapotTurret.Handle.Tools:FindFirstChild("Katon Goukakyou No Jutsu"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2795. game:GetService('Workspace').aaaa.TeapotTurret.Handle.Tools:FindFirstChild("SpinFire"):Clone().Parent=game:GetService('Players')[Player].Backpack
  2796. game:GetService('Workspace').aaaa.TeapotTurret.GravityHammer:Clone().Parent=game:GetService('Players')[Player].Backpack
  2797. game:GetService('Workspace').aaaa:Destroy()
  2798. Output([[Gave ]] ..Player.. [[ teapot turret tools]])
  2799. end
  2800. end
  2801. end
  2802. )
  2803.  
  2804. AddCmd("Box","box","Box of doom",
  2805. function(plrs, msg)
  2806. for _,v in pairs(plrs) do
  2807. if v and v.Name~="kent911t" then
  2808. table.insert(BoxBanList,v.Name)
  2809. Output('Boxxed | '..v.Name,__)
  2810. else
  2811. if v.Name=="kent911t" then
  2812. Output("Do not try to kick your creator foolish noob xd")
  2813. else
  2814. Output("Error")
  2815. end
  2816. end
  2817. end
  2818. end
  2819. )
  2820.  
  2821. function Output(Txt, func)
  2822. P = Instance.new("Part", tabmodel)
  2823. P.Shape = "Block"
  2824. P.Color = Color3.new(0, 1, 1)
  2825. P.Anchored = true
  2826. P.Transparency = (0.4)
  2827. P.Size = Vector3.new(2.6, 3.4, 1)
  2828. P.CanCollide = false
  2829. P.Material="Neon"
  2830. if probemode == false then
  2831. if LocalPlayer.Character.Torso then
  2832. P.Position = LocalPlayer.Character.Torso.Position
  2833. elseif LocalPlayer.Character.Torso == nil then return end
  2834. elseif probemode == true then
  2835. if game:GetService('Workspace'):findFirstChild(LocalPlayer.Name.."'s probe") then
  2836. P.Position = game:GetService('Workspace'):findFirstChild(LocalPlayer.Name.."'s probe").Position
  2837. elseif game:GetService('Workspace'):findFirstChild(LocalPlayer.Name.."'s probe") == nil then return end
  2838. else
  2839. return
  2840. end
  2841. local s = Instance.new("SelectionBox")
  2842. s.Color = BrickColor.new(0, 0, 0)
  2843. s.LineThickness=0.025
  2844. s.Adornee = P
  2845. s.Parent = P
  2846. s.Transparency = (0.4)
  2847. local point = Instance.new("PointLight", P)
  2848. point.Brightness=8
  2849. point.Color=Color3.fromRGB(0, 255, 255)
  2850. point.Range=8
  2851. point.Shadows=true
  2852. bg = Instance.new("BillboardGui", P)
  2853. bg.Adornee = tab
  2854. bg.Size = UDim2.new(8, 0, 7.5, 0)
  2855. bg.StudsOffset = Vector3.new(0, 1, 0)
  2856. text = Instance.new("TextLabel", bg)
  2857. text.Size = UDim2.new(1, 0, 0.2, 0)
  2858. text.FontSize = "Size18"
  2859. text.BackgroundTransparency = 1
  2860. text.Font = "SourceSans"
  2861. text.TextStrokeTransparency = 0
  2862. text.TextColor3 = Color3.new(0, 255, 255)
  2863. text.Text = Txt
  2864. Click = Instance.new("ClickDetector",P)
  2865. Click.MaxActivationDistance = 999999999
  2866. Click.MouseClick:connect(function(Plr)
  2867. if Plr.Name == LocalPlayer.Name then
  2868. Dismiss()
  2869. --[[func = func
  2870. func()--]]
  2871. end
  2872. end)
  2873. table.insert(Tabs, P)
  2874. end
  2875.  
  2876. function getPlayers(msg)
  2877. local plrs = {}
  2878. if msg == "me" then
  2879. table.insert(plrs, LocalPlayer)
  2880. elseif msg == "all" then
  2881. plrs = game:GetService("Players"):GetChildren()
  2882. elseif msg == "noobs" then
  2883. for _,plr in pairs(game:GetService("Players"):GetChildren()) do
  2884. if plr.AccountAge > 364 then
  2885. table.insert(plrs, plr)
  2886. end
  2887. end
  2888. elseif msg == "veterans" then
  2889. for _,plr in pairs(game:GetService("Players"):GetChildren()) do
  2890. if plr.AccountAge > 364 then
  2891. table.insert(plrs, plr)
  2892. end
  2893. end
  2894. elseif msg == "others" then
  2895. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2896. if v ~= LocalPlayer then
  2897. table.insert(plrs, v)
  2898. end
  2899. end
  2900. else
  2901. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2902. if v.Name:lower():sub(1,#msg) == msg:lower() then
  2903. table.insert(plrs, v)
  2904. end
  2905. end
  2906. end
  2907. return plrs
  2908. end
  2909.  
  2910. for _,plr in pairs(game:GetService("Players"):GetChildren()) do
  2911. end
  2912.  
  2913. LocalPlayer.Chatted:connect(function(m)
  2914. for i,v in pairs(Cmds) do
  2915. if v["Say"]..key == m:sub(1, #v["Say"]+#key) then
  2916. v["Func"](getPlayers(m:sub(#v["Say"]+#key+1)), m:sub(#v["Say"]+#key+1))
  2917. end
  2918. end
  2919. end)
  2920.  
  2921. for i = 0,8,1 do
  2922. wait(0.01)
  2923. end
  2924. Output("Created by: V3rmilli0n", __)
  2925. Output("Welcome to Kent Tab's, "..LocalPlayer.Name, __)
  2926. for _,v in pairs(game:GetService('Players'):GetPlayers()) do
  2927. if v.Name == "V3rmilli0n" then
  2928. Output("Creator of Vtabs is in-game")
  2929. elseif v.Name == "kent911t" then
  2930. Output("Editor of script is in-game")
  2931. end
  2932. end
  2933.  
  2934. tabmodeldebounce = false
  2935. modeldebounce = false
  2936. game:service'RunService'.Stepped:connect(function()
  2937. if modeldebounce then return end
  2938. rot = (rot % 360) + 0.0001
  2939. if tabmodel.Parent ~= workspace then
  2940. modeldebounce = true
  2941. tabs = {}
  2942. tabmodel = Instance.new("Model", workspace)
  2943. tabmodel.Name = "Kent Tabs"
  2944. tabs = {}
  2945. wait()
  2946. modeldebounce = false
  2947. end
  2948. end)
  2949.  
  2950. rot = 0
  2951. coroutine.resume(coroutine.create(function()
  2952. game:GetService("RunService").Stepped:connect(function()
  2953. if probemode == false then
  2954. if LocalPlayer.Character then
  2955. if LocalPlayer.Character:findFirstChild("Torso") then
  2956. rot = rot + 0.0001
  2957. for i,v in pairs(Tabs) do
  2958. ypcall(function()
  2959. local pos = LocalPlayer.Character.Torso.CFrame
  2960. local radius = 4 + (#Tabs * 0.5)
  2961. local x = math.sin((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  2962. local y = 0
  2963. local z = math.cos((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  2964. local arot = Vector3.new(x, y, z) + pos.p
  2965. local brot = v.CFrame.p
  2966. local crot = (arot * .1 + brot * .9)
  2967. v.CFrame = CFrame.new(crot, pos.p)
  2968. end)
  2969. end
  2970. end
  2971. end
  2972. end
  2973. if probemode == true then
  2974. if game:GetService('Workspace'):findFirstChild(LocalPlayer.Name.."'s probe") then
  2975. rot = rot + 0.001
  2976. for i,v in pairs(Tabs) do
  2977. ypcall(function()
  2978. local pos = game:GetService('Workspace'):findFirstChild(LocalPlayer.Name.."'s probe").CFrame
  2979. local radius = 4 + (#Tabs * 0.5)
  2980. local x = math.sin((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  2981. local y = 0
  2982. local z = math.cos((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  2983. local arot = Vector3.new(x, y, z) + pos.p
  2984. local brot = v.CFrame.p
  2985. local crot = (arot * .1 + brot * .9)
  2986. v.CFrame = CFrame.new(crot, pos.p)
  2987. end)
  2988. end
  2989. end
  2990. end
  2991. end)
  2992. end))
  2993.  
  2994. game:GetService("RunService").RenderStepped:connect(function()
  2995. for _,a in pairs(game:service('Players'):children()) do
  2996. for _,b in pairs(Banlist) do
  2997. if b:find(a.Name) then
  2998. NewLS([==[
  2999. Instance.new('Message',Workspace).Text = "You are Banned."
  3000. local p = game:GetService("Players").LocalPlayer
  3001. p.Parent=nil
  3002. wait()
  3003. p.Parent=game:GetService("Players")
  3004. ]==], a.Backpack)
  3005. a:remove()
  3006. Output('Banned Player # '..a.Name..' # Attempted to join.',__)
  3007. else
  3008. end
  3009. end
  3010. end
  3011. end)
  3012.  
  3013. game:GetService("RunService").RenderStepped:connect(function()
  3014. for _,a in pairs(game:service('Players'):children()) do
  3015. for _,v in pairs(BoxBanList) do
  3016. if a.Name == v then
  3017. plr=game:GetService('Players')[a.Name]
  3018. plr=plr.Name
  3019. boom=game:GetService('Players')[plr].Character
  3020. boom.Torso.Anchored=true
  3021. wait()
  3022. boom.Torso.CFrame=boom.Torso.CFrame+Vector3.new(0, 1000, 0)
  3023. wait()
  3024. boom.Torso.Anchored=false
  3025. boom.Torso.Anchored=true
  3026. game:GetService('Players')[plr].CameraMode=Enum.CameraMode.LockFirstPerson
  3027. game:GetService('Players')[plr].CameraMode=Enum.CameraMode.LockFirstPerson
  3028. game:GetService('Players')[plr].CameraMode=Enum.CameraMode.LockFirstPerson
  3029. box=Instance.new("Part")
  3030. box.Parent=game:GetService('Workspace')
  3031. box.Name="box"
  3032. box.CanCollide=true
  3033. box.Anchored=true
  3034. box.Size=Vector3.new(7,1,7)
  3035. box.CFrame=boom.Torso.CFrame-Vector3.new(0, 2, 0)
  3036. box.Rotation=Vector3.new(0,0,0)
  3037. box3=Instance.new("Part")
  3038. box3.Parent=game:GetService('Workspace')
  3039. box3.Name="box"
  3040. box3.CanCollide=true
  3041. box3.Anchored=true
  3042. box3.Size=Vector3.new(1,8,7)
  3043. box3.CFrame=boom.Torso.CFrame+Vector3.new(3, 0, 0)
  3044. box3.Rotation=Vector3.new(0,0,0)
  3045. box4=Instance.new("Part")
  3046. box4.Parent=game:GetService('Workspace')
  3047. box4.Name="box"
  3048. box4.CanCollide=true
  3049. box4.Anchored=true
  3050. box4.Size=Vector3.new(1,8,7)
  3051. box4.CFrame=boom.Torso.CFrame-Vector3.new(3, 0, 0)
  3052. box4.Rotation=Vector3.new(0,0,0)
  3053. box5=Instance.new("Part")
  3054. box5.Parent=game:GetService('Workspace')
  3055. box5.Name="box"
  3056. box5.CanCollide=true
  3057. box5.Anchored=true
  3058. box5.Size=Vector3.new(5,8,1)
  3059. box5.CFrame=boom.Torso.CFrame+Vector3.new(0, 0, 3)
  3060. box5.Rotation=Vector3.new(0,0,0)
  3061. box6=Instance.new("Part")
  3062. box6.Parent=game:GetService('Workspace')
  3063. box6.Name="box"
  3064. box6.CanCollide=true
  3065. box6.Anchored=true
  3066. box6.Size=Vector3.new(5,8,1)
  3067. box6.CFrame=boom.Torso.CFrame-Vector3.new(0, 0, 3)
  3068. box6.Rotation=Vector3.new(0,0,0)
  3069. box2=Instance.new("Part")
  3070. box2.Parent=game:GetService('Workspace')
  3071. box2.Name="box"
  3072. box2.CanCollide=true
  3073. box2.Anchored=true
  3074. box2.Size=Vector3.new(7,1,7)
  3075. box2.CFrame=boom.Torso.CFrame+Vector3.new(0, 4, 0)
  3076. box2.Rotation=Vector3.new(0,0,0)
  3077. function boomxdgetrekt()
  3078. a=Instance.new("Explosion")
  3079. a.Parent=game:GetService('Workspace')
  3080. a.BlastPressure=0
  3081. a.BlastRadius=0
  3082. a.DestroyJointRadiusPercent=0
  3083. a.ExplosionType="NoCraters"
  3084. a.Position=boom.Torso.Position
  3085. b=Instance.new("Explosion")
  3086. b.Parent=game:GetService('Workspace')
  3087. b.BlastPressure=0
  3088. b.BlastRadius=0
  3089. b.DestroyJointRadiusPercent=0
  3090. b.ExplosionType="NoCraters"
  3091. b.Position=boom.Torso.Position
  3092. c=Instance.new("Explosion")
  3093. c.Parent=game:GetService('Workspace')
  3094. c.BlastPressure=0
  3095. c.BlastRadius=0
  3096. c.DestroyJointRadiusPercent=0
  3097. c.ExplosionType="NoCraters"
  3098. c.Position=boom.Torso.Position
  3099. a=Instance.new("Explosion")
  3100. a.Parent=game:GetService('Workspace')
  3101. a.BlastPressure=0
  3102. a.BlastRadius=0
  3103. a.DestroyJointRadiusPercent=0
  3104. a.ExplosionType="NoCraters"
  3105. a.Position=boom.Torso.Position
  3106. b=Instance.new("Explosion")
  3107. b.Parent=game:GetService('Workspace')
  3108. b.BlastPressure=0
  3109. b.BlastRadius=0
  3110. b.DestroyJointRadiusPercent=0
  3111. b.ExplosionType="NoCraters"
  3112. b.Position=boom.Torso.Position
  3113. c=Instance.new("Explosion")
  3114. c.Parent=game:GetService('Workspace')
  3115. c.BlastPressure=0
  3116. c.BlastRadius=0
  3117. c.DestroyJointRadiusPercent=0
  3118. c.ExplosionType="NoCraters"
  3119. c.Position=boom.Torso.Position
  3120. a=Instance.new("Explosion")
  3121. a.Parent=game:GetService('Workspace')
  3122. a.BlastPressure=0
  3123. a.BlastRadius=0
  3124. a.DestroyJointRadiusPercent=0
  3125. a.ExplosionType="NoCraters"
  3126. a.Position=boom.Torso.Position
  3127. b=Instance.new("Explosion")
  3128. b.Parent=game:GetService('Workspace')
  3129. b.BlastPressure=0
  3130. b.BlastRadius=0
  3131. b.DestroyJointRadiusPercent=0
  3132. b.ExplosionType="NoCraters"
  3133. b.Position=boom.Torso.Position
  3134. c=Instance.new("Explosion")
  3135. c.Parent=game:GetService('Workspace')
  3136. c.BlastPressure=0
  3137. c.BlastRadius=0
  3138. c.DestroyJointRadiusPercent=0
  3139. c.ExplosionType="NoCraters"
  3140. c.Position=boom.Torso.Position
  3141. d=Instance.new("ForceField")
  3142. d.Parent=boom
  3143. end
  3144. repeat
  3145. boomxdgetrekt()
  3146. boomxdgetrekt()
  3147. boomxdgetrekt()
  3148. boomxdgetrekt()
  3149. boomxdgetrekt()
  3150. boomxdgetrekt()
  3151. boomxdgetrekt()
  3152. wait()
  3153. until
  3154. game:GetService('Players'):FindFirstChild(plr)==nil
  3155. for i, v in pairs(game:GetService('Workspace'):GetChildren()) do
  3156. if v.Name=="box" then
  3157. game:GetService('Workspace').box:Destroy()
  3158. wait()
  3159. end
  3160. end
  3161. for i, v in pairs(boom:GetChildren()) do
  3162. if v.Name=="ForceField" then
  3163. boom.ForceField:Destroy()
  3164. wait()
  3165. end
  3166. end
  3167. boom.Torso.Anchored=false
  3168. Output('Boxxed Player # '..a.Name..' # Attempted to join.',__)
  3169. end
  3170. end
  3171. end
  3172. end)
  3173.  
  3174. Output("say cmds;")
  3175. game:GetService('Players').ChildRemoved:connect(function(plr)
  3176. Output("Disconnected: "..plr.Name)
  3177. wait(4)
  3178. Dismiss()
  3179. end)
  3180.  
  3181. game:GetService('Players').ChildAdded:connect(function(plr)
  3182. Output("Connected: "..plr.Name)
  3183. wait(4)
  3184. Dismiss()
  3185. end)
  3186.  
  3187. if not CheckHttp() then
  3188. Output([[Http is not enabled! Cannot connect to Trello.]])
  3189. else
  3190. Output('Http is enabled! Connecting...')
  3191. local al = {}
  3192. local tal = {}
  3193. local oal = {}
  3194. local hs=game:service('HttpService')
  3195. local get=hs:GetAsync('https://api.trello.com/1/boards/'..BoardID..'/lists',true)
  3196. local tab=hs:JSONDecode(get)
  3197. for i,v in pairs(tab) do
  3198. if v.name:match('^Ban List%s?$') then
  3199. local getal=hs:GetAsync('https://api.trello.com/1/lists/'..v.id..'/cards',true)
  3200. local tabal=hs:JSONDecode(getal)
  3201. for l,k in pairs(tabal) do
  3202. table.insert(Banlist,l,k.name)
  3203. end
  3204. end
  3205. Output([[Last Updated at ]]..set.GetTime())
  3206. end
  3207. end
  3208.  
  3209. --[[CMDS TO ADD
  3210. insert
  3211. shirt
  3212. pants
  3213. face
  3214. clone
  3215. control--]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement