Advertisement
RblxVoidScriptBuild

.

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