Advertisement
samuelrichter66

reviz admin FE

Jun 9th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 148.74 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.  
  154.  
  155. -- Creator: illremember#3799
  156.  
  157. -- Credits to infinite yield, harkinian, dex creators
  158.  
  159. prefix = ":"
  160. wait(0.3)
  161. Commands = {
  162. '[-] cmdbar is shown when ; is pressed.',
  163. '[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player',
  164. '[2] bring [plr] -- You need a tool! Will bring player to you',
  165. '[3] spin [plr] -- You need a tool! Makes you and the player spin crazy',
  166. '[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting',
  167. '[5] attach [plr] -- You need a tool! Attaches you to player',
  168. '[6] unattach [plr] -- Attempts to unattach you from a player',
  169. '[7] follow [plr] -- Makes you follow behind the player',
  170. '[8] unfollow',
  171. '[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air',
  172. '[10] trail [plr] -- The opposite of follow, you stay infront of player',
  173. '[11] untrail',
  174. '[12] orbit [plr] -- Makes you orbit the player',
  175. '[13] unorbit',
  176. '[14] fling [plr] -- Makes you fling the player',
  177. '[15] unfling',
  178. '[16] fecheck -- Checks if the game is FE or not',
  179. '[17] void [plr] -- Teleports player to the void',
  180. '[18] noclip -- Gives you noclip to walk through walls',
  181. '[19] clip -- Removes noclip',
  182. '[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default',
  183. '[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default',
  184. '[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default',
  185. '[23] default -- Changes your speed, jumppower and hipheight to default values',
  186. '[24] annoy [plr] -- Loop teleports you to the player',
  187. '[25] unannoy',
  188. '[26] headwalk [plr] -- Loop teleports you to the player head',
  189. '[27] unheadwalk',
  190. '[28] nolimbs -- Removes your arms and legs',
  191. '[29] god -- Gives you FE Godmode',
  192. '[30] drophats -- Drops your accessories',
  193. '[31] droptool -- Drops any tool you have equipped',
  194. '[32] loopdhats -- Loop drops your accessories',
  195. '[33] unloopdhats',
  196. '[34] loopdtool -- Loop drops any tools you have equipped',
  197. '[35] unloopdtool',
  198. '[36] invisible -- Gives you invisibility CREDIT TO TIMELESS',
  199. '[37] view [plr] -- Changes your camera to the player character',
  200. '[38] unview',
  201. '[39] goto [plr] -- Teleports you to player',
  202. '[40] fly -- Allows you to fly, credit to Infinite Yield',
  203. '[41] unfly',
  204. '[42] chat [msg] -- Makes you chat a message',
  205. '[43] spam [msg] -- Spams a message',
  206. '[44] unspam',
  207. '[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second',
  208. '[46] pmspam [plr] -- Spams a player in private message',
  209. '[47] unpmspam',
  210. '[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you',
  211. '[49] uncfreeze [plr]',
  212. '[50] unlockws -- Unlocks the workspace',
  213. '[51] lockws -- Locks the workspace',
  214. '[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you',
  215. '[53] pstand -- Enables platform stand',
  216. '[54] unpstand -- Disables platform stand',
  217. '[55] blockhead -- Removes your head mesh',
  218. '[56] sit',
  219. '[57] bringobj [obj] -- Only shows on client, brings an object/part to you constantly, can be used to bring healing parts, weapons, money etc, type in exact name',
  220. '[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided',
  221. '[59] hypertotal -- Loads in my FE GUI Hypertotal',
  222. '[60] cmds -- Prints all commands',
  223. '[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats',
  224. '[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool',
  225. '[63] spinner -- Makes you spin',
  226. '[64] nospinner',
  227. '[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom',
  228. '[66] noreach -- Removes reach, must have tool equipped',
  229. '[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying',
  230. '[68] tp me [plr] -- Alternative to goto',
  231. '[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player',
  232. '[70] uncbring',
  233. '[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players',
  234. '[72] givetool [plr] -- Gives the tool you have equipped to the player',
  235. '[73] glitch [plr] -- Glitches you and the player, looks very cool',
  236. '[74] unglitch -- Unglitches you',
  237. '[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode',
  238. '[76] explorer -- Loads up DEX',
  239. '[77] reset -- Resets your character.',
  240. '[78] anim [id] -- Applies an animation on you, must be created by ROBLOX',
  241. '[79] animgui -- Loads up Energize animations GUI',
  242. '[80] savepos -- Saves your current position',
  243. '[81] loadpos -- Teleports you to your saved position',
  244. '[82] bang [plr] -- 18+ will not work if you have FE Godmode on',
  245. '[83] unbang',
  246. '[84] delcmdbar -- Removes the command bar completely',
  247. '[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model',
  248. '[86] shutdown -- Uses harkinians script to shutdown server',
  249. '[87] respawn -- If grespawn doesnt work you can use respawn',
  250. '[88] delobj [obj] -- Deletes a certain brick in workspace, client sided',
  251. '[89] getplrs -- Prints all players in game',
  252. '[90] deldecal -- Deletes all decals client sided',
  253. '[91] opfinality -- Loads in my FE GUI Opfinality',
  254. '[92] remotes -- Prints all remotes in the game in the console when added',
  255. '[93] noremotes -- Stops printing remotes',
  256. '[94] tpdefault -- Stops all loop teleports to a player',
  257. '[95] stopsit -- Will not allow you to sit',
  258. '[96] gosit -- Allows you to sit',
  259. '[97] clicktp -- Enables click tp',
  260. '[98] noclicktp -- Disables click tp',
  261. '[99] toolson -- If any tools are dropped in the workspace you will automatically get them',
  262. '[100] toolsoff -- Stops ;toolson',
  263. '[101] version -- Gets the admin version',
  264. '[102] state [num] -- Changes your humanoid state, ;unstate to stop.',
  265. '[103] gravity [num] -- Changes workspace gravity default is 196.2',
  266. '[104] pgs -- Checks if the game has PGSPhysicsSolverEnabled enabled',
  267. '[105] clickdel -- Delete any block you press q on, client sided',
  268. '[106] noclickdel -- Stops clickdel',
  269. '[107] looprhats -- Loop removes mesh of your hats/loop block hats',
  270. '[108] unlooprhats -- Stops loop removing mesh',
  271. '[109] looprtool -- Loop removes mesh of your tool/loop block tools',
  272. '[110] unlooprtool -- Stops loop removing mesh',
  273. '[111] givealltools [plr] -- Gives all the tools you have in your backpack to the player',
  274. '[112] age [plr] -- Makes you chat the account age of the player',
  275. '[113] id [plr] -- Makes you chat the account ID of the player',
  276. '[114] .age [plr] -- Privately shows you the account age of the player',
  277. '[115] .id [plr] -- Privately shows you the account ID of the player',
  278. '[116] gameid -- Shows the game ID',
  279. '[117] removeinvis -- Removes all invisible walls/parts, client sided',
  280. '[118] removefog -- Removes fog, client sided',
  281. '[119] disable -- Disables your character by removing humanoid',
  282. '[120] enable -- Enables your character by adding humanoid',
  283. '[121] prefix [key] -- Changes the prefix used, default is ;',
  284. '[122] ;resetprefix -- Resets the prefix to ; incase you change it to an unusable prefix. Say exactly ";resetprefix" to do this command, no matter what your prefix is set to.',
  285. '[123] flyspeed [num] -- Change your fly speed, default is 1',
  286. '[124] carpet [plr] -- Makes you a carpet for a player, will not work if FE Godmode is on',
  287. '[125] uncarpet -- Stops carpet player',
  288. '[126] stare [plr] -- Turns your character to stare at another player',
  289. '[127] unstare -- Stops stare player',
  290. '[128] logchat -- Logs all chat (including /e and whispers) of all players',
  291. '[129] unlogchat -- Disables logchat',
  292. '[130] fixcam -- Fixes/resets your camera',
  293. '[131] unstate -- Stops changing state',
  294. }
  295. speedget = 1
  296.  
  297. lplayer = game:GetService("Players").LocalPlayer
  298.  
  299. lplayer.CharacterAdded:Connect(function(character)
  300. spin = false
  301. flying = false
  302. staring = false
  303. banpl = false
  304. end)
  305.  
  306. function change()
  307. prefix = prefix
  308. speedfly = speedfly
  309. end
  310.  
  311. function GetPlayer(String) -- Credit to Timeless/xFunnieuss
  312. local Found = {}
  313. local strl = String:lower()
  314. if strl == "all" then
  315. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  316. table.insert(Found,v)
  317. end
  318. elseif strl == "others" then
  319. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  320. if v.Name ~= lplayer.Name then
  321. table.insert(Found,v)
  322. end
  323. end
  324. elseif strl == "me" then
  325. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  326. if v.Name == lplayer.Name then
  327. table.insert(Found,v)
  328. end
  329. end
  330. else
  331. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  332. if v.Name:lower():sub(1, #String) == String:lower() then
  333. table.insert(Found,v)
  334. end
  335. end
  336. end
  337. return Found
  338. end
  339.  
  340. local Mouse = lplayer:GetMouse()
  341.  
  342. spin = false
  343. followed = false
  344. traill = false
  345. noclip = false
  346. annoying = false
  347. hwalk = false
  348. droppinghats = false
  349. droppingtools = false
  350. flying = false
  351. spamdelay = 1
  352. spamming = false
  353. spammingpm = false
  354. cbringing = false
  355. remotes = true
  356. added = true
  357. binds = false
  358. stopsitting = false
  359. clickgoto = false
  360. gettingtools = false
  361. removingmeshhats = false
  362. removingmeshtool = false
  363. clickdel = false
  364. staring = false
  365. chatlogs = false
  366. banpl = false
  367. changingstate = false
  368. statechosen = 0
  369.  
  370. adminversion = "Reviz Admin by illremember, Version 2.0"
  371.  
  372. flying = false
  373. speedfly = 1
  374.  
  375. function plrchat(plr, chat)
  376. print(plr.Name..": "..tick().."\n"..chat)
  377. end
  378.  
  379. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  380. v.Chatted:connect(function(chat)
  381. if chatlogs then
  382. plrchat(v, chat)
  383. end
  384. end)
  385. end
  386. game:GetService("Players").PlayerAdded:connect(function(plr)
  387. plr.Chatted:connect(function(chat)
  388. if chatlogs then
  389. plrchat(plr, chat)
  390. end
  391. end)
  392. end)
  393.  
  394.  
  395. local ScreenGui = Instance.new("ScreenGui")
  396. local Frame = Instance.new("Frame")
  397. local CMDBAR = Instance.new("TextBox")
  398. ScreenGui.Parent = game:GetService("CoreGui")
  399. Frame.Parent = ScreenGui
  400. Frame.BackgroundColor3 = Color3.new(0.3, 0.1, 0.1)
  401. Frame.BackgroundTransparency = 0.3
  402. Frame.Position = UDim2.new(0.5, 0, 0, 10)
  403. Frame.Size = UDim2.new(0, 200, 0, 40)
  404. Frame.Active = true
  405. Frame.Draggable = true
  406. CMDBAR.Name = "CMDBAR"
  407. CMDBAR.Parent = Frame
  408. CMDBAR.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  409. CMDBAR.BackgroundTransparency = 0.20000000298023
  410. CMDBAR.Size = UDim2.new(0, 180, 0, 20)
  411. CMDBAR.Position = UDim2.new(0.05, 0, 0.25, 0)
  412. CMDBAR.Font = Enum.Font.SourceSansLight
  413. CMDBAR.FontSize = Enum.FontSize.Size14
  414. CMDBAR.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  415. CMDBAR.TextScaled = true
  416. CMDBAR.TextSize = 14
  417. CMDBAR.TextWrapped = true
  418. CMDBAR.Text = "Press ; to type, Enter to execute"
  419.  
  420. local CMDS = Instance.new("ScreenGui")
  421. local CMDSFRAME = Instance.new("Frame")
  422. local ScrollingFrame = Instance.new("ScrollingFrame")
  423. local TextLabel = Instance.new("TextLabel")
  424. local closegui = Instance.new("TextButton")
  425. CMDS.Name = "CMDS"
  426. CMDS.Parent = game:GetService("CoreGui")
  427. CMDSFRAME.Name = "CMDSFRAME"
  428. CMDSFRAME.Parent = CMDS
  429. CMDSFRAME.Active = true
  430. CMDSFRAME.BackgroundColor3 = Color3.new(0.223529, 0.231373, 0.309804)
  431. CMDSFRAME.BorderSizePixel = 0
  432. CMDSFRAME.Draggable = true
  433. CMDSFRAME.Position = UDim2.new(0, 315, 0, 100)
  434. CMDSFRAME.Size = UDim2.new(0, 275, 0, 275)
  435. CMDSFRAME.Visible = false
  436. ScrollingFrame.Parent = CMDSFRAME
  437. ScrollingFrame.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.203922)
  438. ScrollingFrame.BorderSizePixel = 0
  439. ScrollingFrame.Position = UDim2.new(0, 0, 0.0729999989, 0)
  440. ScrollingFrame.Size = UDim2.new(1.04999995, 0, 0.92900002, 0)
  441. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
  442. TextLabel.Parent = ScrollingFrame
  443. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  444. TextLabel.BackgroundTransparency = 1
  445. TextLabel.Size = UDim2.new(0.930000007, 0, 1, 0)
  446. TextLabel.Font = Enum.Font.SourceSans
  447. TextLabel.FontSize = Enum.FontSize.Size18
  448. TextLabel.Text = "[-] cmdbar is shown when ; is pressed.,\n[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player,\n[2] bring [plr] -- You need a tool! Will bring player to you,\n[3] spin [plr] -- You need a tool! Makes you and the player spin crazy,\n[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting,\n[5] attach [plr] -- You need a tool! Attaches you to player,\n[6] unattach [plr] -- Attempts to unattach you from a player,\n[7] follow [plr] -- Makes you follow behind the player,\n[8] unfollow,\n[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air,\n[10] trail [plr] -- The opposite of follow, you stay infront of player,\n[11] untrail,\n[12] orbit [plr] -- Makes you orbit the player,\n[13] unorbit,\n[14] fling [plr] -- Makes you fling the player,\n[15] unfling,\n[16] fecheck -- Checks if the game is FE or not,\n[17] void [plr] -- Teleports player to the void,\n[18] noclip -- Gives you noclip to walk through walls,\n[19] clip -- Removes noclip,\n[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default,\n[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default,\n[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default,\n[23] default -- Changes your speed, jumppower and hipheight to default values,\n[24] annoy [plr] -- Loop teleports you to the player,\n[25] unannoy,\n[26] headwalk [plr] -- Loop teleports you to the player head,\n[27] unheadwalk,\n[28] nolimbs -- Removes your arms and legs,\n[29] god -- Gives you FE Godmode,\n[30] drophats -- Drops your accessories,\n[31] droptool -- Drops any tool you have equipped,\n[32] loopdhats -- Loop drops your accessories,\n[33] unloopdhats,\n[34] loopdtool -- Loop drops any tools you have equipped,\n[35] unloopdtool,\n[36] invisible -- Gives you invisibility CREDIT TO TIMELESS,\n[37] view [plr] -- Changes your camera to the player character,\n[38] unview,\n[39] goto [plr] -- Teleports you to player,\n[40] fly -- Allows you to fly,\n[41] unfly,\n[42] chat [msg] -- Makes you chat a message,\n[43] spam [msg] -- Spams a message,\n[44] unspam,\n[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second,\n[46] pmspam [plr] -- Spams a player in private message,\n[47] unpmspam,\n[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you,\n[49] uncfreeze [plr],\n[50] unlockws -- Unlocks the workspace,\n[51] lockws -- Locks the workspace,\n[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you,\n[53] pstand -- Enables platform stand,\n[54] unpstand -- Disables platform stand,\n[55] blockhead -- Removes your head mesh,\n[56] sit,\n[57] bringobj [obj] -- Only shows on client, brings an object/part to you constantly, can be used to bring healing parts, weapons, money etc, type in exact name,\n[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided,\n[59] hypertotal -- Loads in my FE GUI Hypertotal,\n[60] cmds -- Prints all commands,\n[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats,\n[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool,\n[63] spinner -- Makes you spin,\n[64] nospinner,\n[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom,\n[66] noreach -- Removes reach, must have tool equipped,\n[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying,\n[68] tp me [plr] -- Alternative to goto,\n[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player,\n[70] uncbring,\n[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players,\n[72] givetool [plr] -- Gives the tool you have equipped to the player,\n[73] glitch [plr] -- Glitches you and the player, looks very cool,\n[74] unglitch -- Unglitches you,\n[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode,\n[76] explorer -- Loads up DEX,\n[77] reset -- Resets your character.,\n[78] anim [id] -- Applies an animation on you, must be created by ROBLOX,\n[79] animgui -- Loads up Energize animations GUI,\n[80] savepos -- Saves your current position,\n[81] loadpos -- Teleports you to your saved position,\n[82] bang [plr] -- 18+,\n[83] unbang,\n[84] delcmdbar -- Removes the command bar completely,\n[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model,\n[86] shutdown -- Uses harkinians script to shutdown server,\n[87] respawn -- If grespawn doesnt work you can use respawn,\n[88] delobj [obj] -- Deletes a certain brick in workspace, client sided,\n[89] getplrs -- Prints all players in game,\n[90] deldecal -- Deletes all decals client sided,\n[91] opfinality -- Loads in my FE GUI Opfinality,\n[92] remotes -- Prints all remotes in the game in the console when added,\n[93] noremotes -- Stops printing remotes,\n[94] tpdefault -- Stops all loop teleports to a player,\n[95] stopsit -- Will not allow you to sit,\n[96] gosit -- Allows you to sit,\n[97] clicktp -- Enables click tp,\n[98] noclicktp -- Disables click tp,\n[99] toolson -- If any tools are dropped in the workspace you will automatically get them,\n[100] toolsoff -- Stops ;toolson,\n[101] version -- Gets the admin version, \n This list of commands is NOT showing everything, go to my thread in the pastebin link to see ALL commands."
  449. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  450. TextLabel.TextSize = 15
  451. TextLabel.TextWrapped = true
  452. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  453. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  454. closegui.Name = "closegui"
  455. closegui.Parent = CMDSFRAME
  456. closegui.BackgroundColor3 = Color3.new(0.890196, 0.223529, 0.0588235)
  457. closegui.BorderSizePixel = 0
  458. closegui.Position = UDim2.new(0.995000005, 0, 0, 0)
  459. closegui.Size = UDim2.new(0.0545952693, 0, 0.0728644878, 0)
  460. closegui.Font = Enum.Font.SourceSansBold
  461. closegui.FontSize = Enum.FontSize.Size24
  462. closegui.Text = "X"
  463. closegui.TextColor3 = Color3.new(1, 1, 1)
  464. closegui.TextSize = 20
  465.  
  466. closegui.MouseButton1Click:connect(function()
  467. CMDSFRAME.Visible = false
  468. end)
  469.  
  470. game:GetService('RunService').Stepped:connect(function()
  471. if spin then
  472. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[spinplr.Name].Character.HumanoidRootPart.CFrame
  473. end
  474. if followed then
  475. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * -5
  476. end
  477. if traill then
  478. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * 5
  479. end
  480. if annoying then
  481. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[annplr.Name].Character.HumanoidRootPart.CFrame
  482. end
  483. if hwalk then
  484. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[hdwplr.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0, 4, 0)
  485. end
  486. if staring then
  487. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(lplayer.Character.Torso.Position, game:GetService("Players")[stareplr.Name].Character.Torso.Position)
  488. end
  489. end)
  490. game:GetService('RunService').Stepped:connect(function()
  491. if noclip then
  492. if lplayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  493. lplayer.Character.Head.CanCollide = false
  494. lplayer.Character.Torso.CanCollide = false
  495. lplayer.Character["Left Leg"].CanCollide = false
  496. lplayer.Character["Right Leg"].CanCollide = false
  497. else
  498. lplayer.Character.Humanoid:ChangeState(11)
  499. end
  500. end
  501. if changingstate then
  502. lplayer.Character.Humanoid:ChangeState(statechosen)
  503. end
  504. end)
  505. game:GetService('RunService').Stepped:connect(function()
  506. if droppinghats then
  507. for i,v in pairs(lplayer.Character:GetChildren()) do
  508. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  509. v.Parent = workspace
  510. end
  511. end
  512. end
  513. if droppingtools then
  514. for i,v in pairs(lplayer.Character:GetChildren()) do
  515. if (v:IsA("Tool")) then
  516. v.Parent = workspace
  517. end
  518. end
  519. end
  520. if removingmeshhats then
  521. for i,v in pairs(lplayer.Character:GetChildren()) do
  522. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  523. v.Handle.Mesh:Destroy()
  524. end
  525. end
  526. end
  527. if removingmeshtool then
  528. for i,v in pairs(lplayer.Character:GetChildren()) do
  529. if (v:IsA("Tool")) then
  530. v.Handle.Mesh:Destroy()
  531. end
  532. end
  533. end
  534. end)
  535. game:GetService('RunService').Stepped:connect(function()
  536. if banpl then
  537. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[bplrr].Character.HumanoidRootPart.CFrame
  538. end
  539. end)
  540. game:GetService('RunService').Stepped:connect(function()
  541. if stopsitting then
  542. lplayer.Character.Humanoid.Sit = false
  543. end
  544. end)
  545.  
  546. plr = lplayer
  547. hum = plr.Character.HumanoidRootPart
  548. mouse = plr:GetMouse()
  549. mouse.KeyDown:connect(function(key)
  550. if key == "e" then
  551. if mouse.Target then
  552. if clickgoto then
  553. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  554. elseif clickdel then
  555. mouse.Target:Destroy()
  556. end
  557. end
  558. end
  559. end)
  560.  
  561. game:GetService("Workspace").ChildAdded:connect(function(part)
  562. if gettingtools then
  563. if part:IsA("Tool") then
  564. part.Handle.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  565. end
  566. end
  567. end)
  568.  
  569. lplayer.Chatted:Connect(function(msg)
  570. if string.sub(msg, 1, 6) == (prefix.."kill ") then
  571. if string.sub(msg, 7) == "me" then
  572. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  573. else
  574. for i,v in pairs(GetPlayer(string.sub(msg, 7)))do
  575. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  576. lplayer.Character.Humanoid.Name = 1
  577. local l = lplayer.Character["1"]:Clone()
  578. l.Parent = lplayer.Character
  579. l.Name = "Humanoid"
  580. wait(0.1)
  581. lplayer.Character["1"]:Destroy()
  582. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  583. lplayer.Character.Animate.Disabled = true
  584. wait(0.1)
  585. lplayer.Character.Animate.Disabled = false
  586. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  587. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  588. lplayer.Character.Humanoid:EquipTool(v)
  589. end
  590. local function tp(player,player2)
  591. local char1,char2=player.Character,player2.Character
  592. if char1 and char2 then
  593. char1:MoveTo(char2.Head.Position)
  594. end
  595. end
  596. wait(0.1)
  597. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  598. wait(0.2)
  599. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  600. wait(0.5)
  601. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  602. wait(0.7)
  603. tp(lplayer,game:GetService("Players")[v.Name])
  604. wait(0.7)
  605. lplayer.Character.HumanoidRootPart.CFrame = NOW
  606. game:GetService("StarterGui"):SetCore("SendNotification", {
  607. Title = "Tools needed!";
  608. Text = "You need a tool in your backpack for this command!";
  609. })
  610. end
  611. end
  612. end
  613. if string.sub(msg, 1, 7) == (prefix.."bring ") then
  614. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  615. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  616. lplayer.Character.Humanoid.Name = 1
  617. local l = lplayer.Character["1"]:Clone()
  618. l.Parent = lplayer.Character
  619. l.Name = "Humanoid"
  620. wait(0.1)
  621. lplayer.Character["1"]:Destroy()
  622. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  623. lplayer.Character.Animate.Disabled = true
  624. wait(0.1)
  625. lplayer.Character.Animate.Disabled = false
  626. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  627. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  628. lplayer.Character.Humanoid:EquipTool(v)
  629. end
  630. local function tp(player,player2)
  631. local char1,char2=player.Character,player2.Character
  632. if char1 and char2 then
  633. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  634. end
  635. end
  636. local function getout(player,player2)
  637. local char1,char2=player.Character,player2.Character
  638. if char1 and char2 then
  639. char1:MoveTo(char2.Head.Position)
  640. end
  641. end
  642. tp(game:GetService("Players")[v.Name], lplayer)
  643. wait(0.2)
  644. tp(game:GetService("Players")[v.Name], lplayer)
  645. wait(0.5)
  646. lplayer.Character.HumanoidRootPart.CFrame = NOW
  647. wait(0.5)
  648. getout(lplayer, game:GetService("Players")[v.Name])
  649. wait(0.3)
  650. lplayer.Character.HumanoidRootPart.CFrame = NOW
  651. game:GetService("StarterGui"):SetCore("SendNotification", {
  652. Title = "Tools needed!";
  653. Text = "You need a tool in your backpack for this command!";
  654. })
  655. end
  656. end
  657. if string.sub(msg, 1, 6) == (prefix.."spin ") then
  658. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  659. lplayer.Character.Humanoid.Name = 1
  660. local l = lplayer.Character["1"]:Clone()
  661. l.Parent = lplayer.Character
  662. l.Name = "Humanoid"
  663. wait(0.1)
  664. lplayer.Character["1"]:Destroy()
  665. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  666. lplayer.Character.Animate.Disabled = true
  667. wait(0.1)
  668. lplayer.Character.Animate.Disabled = false
  669. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  670. lplayer.Character.Animate.Disabled = false
  671. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  672. lplayer.Character.Humanoid:EquipTool(v)
  673. end
  674. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  675. spinplr = v
  676. wait(0.5)
  677. spin = true
  678. game:GetService("StarterGui"):SetCore("SendNotification", {
  679. Title = "Tools needed!";
  680. Text = "You need a tool in your backpack for this command!";
  681. })
  682. end
  683. end
  684. if string.sub(msg, 1, 7) == (prefix.."unspin") then
  685. spin = false
  686. end
  687. if string.sub(msg, 1, 8) == (prefix.."attach ") then
  688. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  689. lplayer.Character.Humanoid.Name = 1
  690. local l = lplayer.Character["1"]:Clone()
  691. l.Parent = lplayer.Character
  692. l.Name = "Humanoid"
  693. wait(0.1)
  694. lplayer.Character["1"]:Destroy()
  695. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  696. lplayer.Character.Animate.Disabled = true
  697. wait(0.1)
  698. lplayer.Character.Animate.Disabled = false
  699. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  700. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  701. lplayer.Character.Humanoid:EquipTool(v)
  702. end
  703. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  704. wait(0.3)
  705. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  706. attplr = v
  707. game:GetService("StarterGui"):SetCore("SendNotification", {
  708. Title = "Tools needed!";
  709. Text = "You need a tool in your backpack for this command!";
  710. })
  711. end
  712. end
  713. if string.sub(msg, 1, 10) == (prefix.."unattach ") then
  714. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  715. local function getout(player,player2)
  716. local char1,char2=player.Character,player2.Character
  717. if char1 and char2 then
  718. char1:MoveTo(char2.Head.Position)
  719. end
  720. end
  721. getout(lplayer, game:GetService("Players")[v.Name])
  722. end
  723. end
  724. if string.sub(msg, 1, 8) == (prefix.."follow ") then
  725. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  726. followed = true
  727. flwplr = v
  728. end
  729. end
  730. if string.sub(msg, 1, 9) == (prefix.."unfollow") then
  731. followed = false
  732. end
  733. if string.sub(msg, 1, 10) == (prefix.."freefall ") then
  734. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  735. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  736. lplayer.Character.Humanoid.Name = 1
  737. local l = lplayer.Character["1"]:Clone()
  738. l.Parent = lplayer.Character
  739. l.Name = "Humanoid"
  740. wait(0.1)
  741. lplayer.Character["1"]:Destroy()
  742. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  743. lplayer.Character.Animate.Disabled = true
  744. wait(0.1)
  745. lplayer.Character.Animate.Disabled = false
  746. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  747. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  748. lplayer.Character.Humanoid:EquipTool(v)
  749. end
  750. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  751. wait(0.2)
  752. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  753. wait(0.6)
  754. lplayer.Character.HumanoidRootPart.CFrame = NOW
  755. wait(0.6)
  756. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  757. game:GetService("StarterGui"):SetCore("SendNotification", {
  758. Title = "Tools needed!";
  759. Text = "You need a tool in your backpack for this command!";
  760. })
  761. end
  762. end
  763. if string.sub(msg, 1, 7) == (prefix.."trail ") then
  764. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  765. traill = true
  766. trlplr = v
  767. end
  768. end
  769. if string.sub(msg, 1, 8) == (prefix.."untrail") then
  770. traill = false
  771. end
  772. if string.sub(msg, 1, 7) == (prefix.."orbit ") then
  773. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  774. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  775. else
  776. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  777. local o = Instance.new("RocketPropulsion")
  778. o.Parent = lplayer.Character.HumanoidRootPart
  779. o.Name = "Orbit"
  780. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  781. o:Fire()
  782. noclip = true
  783. end
  784. end
  785. end
  786. if string.sub(msg, 1, 8) == (prefix.."unorbit") then
  787. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  788. noclip = false
  789. end
  790. if string.sub(msg, 1, 7) == (prefix.."fling ") then
  791. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  792. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  793. else
  794. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  795. local y = Instance.new("RocketPropulsion")
  796. y.Parent = lplayer.Character.HumanoidRootPart
  797. y.CartoonFactor = 1
  798. y.MaxThrust = 800000
  799. y.MaxSpeed = 1000
  800. y.ThrustP = 200000
  801. y.Name = "Fling"
  802. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  803. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  804. y:Fire()
  805. noclip = true
  806. end
  807. end
  808. end
  809. if string.sub(msg, 1, 8) == (prefix.."unfling") then
  810. noclip = false
  811. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  812. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  813. wait(0.4)
  814. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  815. end
  816. if string.sub(msg, 1, 8) == (prefix.."fecheck") then
  817. if game:GetService("Workspace").FilteringEnabled == true then
  818. warn("FE is Enabled (Filtering Enabled)")
  819. game:GetService("StarterGui"):SetCore("SendNotification", {
  820. Title = "FE is Enabled";
  821. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  822. })
  823. else
  824. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  825. game:GetService("StarterGui"):SetCore("SendNotification", {
  826. Title = "FE is Disabled";
  827. Text = "Filtering Disabled. Consider using a different admin script.";
  828. })
  829. end
  830. end
  831. if string.sub(msg, 1, 6) == (prefix.."void ") then
  832. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  833. lplayer.Character.Humanoid.Name = 1
  834. local l = lplayer.Character["1"]:Clone()
  835. l.Parent = lplayer.Character
  836. l.Name = "Humanoid"
  837. wait(0.1)
  838. lplayer.Character["1"]:Destroy()
  839. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  840. lplayer.Character.Animate.Disabled = true
  841. wait(0.1)
  842. lplayer.Character.Animate.Disabled = false
  843. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  844. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  845. lplayer.Character.Humanoid:EquipTool(v)
  846. end
  847. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  848. wait(0.2)
  849. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  850. wait(0.6)
  851. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  852. game:GetService("StarterGui"):SetCore("SendNotification", {
  853. Title = "Tools needed!";
  854. Text = "You need a tool in your backpack for this command!";
  855. })
  856. end
  857. end
  858. if string.sub(msg, 1, 7) == (prefix.."noclip") then
  859. noclip = true
  860. game:GetService("StarterGui"):SetCore("SendNotification", {
  861. Title = "Noclip enabled";
  862. Text = "Type ;clip to disable";
  863. })
  864. end
  865. if string.sub(msg, 1, 5) == (prefix.."clip") then
  866. noclip = false
  867. game:GetService("StarterGui"):SetCore("SendNotification", {
  868. Title = "Noclip disabled";
  869. Text = "Type ;noclip to enable";
  870. })
  871. end
  872. if string.sub(msg, 1, 7) == (prefix.."speed ") then
  873. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 8))
  874. end
  875. if string.sub(msg, 1, 4) == (prefix.."ws ") then
  876. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 5))
  877. end
  878. if string.sub(msg, 1, 11) == (prefix.."hipheight ") then
  879. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 12))
  880. end
  881. if string.sub(msg, 1, 4) == (prefix.."hh ") then
  882. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 5))
  883. end
  884. if string.sub(msg, 1, 11) == (prefix.."jumppower ") then
  885. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 12))
  886. end
  887. if string.sub(msg, 1, 4) == (prefix.."jp ") then
  888. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 5))
  889. end
  890. if string.sub(msg, 1, 8) == (prefix.."default") then
  891. lplayer.Character.Humanoid.JumpPower = 50
  892. lplayer.Character.Humanoid.WalkSpeed = 16
  893. lplayer.Character.Humanoid.HipHeight = 0
  894. end
  895. if string.sub(msg, 1, 7) == (prefix.."annoy ") then
  896. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  897. annoying = true
  898. annplr = v
  899. end
  900. end
  901. if string.sub(msg, 1, 8) == (prefix.."unannoy") then
  902. annoying = false
  903. end
  904. if string.sub(msg, 1, 10) == (prefix.."headwalk ") then
  905. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  906. hwalk = true
  907. hdwplr = v
  908. end
  909. end
  910. if string.sub(msg, 1, 11) == (prefix.."unheadwalk") then
  911. hwalk = false
  912. end
  913. if string.sub(msg, 1, 8) == (prefix.."nolimbs") then
  914. lplayer.Character["Left Leg"]:Destroy()
  915. lplayer.Character["Left Arm"]:Destroy()
  916. lplayer.Character["Right Leg"]:Destroy()
  917. lplayer.Character["Right Arm"]:Destroy()
  918. end
  919. if string.sub(msg, 1, 4) == (prefix.."god") then
  920. lplayer.Character.Humanoid.Name = 1
  921. local l = lplayer.Character["1"]:Clone()
  922. l.Parent = lplayer.Character
  923. l.Name = "Humanoid"
  924. wait(0.1)
  925. lplayer.Character["1"]:Destroy()
  926. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  927. lplayer.Character.Animate.Disabled = true
  928. wait(0.1)
  929. lplayer.Character.Animate.Disabled = false
  930. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  931. game:GetService("StarterGui"):SetCore("SendNotification", {
  932. Title = "FE Godmode enabled";
  933. Text = "Use ;grespawn or ;respawn to remove";
  934. })
  935. end
  936. if string.sub(msg, 1, 9) == (prefix.."drophats") then
  937. for i,v in pairs(lplayer.Character:GetChildren()) do
  938. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  939. v.Parent = workspace
  940. end
  941. end
  942. end
  943. if string.sub(msg, 1, 9) == (prefix.."droptool") then
  944. for i,v in pairs(lplayer.Character:GetChildren()) do
  945. if (v:IsA("Tool")) then
  946. v.Parent = workspace
  947. end
  948. end
  949. end
  950. if string.sub(msg, 1, 10) == (prefix.."loopdhats") then
  951. droppinghats = true
  952. game:GetService("StarterGui"):SetCore("SendNotification", {
  953. Title = "Loop Drop Enabled";
  954. Text = "Type ;unloopdhats to disable";
  955. })
  956. end
  957. if string.sub(msg, 1, 12) == (prefix.."unloopdhats") then
  958. droppinghats = false
  959. game:GetService("StarterGui"):SetCore("SendNotification", {
  960. Title = "Loop Drop Disabled";
  961. Text = "Type ;loopdhats to enable.";
  962. })
  963. end
  964. if string.sub(msg, 1, 10) == (prefix.."loopdtool") then
  965. droppingtools = true
  966. game:GetService("StarterGui"):SetCore("SendNotification", {
  967. Title = "Loop Drop Enabled";
  968. Text = "Type ;unloopdtool to disable";
  969. })
  970. end
  971. if string.sub(msg, 1, 12) == (prefix.."unloopdtool") then
  972. droppingtools = false
  973. game:GetService("StarterGui"):SetCore("SendNotification", {
  974. Title = "Loop Drop Disabled";
  975. Text = "Type ;loopdtool to enable.";
  976. })
  977. end
  978. if string.sub(msg, 1, 10) == (prefix.."invisible") then -- Credit to Timeless
  979. Local = game:GetService('Players').LocalPlayer
  980. Char = Local.Character
  981. touched,tpdback = false, false
  982. box = Instance.new('Part',workspace)
  983. box.Anchored = true
  984. box.CanCollide = true
  985. box.Size = Vector3.new(10,1,10)
  986. box.Position = Vector3.new(0,10000,0)
  987. box.Touched:connect(function(part)
  988. if (part.Parent.Name == Local.Name) then
  989. if touched == false then
  990. touched = true
  991. function apply()
  992. if script.Disabled ~= true then
  993. no = Char.HumanoidRootPart:Clone()
  994. wait(.25)
  995. Char.HumanoidRootPart:Destroy()
  996. no.Parent = Char
  997. Char:MoveTo(loc)
  998. touched = false
  999. end end
  1000. if Char then
  1001. apply()
  1002. end
  1003. end
  1004. end
  1005. end)
  1006. repeat wait() until Char
  1007. loc = Char.HumanoidRootPart.Position
  1008. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  1009. game:GetService("StarterGui"):SetCore("SendNotification", {
  1010. Title = "Invisibility enabled!";
  1011. Text = "Reset or use ;respawn to remove.";
  1012. })
  1013. end
  1014. if string.sub(msg, 1, 6) == (prefix.."view ") then
  1015. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  1016. if game:GetService("Players")[v.Name].Character.Humanoid then
  1017. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  1018. else
  1019. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  1020. end
  1021. end
  1022. end
  1023. if string.sub(msg, 1, 7) == (prefix.."unview") then
  1024. if lplayer.Character.Humanoid then
  1025. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  1026. else
  1027. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  1028. end
  1029. end
  1030. if string.sub(msg, 1, 6) == (prefix.."goto ") then
  1031. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  1032. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  1033. end
  1034. end
  1035. if string.sub(msg, 1, 4) == (prefix.."fly") then
  1036. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  1037. repeat wait() until Mouse
  1038.  
  1039. local T = lplayer.Character.HumanoidRootPart
  1040. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  1041. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  1042. local SPEED = speedget
  1043.  
  1044. local function fly()
  1045. flying = true
  1046. local BG = Instance.new('BodyGyro', T)
  1047. local BV = Instance.new('BodyVelocity', T)
  1048. BG.P = 9e4
  1049. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1050. BG.cframe = T.CFrame
  1051. BV.velocity = Vector3.new(0, 0.1, 0)
  1052. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1053. spawn(function()
  1054. repeat wait()
  1055. lplayer.Character.Humanoid.PlatformStand = true
  1056. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  1057. SPEED = 50
  1058. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  1059. SPEED = 0
  1060. end
  1061. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  1062. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  1063. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  1064. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  1065. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  1066. else
  1067. BV.velocity = Vector3.new(0, 0.1, 0)
  1068. end
  1069. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  1070. until not flying
  1071. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  1072. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  1073. SPEED = 0
  1074. BG:destroy()
  1075. BV:destroy()
  1076. lplayer.Character.Humanoid.PlatformStand = false
  1077. end)
  1078. end
  1079. Mouse.KeyDown:connect(function(KEY)
  1080. if KEY:lower() == 'w' then
  1081. CONTROL.F = speedfly
  1082. elseif KEY:lower() == 's' then
  1083. CONTROL.B = -speedfly
  1084. elseif KEY:lower() == 'a' then
  1085. CONTROL.L = -speedfly
  1086. elseif KEY:lower() == 'd' then
  1087. CONTROL.R = speedfly
  1088. end
  1089. end)
  1090. Mouse.KeyUp:connect(function(KEY)
  1091. if KEY:lower() == 'w' then
  1092. CONTROL.F = 0
  1093. elseif KEY:lower() == 's' then
  1094. CONTROL.B = 0
  1095. elseif KEY:lower() == 'a' then
  1096. CONTROL.L = 0
  1097. elseif KEY:lower() == 'd' then
  1098. CONTROL.R = 0
  1099. end
  1100. end)
  1101. fly()
  1102. end
  1103. if string.sub(msg, 1, 6) == (prefix.."unfly") then
  1104. flying = false
  1105. lplayer.Character.Humanoid.PlatformStand = false
  1106. end
  1107. if string.sub(msg, 1, 6) == (prefix.."chat ") then
  1108. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(msg, 7)), "All")
  1109. end
  1110. if string.sub(msg, 1, 6) == (prefix.."spam ") then
  1111. spamtext = (string.sub(msg, 7))
  1112. spamming = true
  1113. end
  1114. if string.sub(msg, 1, 7) == (prefix.."unspam") then
  1115. spamming = false
  1116. end
  1117. if string.sub(msg, 1, 10) == (prefix.."spamwait ") then
  1118. spamdelay = (string.sub(msg, 11))
  1119. end
  1120. if string.sub(msg, 1, 8) == (prefix.."pmspam ") then
  1121. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  1122. pmspammed = v.Name
  1123. spammingpm = true
  1124. end
  1125. end
  1126. if string.sub(msg, 1, 9) == (prefix.."unpmspam") then
  1127. spammingpm = false
  1128. end
  1129. if string.sub(msg, 1, 9) == (prefix.."cfreeze ") then
  1130. for i,v in pairs(GetPlayer(string.sub(msg, 10))) do
  1131. v.Character["Left Leg"].Anchored = true
  1132. v.Character["Left Arm"].Anchored = true
  1133. v.Character["Right Leg"].Anchored = true
  1134. v.Character["Right Arm"].Anchored = true
  1135. v.Character.Torso.Anchored = true
  1136. v.Character.Head.Anchored = true
  1137. end
  1138. end
  1139. if string.sub(msg, 1, 11) == (prefix.."uncfreeze ") then
  1140. for i,v in pairs(GetPlayer(string.sub(msg, 12))) do
  1141. v.Character["Left Leg"].Anchored = false
  1142. v.Character["Left Arm"].Anchored = false
  1143. v.Character["Right Leg"].Anchored = false
  1144. v.Character["Right Arm"].Anchored = false
  1145. v.Character.Torso.Anchored = false
  1146. v.Character.Head.Anchored = false
  1147. end
  1148. end
  1149. if string.sub(msg, 1, 9) == (prefix.."unlockws") then
  1150. local a = game:GetService("Workspace"):getChildren()
  1151. for i = 1, #a do
  1152. if a[i].className == "Part" then
  1153. a[i].Locked = false
  1154. elseif a[i].className == "Model" then
  1155. local r = a[i]:getChildren()
  1156. for i = 1, #r do
  1157. if r[i].className == "Part" then
  1158. r[i].Locked = false
  1159. end
  1160. end
  1161. end
  1162. end
  1163. game:GetService("StarterGui"):SetCore("SendNotification", {
  1164. Title = "Success!";
  1165. Text = "Workspace unlocked. Use ;lockws to lock.";
  1166. })
  1167. end
  1168. if string.sub(msg, 1, 7) == (prefix.."lockws") then
  1169. local a = game:GetService("Workspace"):getChildren()
  1170. for i = 1, #a do
  1171. if a[i].className == "Part" then
  1172. a[i].Locked = true
  1173. elseif a[i].className == "Model" then
  1174. local r = a[i]:getChildren()
  1175. for i = 1, #r do
  1176. if r[i].className == "Part" then
  1177. r[i].Locked = true
  1178. end
  1179. end
  1180. end
  1181. end
  1182. end
  1183. if string.sub(msg, 1, 7) == (prefix.."btools") then
  1184. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  1185. Clone_T.BinType = "Clone"
  1186. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  1187. Destruct.BinType = "Hammer"
  1188. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  1189. Hold_T.BinType = "Grab"
  1190. end
  1191. if string.sub(msg, 1, 7) == (prefix.."pstand") then
  1192. lplayer.Character.Humanoid.PlatformStand = true
  1193. end
  1194. if string.sub(msg, 1, 9) == (prefix.."unpstand") then
  1195. lplayer.Character.Humanoid.PlatformStand = false
  1196. end
  1197. if string.sub(msg, 1, 10) == (prefix.."blockhead") then
  1198. lplayer.Character.Head.Mesh:Destroy()
  1199. end
  1200. if string.sub(msg, 1, 4) == (prefix.."sit") then
  1201. lplayer.Character.Humanoid.Sit = true
  1202. end
  1203. if string.sub(msg, 1, 10) == (prefix.."bringobj ") then
  1204. local function bringobjw()
  1205. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  1206. if obj.Name == (string.sub(msg, 11)) then
  1207. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  1208. obj.CanCollide = false
  1209. obj.Transparency = 0.7
  1210. wait()
  1211. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  1212. wait()
  1213. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  1214. wait()
  1215. obj.CFrame = lplayer.Character["Head"].CFrame
  1216. end
  1217. end
  1218. end
  1219. while wait() do
  1220. bringobjw()
  1221. end
  1222. game:GetService("StarterGui"):SetCore("SendNotification", {
  1223. Title = "BringObj";
  1224. Text = "BringObj enabled.";
  1225. })
  1226. end
  1227. if string.sub(msg, 1, 7) == (prefix.."wsvis ") then
  1228. vis = (string.sub(msg, 8))
  1229. local a = game:GetService("Workspace"):GetDescendants()
  1230. for i = 1, #a do
  1231. if a[i].className == "Part" then
  1232. a[i].Transparency = vis
  1233. elseif a[i].className == "Model" then
  1234. local r = a[i]:getChildren()
  1235. for i = 1, #r do
  1236. if r[i].className == "Part" then
  1237. r[i].Transparency = vis
  1238. end
  1239. end
  1240. end
  1241. end
  1242. end
  1243. if string.sub(msg, 1, 11) == (prefix.."hypertotal") then
  1244. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  1245. game:GetService("StarterGui"):SetCore("SendNotification", {
  1246. Title = "Success!";
  1247. Text = "HyperTotal GUI Loaded!";
  1248. })
  1249. end
  1250. if string.sub(msg, 1, 5) == (prefix.."cmds") then
  1251. CMDSFRAME.Visible = true
  1252. end
  1253. if string.sub(msg, 1, 10) == (prefix.."rmeshhats") then
  1254. for i,v in pairs(lplayer.Character:GetChildren()) do
  1255. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  1256. v.Handle.Mesh:Destroy()
  1257. end
  1258. end
  1259. end
  1260. if string.sub(msg, 1, 10) == (prefix.."blockhats") then
  1261. for i,v in pairs(lplayer.Character:GetChildren()) do
  1262. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  1263. v.Handle.Mesh:Destroy()
  1264. end
  1265. end
  1266. end
  1267. if string.sub(msg, 1, 10) == (prefix.."rmeshtool") then
  1268. for i,v in pairs(lplayer.Character:GetChildren()) do
  1269. if (v:IsA("Tool")) then
  1270. v.Handle.Mesh:Destroy()
  1271. end
  1272. end
  1273. end
  1274. if string.sub(msg, 1, 10) == (prefix.."blocktool") then
  1275. for i,v in pairs(lplayer.Character:GetChildren()) do
  1276. if (v:IsA("Tool")) then
  1277. v.Handle.Mesh:Destroy()
  1278. end
  1279. end
  1280. end
  1281. if string.sub(msg, 1, 8) == (prefix.."spinner") then
  1282. local p = Instance.new("RocketPropulsion")
  1283. p.Parent = lplayer.Character.HumanoidRootPart
  1284. p.Name = "Spinner"
  1285. p.Target = lplayer.Character["Left Arm"]
  1286. p:Fire()
  1287. game:GetService("StarterGui"):SetCore("SendNotification", {
  1288. Title = "Spinner enabled";
  1289. Text = "Type ;nospinner to disable.";
  1290. })
  1291. end
  1292. if string.sub(msg, 1, 10) == (prefix.."nospinner") then
  1293. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  1294. end
  1295. if string.sub(msg, 1, 7) == (prefix.."reachd") then
  1296. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  1297. if v:isA("Tool") then
  1298. local a = Instance.new("SelectionBox",v.Handle)
  1299. a.Adornee = v.Handle
  1300. v.Handle.Size = Vector3.new(0.5,0.5,60)
  1301. v.GripPos = Vector3.new(0,0,0)
  1302. lplayer.Character.Humanoid:UnequipTools()
  1303. end
  1304. end
  1305. game:GetService("StarterGui"):SetCore("SendNotification", {
  1306. Title = "Reach applied!";
  1307. Text = "Applied to equipped sword. Use ;noreach to disable.";
  1308. })
  1309. end
  1310. if string.sub(msg, 1, 7) == (prefix.."reach ") then
  1311. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  1312. if v:isA("Tool") then
  1313. handleSize = v.Handle.Size
  1314. wait()
  1315. local a = Instance.new("SelectionBox",v.Handle)
  1316. a.Name = "a"
  1317. a.Adornee = v.Handle
  1318. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(msg, 8)))
  1319. v.GripPos = Vector3.new(0,0,0)
  1320. lplayer.Character.Humanoid:UnequipTools()
  1321. end
  1322. end
  1323. game:GetService("StarterGui"):SetCore("SendNotification", {
  1324. Title = "Reach applied!";
  1325. Text = "Applied to equipped sword. Use ;noreach to disable.";
  1326. })
  1327. end
  1328. if string.sub(msg, 1, 8) == (prefix.."noreach") then
  1329. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  1330. if v:isA("Tool") then
  1331. v.Handle.a:Destroy()
  1332. v.Handle.Size = handleSize
  1333. end
  1334. end
  1335. game:GetService("StarterGui"):SetCore("SendNotification", {
  1336. Title = "Reach removed!";
  1337. Text = "Removed reach from equipped sword.";
  1338. })
  1339. end
  1340. if string.sub(msg, 1, 7) == (prefix.."rkill ") then
  1341. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  1342. lplayer.Character.Humanoid.Name = 1
  1343. local l = lplayer.Character["1"]:Clone()
  1344. l.Parent = lplayer.Character
  1345. l.Name = "Humanoid"
  1346. wait(0.1)
  1347. lplayer.Character["1"]:Destroy()
  1348. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  1349. lplayer.Character.Animate.Disabled = true
  1350. wait(0.1)
  1351. lplayer.Character.Animate.Disabled = false
  1352. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  1353. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  1354. lplayer.Character.Humanoid:EquipTool(v)
  1355. end
  1356. wait(0.1)
  1357. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  1358. wait(0.2)
  1359. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  1360. wait(0.5)
  1361. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  1362. game:GetService("StarterGui"):SetCore("SendNotification", {
  1363. Title = "Tools needed!";
  1364. Text = "You need a tool in your backpack for this command!";
  1365. })
  1366. end
  1367. end
  1368. if string.sub(msg, 1, 7) == (prefix.."tp me ") then
  1369. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  1370. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  1371. end
  1372. end
  1373. if string.sub(msg, 1, 8) == (prefix.."cbring ") then
  1374. if (string.sub(msg, 9)) == "all" or (string.sub(msg, 9)) == "All" or (string.sub(msg, 9)) == "ALL" then
  1375. cbringall = true
  1376. else
  1377. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  1378. brplr = v.Name
  1379. end
  1380. end
  1381. cbring = true
  1382. end
  1383. if string.sub(msg, 1, 9) == (prefix.."uncbring") then
  1384. cbring = false
  1385. cbringall = false
  1386. end
  1387. if string.sub(msg, 1, 6) == (prefix.."swap ") then
  1388. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  1389. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  1390. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  1391. lplayer.Character.Humanoid.Name = 1
  1392. local l = lplayer.Character["1"]:Clone()
  1393. l.Parent = lplayer.Character
  1394. l.Name = "Humanoid"
  1395. wait(0.1)
  1396. lplayer.Character["1"]:Destroy()
  1397. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  1398. lplayer.Character.Animate.Disabled = true
  1399. wait(0.1)
  1400. lplayer.Character.Animate.Disabled = false
  1401. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  1402. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  1403. lplayer.Character.Humanoid:EquipTool(v)
  1404. end
  1405. local function tp(player,player2)
  1406. local char1,char2=player.Character,player2.Character
  1407. if char1 and char2 then
  1408. char1:MoveTo(char2.Head.Position)
  1409. end
  1410. end
  1411. wait(0.1)
  1412. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  1413. wait(0.2)
  1414. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  1415. wait(0.5)
  1416. lplayer.Character.HumanoidRootPart.CFrame = NOW
  1417. wait(0.6)
  1418. tp(lplayer, game:GetService("Players")[v.Name])
  1419. wait(0.4)
  1420. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  1421. game:GetService("StarterGui"):SetCore("SendNotification", {
  1422. Title = "Tools needed!";
  1423. Text = "You need a tool in your backpack for this command!";
  1424. })
  1425. end
  1426. end
  1427. if string.sub(msg, 1, 8) == (prefix.."glitch ") then
  1428. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  1429. lplayer.Character.Humanoid.Name = 1
  1430. local l = lplayer.Character["1"]:Clone()
  1431. l.Parent = lplayer.Character
  1432. l.Name = "Humanoid"
  1433. wait(0.1)
  1434. lplayer.Character["1"]:Destroy()
  1435. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  1436. lplayer.Character.Animate.Disabled = true
  1437. wait(0.1)
  1438. lplayer.Character.Animate.Disabled = false
  1439. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  1440. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  1441. lplayer.Character.Humanoid:EquipTool(v)
  1442. end
  1443. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  1444. wait(0.3)
  1445. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  1446. wait(0.4)
  1447. b = Instance.new("BodyForce")
  1448. b.Parent = lplayer.Character.HumanoidRootPart
  1449. b.Name = "Glitch"
  1450. b.Force = Vector3.new(100000000,5000,0)
  1451. game:GetService("StarterGui"):SetCore("SendNotification", {
  1452. Title = "Tools needed!";
  1453. Text = "You need a tool in your backpack for this command!";
  1454. })
  1455. end
  1456. end
  1457. if string.sub(msg, 1, 9) == (prefix.."unglitch") then
  1458. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  1459. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  1460. b = Instance.new("BodyForce")
  1461. b.Parent = lplayer.Character.HumanoidRootPart
  1462. b.Name = "unGlitch"
  1463. b.Force = Vector3.new(0,-5000000,0)
  1464. wait(2)
  1465. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  1466. end
  1467. if string.sub(msg, 1, 9) == (prefix.."grespawn") then
  1468. lplayer.Character.Humanoid.Health = 0
  1469. wait(1)
  1470. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  1471. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  1472. end
  1473. if string.sub(msg, 1, 9) == (prefix.."explorer") then
  1474. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  1475. game:GetService("StarterGui"):SetCore("SendNotification", {
  1476. Title = "Success!";
  1477. Text = "DEX Explorer has loaded.";
  1478. })
  1479. end
  1480. if string.sub(msg, 1, 6) == (prefix.."anim ") then
  1481. local Anim = Instance.new("Animation")
  1482. Anim.AnimationId = "rbxassetid://"..(string.sub(msg, 7))
  1483. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  1484. track:Play(.1, 1, 1)
  1485. end
  1486. if string.sub(msg, 1, 8) == (prefix.."animgui") then
  1487. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  1488. game:GetService("StarterGui"):SetCore("SendNotification", {
  1489. Title = "Success!";
  1490. Text = "Energize Animations GUI has loaded.";
  1491. })
  1492. end
  1493. if string.sub(msg, 1, 8) == (prefix.."savepos") then
  1494. saved = lplayer.Character.HumanoidRootPart.CFrame
  1495. game:GetService("StarterGui"):SetCore("SendNotification", {
  1496. Title = "Position Saved";
  1497. Text = "Use ;loadpos to return to saved position.";
  1498. })
  1499. end
  1500. if string.sub(msg, 1, 8) == (prefix.."loadpos") then
  1501. lplayer.Character.HumanoidRootPart.CFrame = saved
  1502. end
  1503. if string.sub(msg, 1, 6) == (prefix.."bang ") then
  1504. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  1505. local Anim2 = Instance.new("Animation")
  1506. Anim2.AnimationId = "rbxassetid://148840371"
  1507. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  1508. track2:Play(.1, 1, 1)
  1509. bplrr = v.Name
  1510. banpl = true
  1511. end
  1512. end
  1513. if string.sub(msg, 1, 7) == (prefix.."unbang") then
  1514. banpl = false
  1515. end
  1516. if string.sub(msg, 1, 10) == (prefix.."bringmod ") then
  1517. local function bringmodw()
  1518. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  1519. if obj.Name == (string.sub(msg, 11)) then
  1520. for i,ch in pairs(obj:GetDescendants()) do
  1521. if (ch:IsA("BasePart")) then
  1522. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  1523. ch.CanCollide = false
  1524. ch.Transparency = 0.7
  1525. wait()
  1526. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  1527. wait()
  1528. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  1529. wait()
  1530. ch.CFrame = lplayer.Character["Head"].CFrame
  1531. end
  1532. end
  1533. end
  1534. end
  1535. end
  1536. while wait() do
  1537. bringmodw()
  1538. end
  1539. game:GetService("StarterGui"):SetCore("SendNotification", {
  1540. Title = "BringMod";
  1541. Text = "BringMod enabled.";
  1542. })
  1543. end
  1544. if string.sub(msg, 1, 8) == (prefix.."respawn") then
  1545. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  1546. local hum = Instance.new('Humanoid', mod)
  1547. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  1548. lplayer.Character = mod
  1549. end
  1550. if string.sub(msg, 1, 9) == (prefix.."shutdown") then
  1551. game:GetService'RunService'.Stepped:Connect(function()
  1552. pcall(function()
  1553. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  1554. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  1555. for _,x in pairs(v.Character.Head:GetChildren()) do
  1556. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  1557. end
  1558. end
  1559. end
  1560. end)
  1561. end)
  1562. game:GetService("StarterGui"):SetCore("SendNotification", {
  1563. Title = "Attempting Shutdown";
  1564. Text = "Shutdown Attempt has begun.";
  1565. })
  1566. end
  1567. if string.sub(msg, 1, 8) == (prefix.."delobj ") then
  1568. objtodel = (string.sub(msg, 9))
  1569. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  1570. if v.Name == objtodel then
  1571. v:Destroy()
  1572. end
  1573. end
  1574. end
  1575. if string.sub(msg, 1, 8) == (prefix.."getplrs") then
  1576. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  1577. print(v)
  1578. end
  1579. game:GetService("StarterGui"):SetCore("SendNotification", {
  1580. Title = "Printed";
  1581. Text = "Players have been printed to console. (F9)";
  1582. })
  1583. end
  1584. if string.sub(msg, 1, 9) == (prefix.."deldecal") then
  1585. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  1586. if (v:IsA("Decal")) then
  1587. v:Destroy()
  1588. end
  1589. end
  1590. end
  1591. if string.sub(msg, 1, 11) == (prefix.."opfinality") then
  1592. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  1593. game:GetService("StarterGui"):SetCore("SendNotification", {
  1594. Title = "Success!";
  1595. Text = "OpFinality GUI has loaded.";
  1596. })
  1597. end
  1598. if string.sub(msg, 1, 8) == (prefix.."remotes") then
  1599. remotes = true
  1600. added = true
  1601. game.DescendantAdded:connect(function(rmt)
  1602. if added == true then
  1603. if remotes == true then
  1604. if rmt:IsA("RemoteEvent") then
  1605. print("A RemoteEvent was added!")
  1606. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  1607. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  1608. end end end
  1609. end)
  1610. game.DescendantAdded:connect(function(rmtfnctn)
  1611. if added == true then
  1612. if remotes == true then
  1613. if rmtfnctn:IsA("RemoteFunction") then
  1614. warn("A RemoteFunction was added!")
  1615. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  1616. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  1617. end end end
  1618. end)
  1619.  
  1620. game.DescendantAdded:connect(function(bndfnctn)
  1621. if added == true then
  1622. if binds == true then
  1623. if bndfnctn:IsA("BindableFunction") then
  1624. print("A BindableFunction was added!")
  1625. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  1626. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  1627. end end end
  1628. end)
  1629.  
  1630. game.DescendantAdded:connect(function(bnd)
  1631. if added == true then
  1632. if binds == true then
  1633. if bnd:IsA("BindableEvent") then
  1634. warn("A BindableEvent was added!")
  1635. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  1636. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  1637. end end end
  1638. end)
  1639.  
  1640.  
  1641. if binds == true then
  1642. for i,v in pairs(game:GetDescendants()) do
  1643. if v:IsA("BindableFunction") then
  1644. print(" game." .. v:GetFullName() .. " | BindableFunction")
  1645. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  1646. end end
  1647. for i,v in pairs(game:GetDescendants()) do
  1648. if v:IsA("BindableEvent") then
  1649. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  1650. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  1651. end end
  1652. else
  1653. print("Off")
  1654. end
  1655. if remotes == true then
  1656. for i,v in pairs(game:GetDescendants()) do
  1657. if v:IsA("RemoteFunction") then
  1658. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  1659. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  1660. end end
  1661. wait()
  1662. for i,v in pairs(game:GetDescendants()) do
  1663. if v:IsA("RemoteEvent") then
  1664. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  1665. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  1666. end end
  1667. else
  1668. print("Off")
  1669. end
  1670. game:GetService("StarterGui"):SetCore("SendNotification", {
  1671. Title = "Printing Remotes";
  1672. Text = "Type ;noremotes to disable.";
  1673. })
  1674. end
  1675. if string.sub(msg, 1, 10) == (prefix.."noremotes") then
  1676. remotes = false
  1677. added = false
  1678. game:GetService("StarterGui"):SetCore("SendNotification", {
  1679. Title = "Printing Remotes Disabled";
  1680. Text = "Type ;remotes to enable.";
  1681. })
  1682. end
  1683. if string.sub(msg, 1, 10) == (prefix.."tpdefault") then
  1684. spin = false
  1685. followed = false
  1686. traill = false
  1687. noclip = false
  1688. annoying = false
  1689. hwalk = false
  1690. cbringing = false
  1691. end
  1692. if string.sub(msg, 1, 8) == (prefix.."stopsit") then
  1693. stopsitting = true
  1694. end
  1695. if string.sub(msg, 1, 6) == (prefix.."gosit") then
  1696. stopsitting = false
  1697. end
  1698. if string.sub(msg, 1, 8) == (prefix.."version") then
  1699. print(adminversion)
  1700. game:GetService("StarterGui"):SetCore("SendNotification", {
  1701. Title = "Version";
  1702. Text = adminversion;
  1703. })
  1704. end
  1705. if string.sub(msg, 1, 8) == (prefix.."clicktp") then
  1706. clickgoto = true
  1707. game:GetService("StarterGui"):SetCore("SendNotification", {
  1708. Title = "Click TP";
  1709. Text = "Press E to teleport to mouse position, ;noclicktp to stop";
  1710. })
  1711. end
  1712. if string.sub(msg, 1, 9) == (prefix.."clickdel") then
  1713. clickdel = true
  1714. game:GetService("StarterGui"):SetCore("SendNotification", {
  1715. Title = "Click Delete";
  1716. Text = "Press E to delete part at mouse, ;noclickdel to stop";
  1717. })
  1718. end
  1719. if string.sub(msg, 1, 11) == (prefix.."noclickdel") then
  1720. clickdel = false
  1721. game:GetService("StarterGui"):SetCore("SendNotification", {
  1722. Title = "Click Delete";
  1723. Text = "Click delete has been disabled.";
  1724. })
  1725. end
  1726. if string.sub(msg, 1, 10) == (prefix.."noclicktp") then
  1727. clickgoto = false
  1728. game:GetService("StarterGui"):SetCore("SendNotification", {
  1729. Title = "Click TP";
  1730. Text = "Click TP has been disabled.";
  1731. })
  1732. end
  1733. if string.sub(msg, 1, 8) == (prefix.."toolson") then
  1734. gettingtools = true
  1735. game:GetService("StarterGui"):SetCore("SendNotification", {
  1736. Title = "Tools Enabled";
  1737. Text = "Automatically colleting tools dropped.";
  1738. })
  1739. end
  1740. if string.sub(msg, 1, 9) == (prefix.."toolsoff") then
  1741. gettingtools = false
  1742. game:GetService("StarterGui"):SetCore("SendNotification", {
  1743. Title = "Tools Disabled";
  1744. Text = "Click TP has been disabled.";
  1745. })
  1746. end
  1747. if string.sub(msg, 1, 10) == (prefix.."delcmdbar") then
  1748. ScreenGui:Destroy()
  1749. end
  1750. if string.sub(msg, 1, 6) == (prefix.."reset") then
  1751. lplayer.Character.Head:Destroy()
  1752. end
  1753. if string.sub(msg, 1, 7) == (prefix.."state ") then
  1754. statechosen = string.sub(msg, 8)
  1755. changingstate = true
  1756. end
  1757. if string.sub(msg, 1, 9) == (prefix.."gravity ") then
  1758. game:GetService("Workspace").Gravity = string.sub(msg, 10)
  1759. end
  1760. if string.sub(msg, 1, 10) == (prefix.."looprhats") then
  1761. removingmeshhats = true
  1762. end
  1763. if string.sub(msg, 1, 12) == (prefix.."unlooprhats") then
  1764. removingmeshhats = false
  1765. end
  1766. if string.sub(msg, 1, 10) == (prefix.."looprtool") then
  1767. removingmeshtool = true
  1768. end
  1769. if string.sub(msg, 1, 12) == (prefix.."unlooprtool") then
  1770. removingmeshtool = false
  1771. end
  1772. if string.sub(msg, 1, 10) == (prefix.."givetool ") then
  1773. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  1774. if v:IsA("Tool") then
  1775. for i,player in pairs(GetPlayer(string.sub(msg, 11))) do
  1776. v.Parent = player.Character
  1777. end
  1778. end
  1779. end
  1780. end
  1781. if string.sub(msg, 1, 14) == (prefix.."givealltools ") then
  1782. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  1783. if v:IsA("Tool") then
  1784. v.Parent = lplayer.Character
  1785. wait()
  1786. for i,player in pairs(GetPlayer(string.sub(msg, 15))) do
  1787. v.Parent = player.Character
  1788. end
  1789. end
  1790. end
  1791. end
  1792. if string.sub(msg, 1, 5) == (prefix.."age ") then
  1793. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  1794. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  1795. end
  1796. end
  1797. if string.sub(msg, 1, 4) == (prefix.."id ") then
  1798. for i,player in pairs(GetPlayer(string.sub(msg, 5))) do
  1799. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  1800. end
  1801. end
  1802. if string.sub(msg, 1, 6) == (prefix..".age ") then
  1803. for i,player in pairs(GetPlayer(string.sub(msg, 7))) do
  1804. game:GetService("StarterGui"):SetCore("SendNotification", {
  1805. Title = player.AccountAge.." Days";
  1806. Text = "Account age of "..player.Name;
  1807. })
  1808. end
  1809. end
  1810. if string.sub(msg, 1, 5) == (prefix..".id ") then
  1811. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  1812. game:GetService("StarterGui"):SetCore("SendNotification", {
  1813. Title = player.UserId.." ID";
  1814. Text = "Account ID of "..player.Name;
  1815. })
  1816. end
  1817. end
  1818. if string.sub(msg, 1, 7) == (prefix.."gameid") then
  1819. game:GetService("StarterGui"):SetCore("SendNotification", {
  1820. Title = "Game ID";
  1821. Text = "Game ID: ".. game.GameId;
  1822. })
  1823. end
  1824. if string.sub(msg, 1, 4) == (prefix.."pgs") then
  1825. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  1826. if pgscheck == true then
  1827. game:GetService("StarterGui"):SetCore("SendNotification", {
  1828. Title = "PGSPhysicsSolverEnabled";
  1829. Text = "PGS is Enabled!";
  1830. })
  1831. else
  1832. game:GetService("StarterGui"):SetCore("SendNotification", {
  1833. Title = "PGSPhysicsSolverEnabled";
  1834. Text = "PGS is Disabled!";
  1835. })
  1836. end
  1837. end
  1838. if string.sub(msg, 1, 12) == (prefix.."removeinvis") then
  1839. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  1840. if v:IsA("Part") then
  1841. if v.Transparency == 1 then
  1842. if v.Name ~= "HumanoidRootPart" then
  1843. v:Destroy()
  1844. end
  1845. end
  1846. end
  1847. end
  1848. end
  1849. if string.sub(msg, 1, 10) == (prefix.."removefog") then
  1850. game:GetService("Lighting").FogStart = 0
  1851. game:GetService("Lighting").FogEnd = 9999999999999
  1852. end
  1853. if string.sub(msg, 1, 8) == (prefix.."disable") then
  1854. lplayer.Character.Humanoid.Parent = lplayer
  1855. end
  1856. if string.sub(msg, 1, 7) == (prefix.."enable") then
  1857. lplayer.Humanoid.Parent = lplayer.Character
  1858. end
  1859. if string.sub(msg, 1, 8) == (prefix.."prefix ") then
  1860. prefix = (string.sub(msg, 9, 9))
  1861. wait(0.1)
  1862. change()
  1863. wait(0.1)
  1864. game:GetService("StarterGui"):SetCore("SendNotification", {
  1865. Title = "Prefix changed!";
  1866. Text = "Prefix is now "..prefix..". Use ;resetprefix to reset to ;";
  1867. })
  1868. end
  1869. if string.sub(msg, 1, 12) == (";resetprefix") then
  1870. prefix = ";"
  1871. wait(0.1)
  1872. change()
  1873. wait(0.1)
  1874. game:GetService("StarterGui"):SetCore("SendNotification", {
  1875. Title = "Prefix changed!";
  1876. Text = "Prefix is now "..prefix..". Make sure it's one key!";
  1877. })
  1878. end
  1879. if string.sub(msg, 1, 10) == (prefix.."flyspeed ") then
  1880. speedfly = string.sub(msg, 11)
  1881. wait()
  1882. change()
  1883. end
  1884. if string.sub(msg, 1, 8) == (prefix.."carpet ") then
  1885. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  1886. local Anim3 = Instance.new("Animation")
  1887. Anim3.AnimationId = "rbxassetid://282574440"
  1888. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  1889. track3:Play(.1, 1, 1)
  1890. bplrr = v.Name
  1891. banpl = true
  1892. end
  1893. end
  1894. if string.sub(msg, 1, 9) == (prefix.."uncarpet") then
  1895. banpl = false
  1896. end
  1897. if string.sub(msg, 1, 7) == (prefix.."stare ") then
  1898. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  1899. staring = true
  1900. stareplr = v
  1901. end
  1902. end
  1903. if string.sub(msg, 1, 8) == (prefix.."unstare") then
  1904. staring = false
  1905. end
  1906. if string.sub(msg, 1, 8) == (prefix.."logchat") then
  1907. chatlogs = true
  1908. game:GetService("StarterGui"):SetCore("SendNotification", {
  1909. Title = "LogChat enabled";
  1910. Text = "Now logging all player chat.";
  1911. })
  1912. end
  1913. if string.sub(msg, 1, 10) == (prefix.."unlogchat") then
  1914. chatlogs = false
  1915. game:GetService("StarterGui"):SetCore("SendNotification", {
  1916. Title = "LogChat disabled";
  1917. Text = "Stopped logging all player chat.";
  1918. })
  1919. end
  1920. if string.sub(msg, 1, 7) == (prefix.."fixcam") then
  1921. game:GetService("Workspace").CurrentCamera:Destroy()
  1922. wait(0.1)
  1923. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  1924. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  1925. lplayer.CameraMinZoomDistance = 0.5
  1926. lplayer.CameraMaxZoomDistance = 400
  1927. lplayer.CameraMode = "Classic"
  1928. end
  1929. if string.sub(msg, 1, 8) == (prefix.."unstate") then
  1930. changingstate = false
  1931. end
  1932. end)
  1933.  
  1934. local function tp()
  1935. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  1936. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  1937. if player.Name == brplr then
  1938. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 2
  1939. end
  1940. end
  1941. end
  1942. end
  1943. local function tpall()
  1944. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  1945. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  1946. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 3
  1947. end
  1948. end
  1949. end
  1950. spawn(function()
  1951. while wait(spamdelay) do
  1952. if spamming == true then
  1953. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
  1954. end
  1955. end
  1956. end)
  1957. spawn(function()
  1958. while wait(spamdelay) do
  1959. if spammingpm == true then
  1960. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..pmspammed.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
  1961. end
  1962. end
  1963. end)
  1964. spawn(function()
  1965. while wait() do
  1966. if cbring == true then
  1967. tp()
  1968. end
  1969. end
  1970. end)
  1971. spawn(function()
  1972. while wait() do
  1973. if cbringall == true then
  1974. tpall()
  1975. end
  1976. end
  1977. end)
  1978.  
  1979. Mouse.KeyDown:connect(function(Key)
  1980. if Key == prefix then
  1981. CMDBAR:CaptureFocus()
  1982. end
  1983. end)
  1984.  
  1985. CMDBAR.FocusLost:connect(function(enterPressed)
  1986. if enterPressed then
  1987. if string.sub(CMDBAR.Text, 1, 5) == ("kill ") then
  1988. if string.sub(CMDBAR.Text, 6) == "me" then
  1989. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  1990. else
  1991. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6)))do
  1992. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  1993. lplayer.Character.Humanoid.Name = 1
  1994. local l = lplayer.Character["1"]:Clone()
  1995. l.Parent = lplayer.Character
  1996. l.Name = "Humanoid"
  1997. wait(0.1)
  1998. lplayer.Character["1"]:Destroy()
  1999. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2000. lplayer.Character.Animate.Disabled = true
  2001. wait(0.1)
  2002. lplayer.Character.Animate.Disabled = false
  2003. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2004. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2005. lplayer.Character.Humanoid:EquipTool(v)
  2006. end
  2007. local function tp(player,player2)
  2008. local char1,char2=player.Character,player2.Character
  2009. if char1 and char2 then
  2010. char1:MoveTo(char2.Head.Position)
  2011. end
  2012. end
  2013. wait(0.1)
  2014. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2015. wait(0.2)
  2016. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2017. wait(0.5)
  2018. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  2019. wait(0.7)
  2020. tp(lplayer,game:GetService("Players")[v.Name])
  2021. wait(0.7)
  2022. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2023. game:GetService("StarterGui"):SetCore("SendNotification", {
  2024. Title = "Tools needed!";
  2025. Text = "You need a tool in your backpack for this command!";
  2026. })
  2027. end
  2028. end
  2029. end
  2030. if string.sub(CMDBAR.Text, 1, 6) == ("bring ") then
  2031. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  2032. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  2033. lplayer.Character.Humanoid.Name = 1
  2034. local l = lplayer.Character["1"]:Clone()
  2035. l.Parent = lplayer.Character
  2036. l.Name = "Humanoid"
  2037. wait(0.1)
  2038. lplayer.Character["1"]:Destroy()
  2039. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2040. lplayer.Character.Animate.Disabled = true
  2041. wait(0.1)
  2042. lplayer.Character.Animate.Disabled = false
  2043. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2044. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2045. lplayer.Character.Humanoid:EquipTool(v)
  2046. end
  2047. local function tp(player,player2)
  2048. local char1,char2=player.Character,player2.Character
  2049. if char1 and char2 then
  2050. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  2051. end
  2052. end
  2053. local function getout(player,player2)
  2054. local char1,char2=player.Character,player2.Character
  2055. if char1 and char2 then
  2056. char1:MoveTo(char2.Head.Position)
  2057. end
  2058. end
  2059. tp(game:GetService("Players")[v.Name], lplayer)
  2060. wait(0.2)
  2061. tp(game:GetService("Players")[v.Name], lplayer)
  2062. wait(0.5)
  2063. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2064. wait(0.5)
  2065. getout(lplayer, game:GetService("Players")[v.Name])
  2066. wait(0.3)
  2067. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2068. game:GetService("StarterGui"):SetCore("SendNotification", {
  2069. Title = "Tools needed!";
  2070. Text = "You need a tool in your backpack for this command!";
  2071. })
  2072. end
  2073. end
  2074. if string.sub(CMDBAR.Text, 1, 5) == ("spin ") then
  2075. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  2076. lplayer.Character.Humanoid.Name = 1
  2077. local l = lplayer.Character["1"]:Clone()
  2078. l.Parent = lplayer.Character
  2079. l.Name = "Humanoid"
  2080. wait(0.1)
  2081. lplayer.Character["1"]:Destroy()
  2082. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2083. lplayer.Character.Animate.Disabled = true
  2084. wait(0.1)
  2085. lplayer.Character.Animate.Disabled = false
  2086. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2087. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2088. lplayer.Character.Humanoid:EquipTool(v)
  2089. end
  2090. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  2091. spinplr = v
  2092. wait(0.5)
  2093. spin = true
  2094. game:GetService("StarterGui"):SetCore("SendNotification", {
  2095. Title = "Tools needed!";
  2096. Text = "You need a tool in your backpack for this command!";
  2097. })
  2098. end
  2099. end
  2100. if string.sub(CMDBAR.Text, 1, 6) == ("unspin") then
  2101. spin = false
  2102. end
  2103. if string.sub(CMDBAR.Text, 1, 7) == ("attach ") then
  2104. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  2105. lplayer.Character.Humanoid.Name = 1
  2106. local l = lplayer.Character["1"]:Clone()
  2107. l.Parent = lplayer.Character
  2108. l.Name = "Humanoid"
  2109. wait(0.1)
  2110. lplayer.Character["1"]:Destroy()
  2111. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2112. lplayer.Character.Animate.Disabled = true
  2113. wait(0.1)
  2114. lplayer.Character.Animate.Disabled = false
  2115. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2116. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2117. lplayer.Character.Humanoid:EquipTool(v)
  2118. end
  2119. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  2120. wait(0.3)
  2121. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  2122. attplr = v
  2123. game:GetService("StarterGui"):SetCore("SendNotification", {
  2124. Title = "Tools needed!";
  2125. Text = "You need a tool in your backpack for this command!";
  2126. })
  2127. end
  2128. end
  2129. if string.sub(CMDBAR.Text, 1, 9) == ("unattach ") then
  2130. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  2131. local function getout(player,player2)
  2132. local char1,char2=player.Character,player2.Character
  2133. if char1 and char2 then
  2134. char1:MoveTo(char2.Head.Position)
  2135. end
  2136. end
  2137. getout(lplayer, game:GetService("Players")[v.Name])
  2138. end
  2139. end
  2140. if string.sub(CMDBAR.Text, 1, 7) == ("follow ") then
  2141. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  2142. followed = true
  2143. flwplr = v
  2144. end
  2145. end
  2146. if string.sub(CMDBAR.Text, 1, 8) == ("unfollow") then
  2147. followed = false
  2148. end
  2149. if string.sub(CMDBAR.Text, 1, 9) == ("freefall ") then
  2150. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  2151. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  2152. lplayer.Character.Humanoid.Name = 1
  2153. local l = lplayer.Character["1"]:Clone()
  2154. l.Parent = lplayer.Character
  2155. l.Name = "Humanoid"
  2156. wait(0.1)
  2157. lplayer.Character["1"]:Destroy()
  2158. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2159. lplayer.Character.Animate.Disabled = true
  2160. wait(0.1)
  2161. lplayer.Character.Animate.Disabled = false
  2162. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2163. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2164. lplayer.Character.Humanoid:EquipTool(v)
  2165. end
  2166. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2167. wait(0.2)
  2168. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2169. wait(0.6)
  2170. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2171. wait(0.6)
  2172. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  2173. game:GetService("StarterGui"):SetCore("SendNotification", {
  2174. Title = "Tools needed!";
  2175. Text = "You need a tool in your backpack for this command!";
  2176. })
  2177. end
  2178. end
  2179. if string.sub(CMDBAR.Text, 1, 6) == ("trail ") then
  2180. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  2181. traill = true
  2182. trlplr = v
  2183. end
  2184. end
  2185. if string.sub(CMDBAR.Text, 1, 7) == ("untrail") then
  2186. traill = false
  2187. end
  2188. if string.sub(CMDBAR.Text, 1, 6) == ("orbit ") then
  2189. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  2190. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  2191. else
  2192. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  2193. local o = Instance.new("RocketPropulsion")
  2194. o.Parent = lplayer.Character.HumanoidRootPart
  2195. o.Name = "Orbit"
  2196. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  2197. o:Fire()
  2198. noclip = true
  2199. end
  2200. end
  2201. end
  2202. if string.sub(CMDBAR.Text, 1, 7) == ("unorbit") then
  2203. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  2204. noclip = false
  2205. end
  2206. if string.sub(CMDBAR.Text, 1, 6) == ("fling ") then
  2207. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  2208. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  2209. else
  2210. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  2211. local y = Instance.new("RocketPropulsion")
  2212. y.Parent = lplayer.Character.HumanoidRootPart
  2213. y.CartoonFactor = 1
  2214. y.MaxThrust = 800000
  2215. y.MaxSpeed = 1000
  2216. y.ThrustP = 200000
  2217. y.Name = "Fling"
  2218. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  2219. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  2220. y:Fire()
  2221. noclip = true
  2222. end
  2223. end
  2224. end
  2225. if string.sub(CMDBAR.Text, 1, 7) == ("unfling") then
  2226. noclip = false
  2227. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  2228. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  2229. wait(0.4)
  2230. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  2231. end
  2232. if string.sub(CMDBAR.Text, 1, 7) == ("fecheck") then
  2233. if game:GetService("Workspace").FilteringEnabled == true then
  2234. warn("FE is Enabled (Filtering Enabled)")
  2235. game:GetService("StarterGui"):SetCore("SendNotification", {
  2236. Title = "FE is Enabled";
  2237. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  2238. })
  2239. else
  2240. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  2241. game:GetService("StarterGui"):SetCore("SendNotification", {
  2242. Title = "FE is Disabled";
  2243. Text = "Filtering Disabled. Consider using a different admin script.";
  2244. })
  2245. end
  2246. end
  2247. if string.sub(CMDBAR.Text, 1, 5) == ("void ") then
  2248. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  2249. lplayer.Character.Humanoid.Name = 1
  2250. local l = lplayer.Character["1"]:Clone()
  2251. l.Parent = lplayer.Character
  2252. l.Name = "Humanoid"
  2253. wait(0.1)
  2254. lplayer.Character["1"]:Destroy()
  2255. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2256. lplayer.Character.Animate.Disabled = true
  2257. wait(0.1)
  2258. lplayer.Character.Animate.Disabled = false
  2259. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2260. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2261. lplayer.Character.Humanoid:EquipTool(v)
  2262. end
  2263. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2264. wait(0.2)
  2265. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2266. wait(0.6)
  2267. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  2268. game:GetService("StarterGui"):SetCore("SendNotification", {
  2269. Title = "Tools needed!";
  2270. Text = "You need a tool in your backpack for this command!";
  2271. })
  2272. end
  2273. end
  2274. if string.sub(CMDBAR.Text, 1, 6) == ("noclip") then
  2275. noclip = true
  2276. game:GetService("StarterGui"):SetCore("SendNotification", {
  2277. Title = "Noclip enabled";
  2278. Text = "Type ;clip to disable";
  2279. })
  2280. end
  2281. if string.sub(CMDBAR.Text, 1, 4) == ("clip") then
  2282. noclip = false
  2283. game:GetService("StarterGui"):SetCore("SendNotification", {
  2284. Title = "Noclip disabled";
  2285. Text = "Type ;noclip to enable";
  2286. })
  2287. end
  2288. if string.sub(CMDBAR.Text, 1, 6) == ("speed ") then
  2289. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 7))
  2290. end
  2291. if string.sub(CMDBAR.Text, 1, 3) == ("ws ") then
  2292. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 4))
  2293. end
  2294. if string.sub(CMDBAR.Text, 1, 10) == ("hipheight ") then
  2295. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 11))
  2296. end
  2297. if string.sub(CMDBAR.Text, 1, 3) == ("hh ") then
  2298. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 4))
  2299. end
  2300. if string.sub(CMDBAR.Text, 1, 10) == ("jumppower ") then
  2301. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 11))
  2302. end
  2303. if string.sub(CMDBAR.Text, 1, 3) == ("jp ") then
  2304. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 4))
  2305. end
  2306. if string.sub(CMDBAR.Text, 1, 7) == ("default") then
  2307. lplayer.Character.Humanoid.JumpPower = 50
  2308. lplayer.Character.Humanoid.WalkSpeed = 16
  2309. lplayer.Character.Humanoid.HipHeight = 0
  2310. end
  2311. if string.sub(CMDBAR.Text, 1, 6) == ("annoy ") then
  2312. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  2313. annoying = true
  2314. annplr = v
  2315. end
  2316. end
  2317. if string.sub(CMDBAR.Text, 1, 7) == ("unannoy") then
  2318. annoying = false
  2319. end
  2320. if string.sub(CMDBAR.Text, 1, 9) == ("headwalk ") then
  2321. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  2322. hwalk = true
  2323. hdwplr = v
  2324. end
  2325. end
  2326. if string.sub(CMDBAR.Text, 1, 10) == ("unheadwalk") then
  2327. hwalk = false
  2328. end
  2329. if string.sub(CMDBAR.Text, 1, 7) == ("nolimbs") then
  2330. lplayer.Character["Left Leg"]:Destroy()
  2331. lplayer.Character["Left Arm"]:Destroy()
  2332. lplayer.Character["Right Leg"]:Destroy()
  2333. lplayer.Character["Right Arm"]:Destroy()
  2334. end
  2335. if string.sub(CMDBAR.Text, 1, 3) == ("god") then
  2336. lplayer.Character.Humanoid.Name = 1
  2337. local l = lplayer.Character["1"]:Clone()
  2338. l.Parent = lplayer.Character
  2339. l.Name = "Humanoid"
  2340. wait(0.1)
  2341. lplayer.Character["1"]:Destroy()
  2342. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2343. lplayer.Character.Animate.Disabled = true
  2344. wait(0.1)
  2345. lplayer.Character.Animate.Disabled = false
  2346. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2347. game:GetService("StarterGui"):SetCore("SendNotification", {
  2348. Title = "FE Godmode enabled";
  2349. Text = "Use ;grespawn or ;respawn to remove.";
  2350. })
  2351. end
  2352. if string.sub(CMDBAR.Text, 1, 8) == ("drophats") then
  2353. for i,v in pairs(lplayer.Character:GetChildren()) do
  2354. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  2355. v.Parent = workspace
  2356. end
  2357. end
  2358. end
  2359. if string.sub(CMDBAR.Text, 1, 8) == ("droptool") then
  2360. for i,v in pairs(lplayer.Character:GetChildren()) do
  2361. if (v:IsA("Tool")) then
  2362. v.Parent = workspace
  2363. end
  2364. end
  2365. end
  2366. if string.sub(CMDBAR.Text, 1, 9) == ("loopdhats") then
  2367. droppinghats = true
  2368. game:GetService("StarterGui"):SetCore("SendNotification", {
  2369. Title = "Loop Drop Enabled";
  2370. Text = "Type ;unloopdhats to disable";
  2371. })
  2372. end
  2373. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdhats") then
  2374. droppinghats = false
  2375. game:GetService("StarterGui"):SetCore("SendNotification", {
  2376. Title = "Loop Drop Disabled";
  2377. Text = "Type ;loopdhats to enable.";
  2378. })
  2379. end
  2380. if string.sub(CMDBAR.Text, 1, 9) == ("loopdtool") then
  2381. droppingtools = true
  2382. game:GetService("StarterGui"):SetCore("SendNotification", {
  2383. Title = "Loop Drop Enabled";
  2384. Text = "Type ;unloopdtool to disable";
  2385. })
  2386. end
  2387. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdtool") then
  2388. droppingtools = false
  2389. game:GetService("StarterGui"):SetCore("SendNotification", {
  2390. Title = "Loop Drop Disabled";
  2391. Text = "Type ;loopdtool to enable.";
  2392. })
  2393. end
  2394. if string.sub(CMDBAR.Text, 1, 9) == ("invisible") then -- Credit to Timeless
  2395. Local = game:GetService('Players').LocalPlayer
  2396. Char = Local.Character
  2397. touched,tpdback = false, false
  2398. box = Instance.new('Part',workspace)
  2399. box.Anchored = true
  2400. box.CanCollide = true
  2401. box.Size = Vector3.new(10,1,10)
  2402. box.Position = Vector3.new(0,10000,0)
  2403. box.Touched:connect(function(part)
  2404. if (part.Parent.Name == Local.Name) then
  2405. if touched == false then
  2406. touched = true
  2407. function apply()
  2408. if script.Disabled ~= true then
  2409. no = Char.HumanoidRootPart:Clone()
  2410. wait(.25)
  2411. Char.HumanoidRootPart:Destroy()
  2412. no.Parent = Char
  2413. Char:MoveTo(loc)
  2414. touched = false
  2415. end end
  2416. if Char then
  2417. apply()
  2418. end
  2419. end
  2420. end
  2421. end)
  2422. repeat wait() until Char
  2423. loc = Char.HumanoidRootPart.Position
  2424. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  2425. game:GetService("StarterGui"):SetCore("SendNotification", {
  2426. Title = "Invisibility enabled!";
  2427. Text = "Reset or use ;respawn to remove.";
  2428. })
  2429. end
  2430. if string.sub(CMDBAR.Text, 1, 5) == ("view ") then
  2431. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  2432. if game:GetService("Players")[v.Name].Character.Humanoid then
  2433. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  2434. else
  2435. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  2436. end
  2437. end
  2438. end
  2439. if string.sub(CMDBAR.Text, 1, 6) == ("unview") then
  2440. if lplayer.Character.Humanoid then
  2441. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  2442. else
  2443. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  2444. end
  2445. end
  2446. if string.sub(CMDBAR.Text, 1, 5) == ("goto ") then
  2447. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  2448. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2449. end
  2450. end
  2451. if string.sub(CMDBAR.Text, 1, 3) == ("fly") then
  2452. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  2453. repeat wait() until Mouse
  2454.  
  2455. local T = lplayer.Character.HumanoidRootPart
  2456. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2457. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2458. local SPEED = speedget
  2459.  
  2460. local function fly()
  2461. flying = true
  2462. local BG = Instance.new('BodyGyro', T)
  2463. local BV = Instance.new('BodyVelocity', T)
  2464. BG.P = 9e4
  2465. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2466. BG.cframe = T.CFrame
  2467. BV.velocity = Vector3.new(0, 0.1, 0)
  2468. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2469. spawn(function()
  2470. repeat wait()
  2471. lplayer.Character.Humanoid.PlatformStand = true
  2472. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  2473. SPEED = 50
  2474. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  2475. SPEED = 0
  2476. end
  2477. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  2478. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  2479. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  2480. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  2481. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  2482. else
  2483. BV.velocity = Vector3.new(0, 0.1, 0)
  2484. end
  2485. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  2486. until not flying
  2487. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2488. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2489. SPEED = 0
  2490. BG:destroy()
  2491. BV:destroy()
  2492. lplayer.Character.Humanoid.PlatformStand = false
  2493. end)
  2494. end
  2495. Mouse.KeyDown:connect(function(KEY)
  2496. if KEY:lower() == 'w' then
  2497. CONTROL.F = speedfly
  2498. elseif KEY:lower() == 's' then
  2499. CONTROL.B = -speedfly
  2500. elseif KEY:lower() == 'a' then
  2501. CONTROL.L = -speedfly
  2502. elseif KEY:lower() == 'd' then
  2503. CONTROL.R = speedfly
  2504. end
  2505. end)
  2506. Mouse.KeyUp:connect(function(KEY)
  2507. if KEY:lower() == 'w' then
  2508. CONTROL.F = 0
  2509. elseif KEY:lower() == 's' then
  2510. CONTROL.B = 0
  2511. elseif KEY:lower() == 'a' then
  2512. CONTROL.L = 0
  2513. elseif KEY:lower() == 'd' then
  2514. CONTROL.R = 0
  2515. end
  2516. end)
  2517. fly()
  2518. end
  2519. if string.sub(CMDBAR.Text, 1, 5) == ("unfly") then
  2520. flying = false
  2521. lplayer.Character.Humanoid.PlatformStand = false
  2522. end
  2523. if string.sub(CMDBAR.Text, 1, 5) == ("chat ") then
  2524. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(CMDBAR.Text, 6)), "All")
  2525. end
  2526. if string.sub(CMDBAR.Text, 1, 5) == ("spam ") then
  2527. spamtext = (string.sub(CMDBAR.Text, 6))
  2528. spamming = true
  2529. end
  2530. if string.sub(CMDBAR.Text, 1, 6) == ("unspam") then
  2531. spamming = false
  2532. end
  2533. if string.sub(CMDBAR.Text, 1, 9) == ("spamwait ") then
  2534. spamdelay = (string.sub(CMDBAR.Text, 10))
  2535. end
  2536. if string.sub(CMDBAR.Text, 1, 7) == ("pmspam ") then
  2537. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  2538. pmspammed = v.Name
  2539. spammingpm = true
  2540. end
  2541. end
  2542. if string.sub(CMDBAR.Text, 1, 8) == ("unpmspam") then
  2543. spammingpm = false
  2544. end
  2545. if string.sub(CMDBAR.Text, 1, 8) == ("cfreeze ") then
  2546. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 9))) do
  2547. v.Character["Left Leg"].Anchored = true
  2548. v.Character["Left Arm"].Anchored = true
  2549. v.Character["Right Leg"].Anchored = true
  2550. v.Character["Right Arm"].Anchored = true
  2551. v.Character.Torso.Anchored = true
  2552. v.Character.Head.Anchored = true
  2553. end
  2554. end
  2555. if string.sub(CMDBAR.Text, 1, 10) == ("uncfreeze ") then
  2556. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 11))) do
  2557. v.Character["Left Leg"].Anchored = false
  2558. v.Character["Left Arm"].Anchored = false
  2559. v.Character["Right Leg"].Anchored = false
  2560. v.Character["Right Arm"].Anchored = false
  2561. v.Character.Torso.Anchored = false
  2562. v.Character.Head.Anchored = false
  2563. end
  2564. end
  2565. if string.sub(CMDBAR.Text, 1, 8) == ("unlockws") then
  2566. local a = game:GetService("Workspace"):getChildren()
  2567. for i = 1, #a do
  2568. if a[i].className == "Part" then
  2569. a[i].Locked = false
  2570. elseif a[i].className == "Model" then
  2571. local r = a[i]:getChildren()
  2572. for i = 1, #r do
  2573. if r[i].className == "Part" then
  2574. r[i].Locked = false
  2575. end
  2576. end
  2577. end
  2578. end
  2579. game:GetService("StarterGui"):SetCore("SendNotification", {
  2580. Title = "Success!";
  2581. Text = "Workspace unlocked. Use ;lockws to lock.";
  2582. })
  2583. end
  2584. if string.sub(CMDBAR.Text, 1, 6) == ("lockws") then
  2585. local a = game:GetService("Workspace"):getChildren()
  2586. for i = 1, #a do
  2587. if a[i].className == "Part" then
  2588. a[i].Locked = true
  2589. elseif a[i].className == "Model" then
  2590. local r = a[i]:getChildren()
  2591. for i = 1, #r do
  2592. if r[i].className == "Part" then
  2593. r[i].Locked = true
  2594. end
  2595. end
  2596. end
  2597. end
  2598. end
  2599. if string.sub(CMDBAR.Text, 1, 6) == ("btools") then
  2600. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  2601. Clone_T.BinType = "Clone"
  2602. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  2603. Destruct.BinType = "Hammer"
  2604. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  2605. Hold_T.BinType = "Grab"
  2606. end
  2607. if string.sub(CMDBAR.Text, 1, 6) == ("pstand") then
  2608. lplayer.Character.Humanoid.PlatformStand = true
  2609. end
  2610. if string.sub(CMDBAR.Text, 1, 8) == ("unpstand") then
  2611. lplayer.Character.Humanoid.PlatformStand = false
  2612. end
  2613. if string.sub(CMDBAR.Text, 1, 9) == ("blockhead") then
  2614. lplayer.Character.Head.Mesh:Destroy()
  2615. end
  2616. if string.sub(CMDBAR.Text, 1, 3) == ("sit") then
  2617. lplayer.Character.Humanoid.Sit = true
  2618. end
  2619. if string.sub(CMDBAR.Text, 1, 9) == ("bringobj ") then
  2620. local function bringobjw()
  2621. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  2622. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  2623. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  2624. obj.CanCollide = false
  2625. obj.Transparency = 0.7
  2626. wait()
  2627. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  2628. wait()
  2629. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  2630. wait()
  2631. obj.CFrame = lplayer.Character["Head"].CFrame
  2632. end
  2633. end
  2634. end
  2635. while wait() do
  2636. bringobjw()
  2637. end
  2638. game:GetService("StarterGui"):SetCore("SendNotification", {
  2639. Title = "BringObj";
  2640. Text = "BringObj enabled.";
  2641. })
  2642. end
  2643. if string.sub(CMDBAR.Text, 1, 6) == ("wsvis ") then
  2644. vis = (string.sub(CMDBAR.Text, 7))
  2645. local a = game:GetService("Workspace"):GetDescendants()
  2646. for i = 1, #a do
  2647. if a[i].className == "Part" then
  2648. a[i].Transparency = vis
  2649. elseif a[i].className == "Model" then
  2650. local r = a[i]:getChildren()
  2651. for i = 1, #r do
  2652. if r[i].className == "Part" then
  2653. r[i].Transparency = vis
  2654. end
  2655. end
  2656. end
  2657. end
  2658. end
  2659. if string.sub(CMDBAR.Text, 1, 10) == ("hypertotal") then
  2660. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  2661. game:GetService("StarterGui"):SetCore("SendNotification", {
  2662. Title = "Success!";
  2663. Text = "HyperTotal GUI Loaded!";
  2664. })
  2665. end
  2666. if string.sub(CMDBAR.Text, 1, 4) == ("cmds") then
  2667. CMDSFRAME.Visible = true
  2668. end
  2669. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshhats") then
  2670. for i,v in pairs(lplayer.Character:GetChildren()) do
  2671. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  2672. v.Handle.Mesh:Destroy()
  2673. end
  2674. end
  2675. end
  2676. if string.sub(CMDBAR.Text, 1, 9) == ("blockhats") then
  2677. for i,v in pairs(lplayer.Character:GetChildren()) do
  2678. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  2679. v.Handle.Mesh:Destroy()
  2680. end
  2681. end
  2682. end
  2683. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshtool") then
  2684. for i,v in pairs(lplayer.Character:GetChildren()) do
  2685. if (v:IsA("Tool")) then
  2686. v.Handle.Mesh:Destroy()
  2687. end
  2688. end
  2689. end
  2690. if string.sub(CMDBAR.Text, 1, 9) == ("blocktool") then
  2691. for i,v in pairs(lplayer.Character:GetChildren()) do
  2692. if (v:IsA("Tool")) then
  2693. v.Handle.Mesh:Destroy()
  2694. end
  2695. end
  2696. end
  2697. if string.sub(CMDBAR.Text, 1, 7) == ("spinner") then
  2698. local p = Instance.new("RocketPropulsion")
  2699. p.Parent = lplayer.Character.HumanoidRootPart
  2700. p.Name = "Spinner"
  2701. p.Target = lplayer.Character["Left Arm"]
  2702. p:Fire()
  2703. game:GetService("StarterGui"):SetCore("SendNotification", {
  2704. Title = "Spinner enabled";
  2705. Text = "Type ;nospinner to disable.";
  2706. })
  2707. end
  2708. if string.sub(CMDBAR.Text, 1, 9) == ("nospinner") then
  2709. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  2710. end
  2711. if string.sub(CMDBAR.Text, 1, 6) == ("reachd") then
  2712. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  2713. if v:isA("Tool") then
  2714. local a = Instance.new("SelectionBox",v.Handle)
  2715. a.Adornee = v.Handle
  2716. v.Handle.Size = Vector3.new(0.5,0.5,60)
  2717. v.GripPos = Vector3.new(0,0,0)
  2718. lplayer.Character.Humanoid:UnequipTools()
  2719. end
  2720. end
  2721. game:GetService("StarterGui"):SetCore("SendNotification", {
  2722. Title = "Reach applied!";
  2723. Text = "Applied to equipped sword. Use ;noreach to disable.";
  2724. })
  2725. end
  2726. if string.sub(CMDBAR.Text, 1, 6) == ("reach ") then
  2727. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  2728. if v:isA("Tool") then
  2729. local a = Instance.new("SelectionBox",v.Handle)
  2730. a.Name = "Reach"
  2731. a.Adornee = v.Handle
  2732. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(CMDBAR.Text, 7)))
  2733. v.GripPos = Vector3.new(0,0,0)
  2734. lplayer.Character.Humanoid:UnequipTools()
  2735. end
  2736. end
  2737. game:GetService("StarterGui"):SetCore("SendNotification", {
  2738. Title = "Reach applied!";
  2739. Text = "Applied to equipped sword. Use ;noreach to disable.";
  2740. })
  2741. end
  2742. if string.sub(CMDBAR.Text, 1, 7) == ("noreach") then
  2743. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  2744. if v:isA("Tool") then
  2745. v.Handle.Reach:Destroy()
  2746. end
  2747. end
  2748. game:GetService("StarterGui"):SetCore("SendNotification", {
  2749. Title = "Reach removed!";
  2750. Text = "Removed reach from equipped sword.";
  2751. })
  2752. end
  2753. if string.sub(CMDBAR.Text, 1, 6) == ("rkill ") then
  2754. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  2755. lplayer.Character.Humanoid.Name = 1
  2756. local l = lplayer.Character["1"]:Clone()
  2757. l.Parent = lplayer.Character
  2758. l.Name = "Humanoid"
  2759. wait(0.1)
  2760. lplayer.Character["1"]:Destroy()
  2761. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2762. lplayer.Character.Animate.Disabled = true
  2763. wait(0.1)
  2764. lplayer.Character.Animate.Disabled = false
  2765. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2766. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2767. lplayer.Character.Humanoid:EquipTool(v)
  2768. end
  2769. wait(0.1)
  2770. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2771. wait(0.2)
  2772. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2773. wait(0.5)
  2774. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  2775. game:GetService("StarterGui"):SetCore("SendNotification", {
  2776. Title = "Tools needed!";
  2777. Text = "You need a tool in your backpack for this command!";
  2778. })
  2779. end
  2780. end
  2781. if string.sub(CMDBAR.Text, 1, 6) == ("tp me ") then
  2782. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  2783. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2784. end
  2785. end
  2786. if string.sub(CMDBAR.Text, 1, 7) == ("cbring ") then
  2787. if (string.sub(CMDBAR.Text, 8)) == "all" or (string.sub(CMDBAR.Text, 8)) == "All" or (string.sub(CMDBAR.Text, 8)) == "ALL" then
  2788. cbringall = true
  2789. else
  2790. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  2791. brplr = v.Name
  2792. end
  2793. end
  2794. cbring = true
  2795. end
  2796. if string.sub(CMDBAR.Text, 1, 8) == ("uncbring") then
  2797. cbring = false
  2798. cbringall = false
  2799. end
  2800. if string.sub(CMDBAR.Text, 1, 5) == ("swap ") then
  2801. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  2802. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2803. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  2804. lplayer.Character.Humanoid.Name = 1
  2805. local l = lplayer.Character["1"]:Clone()
  2806. l.Parent = lplayer.Character
  2807. l.Name = "Humanoid"
  2808. wait(0.1)
  2809. lplayer.Character["1"]:Destroy()
  2810. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2811. lplayer.Character.Animate.Disabled = true
  2812. wait(0.1)
  2813. lplayer.Character.Animate.Disabled = false
  2814. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2815. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2816. lplayer.Character.Humanoid:EquipTool(v)
  2817. end
  2818. local function tp(player,player2)
  2819. local char1,char2=player.Character,player2.Character
  2820. if char1 and char2 then
  2821. char1:MoveTo(char2.Head.Position)
  2822. end
  2823. end
  2824. wait(0.1)
  2825. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2826. wait(0.2)
  2827. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2828. wait(0.5)
  2829. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2830. wait(0.6)
  2831. tp(lplayer, game:GetService("Players")[v.Name])
  2832. wait(0.4)
  2833. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  2834. game:GetService("StarterGui"):SetCore("SendNotification", {
  2835. Title = "Tools needed!";
  2836. Text = "You need a tool in your backpack for this command!";
  2837. })
  2838. end
  2839. end
  2840. if string.sub(CMDBAR.Text, 1, 7) == ("glitch ") then
  2841. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  2842. lplayer.Character.Humanoid.Name = 1
  2843. local l = lplayer.Character["1"]:Clone()
  2844. l.Parent = lplayer.Character
  2845. l.Name = "Humanoid"
  2846. wait(0.1)
  2847. lplayer.Character["1"]:Destroy()
  2848. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2849. lplayer.Character.Animate.Disabled = true
  2850. wait(0.1)
  2851. lplayer.Character.Animate.Disabled = false
  2852. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2853. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2854. lplayer.Character.Humanoid:EquipTool(v)
  2855. end
  2856. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  2857. wait(0.3)
  2858. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  2859. wait(0.4)
  2860. b = Instance.new("BodyForce")
  2861. b.Parent = lplayer.Character.HumanoidRootPart
  2862. b.Name = "Glitch"
  2863. b.Force = Vector3.new(100000000,5000,0)
  2864. game:GetService("StarterGui"):SetCore("SendNotification", {
  2865. Title = "Tools needed!";
  2866. Text = "You need a tool in your backpack for this command!";
  2867. })
  2868. end
  2869. end
  2870. if string.sub(CMDBAR.Text, 1, 8) == ("unglitch") then
  2871. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  2872. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  2873. b = Instance.new("BodyForce")
  2874. b.Parent = lplayer.Character.HumanoidRootPart
  2875. b.Name = "unGlitch"
  2876. b.Force = Vector3.new(0,-5000000,0)
  2877. wait(2)
  2878. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  2879. end
  2880. if string.sub(CMDBAR.Text, 1, 8) == ("grespawn") then
  2881. lplayer.Character.Humanoid.Health = 0
  2882. wait(1)
  2883. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  2884. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  2885. end
  2886. if string.sub(CMDBAR.Text, 1, 8) == ("explorer") then
  2887. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  2888. game:GetService("StarterGui"):SetCore("SendNotification", {
  2889. Title = "Success!";
  2890. Text = "DEX Explorer has loaded.";
  2891. })
  2892. end
  2893. if string.sub(CMDBAR.Text, 1, 5) == ("anim ") then
  2894. local Anim = Instance.new("Animation")
  2895. Anim.AnimationId = "rbxassetid://"..(string.sub(CMDBAR.Text, 6))
  2896. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  2897. track:Play(.1, 1, 1)
  2898. end
  2899. if string.sub(CMDBAR.Text, 1, 7) == ("animgui") then
  2900. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  2901. game:GetService("StarterGui"):SetCore("SendNotification", {
  2902. Title = "Success!";
  2903. Text = "Energize Animations GUI has loaded.";
  2904. })
  2905. end
  2906. if string.sub(CMDBAR.Text, 1, 7) == ("savepos") then
  2907. saved = lplayer.Character.HumanoidRootPart.CFrame
  2908. game:GetService("StarterGui"):SetCore("SendNotification", {
  2909. Title = "Position Saved";
  2910. Text = "Use ;loadpos to return to saved position.";
  2911. })
  2912. end
  2913. if string.sub(CMDBAR.Text, 1, 7) == ("loadpos") then
  2914. lplayer.Character.HumanoidRootPart.CFrame = saved
  2915. end
  2916. if string.sub(CMDBAR.Text, 1, 5) == ("bang ") then
  2917. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  2918. local Anim2 = Instance.new("Animation")
  2919. Anim2.AnimationId = "rbxassetid://148840371"
  2920. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  2921. track2:Play(.1, 1, 1)
  2922. bplrr = v.Name
  2923. banpl = true
  2924. end
  2925. end
  2926. if string.sub(CMDBAR.Text, 1, 6) == ("unbang") then
  2927. banpl = false
  2928. end
  2929. if string.sub(CMDBAR.Text, 1, 9) == ("bringmod ") then
  2930. local function bringmodw()
  2931. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  2932. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  2933. for i,ch in pairs(obj:GetDescendants()) do
  2934. if (ch:IsA("BasePart")) then
  2935. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  2936. ch.CanCollide = false
  2937. ch.Transparency = 0.7
  2938. wait()
  2939. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  2940. wait()
  2941. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  2942. wait()
  2943. ch.CFrame = lplayer.Character["Head"].CFrame
  2944. end
  2945. end
  2946. end
  2947. end
  2948. end
  2949. while wait() do
  2950. bringmodw()
  2951. end
  2952. game:GetService("StarterGui"):SetCore("SendNotification", {
  2953. Title = "BringMod";
  2954. Text = "BringMod enabled.";
  2955. })
  2956. end
  2957. if string.sub(CMDBAR.Text, 1, 7) == ("respawn") then
  2958. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  2959. local hum = Instance.new('Humanoid', mod)
  2960. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  2961. lplayer.Character = mod
  2962. end
  2963. if string.sub(CMDBAR.Text, 1, 8) == ("shutdown") then
  2964. game:GetService'RunService'.Stepped:Connect(function()
  2965. pcall(function()
  2966. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  2967. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  2968. for _,x in pairs(v.Character.Head:GetChildren()) do
  2969. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  2970. end
  2971. end
  2972. end
  2973. end)
  2974. end)
  2975. game:GetService("StarterGui"):SetCore("SendNotification", {
  2976. Title = "Attempting Shutdown";
  2977. Text = "Shutdown Attempt has begun.";
  2978. })
  2979. end
  2980. if string.sub(CMDBAR.Text, 1, 7) == ("delobj ") then
  2981. objtodel = (string.sub(CMDBAR.Text, 8))
  2982. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  2983. if v.Name == objtodel then
  2984. v:Destroy()
  2985. end
  2986. end
  2987. end
  2988. if string.sub(CMDBAR.Text, 1, 7) == ("getplrs") then
  2989. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  2990. print(v)
  2991. end
  2992. game:GetService("StarterGui"):SetCore("SendNotification", {
  2993. Title = "Printed";
  2994. Text = "Players have been printed to console. (F9)";
  2995. })
  2996. end
  2997. if string.sub(CMDBAR.Text, 1, 8) == ("deldecal") then
  2998. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  2999. if (v:IsA("Decal")) then
  3000. v:Destroy()
  3001. end
  3002. end
  3003. end
  3004. if string.sub(CMDBAR.Text, 1, 10) == ("opfinality") then
  3005. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  3006. game:GetService("StarterGui"):SetCore("SendNotification", {
  3007. Title = "Success!";
  3008. Text = "OpFinality GUI has loaded.";
  3009. })
  3010. end
  3011. if string.sub(CMDBAR.Text, 1, 7) == ("remotes") then
  3012. remotes = true
  3013. added = true
  3014. game.DescendantAdded:connect(function(rmt)
  3015. if added == true then
  3016. if remotes == true then
  3017. if rmt:IsA("RemoteEvent") then
  3018. print("A RemoteEvent was added!")
  3019. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  3020. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  3021. end end end
  3022. end)
  3023. game.DescendantAdded:connect(function(rmtfnctn)
  3024. if added == true then
  3025. if remotes == true then
  3026. if rmtfnctn:IsA("RemoteFunction") then
  3027. warn("A RemoteFunction was added!")
  3028. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  3029. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  3030. end end end
  3031. end)
  3032.  
  3033. game.DescendantAdded:connect(function(bndfnctn)
  3034. if added == true then
  3035. if binds == true then
  3036. if bndfnctn:IsA("BindableFunction") then
  3037. print("A BindableFunction was added!")
  3038. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  3039. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  3040. end end end
  3041. end)
  3042.  
  3043. game.DescendantAdded:connect(function(bnd)
  3044. if added == true then
  3045. if binds == true then
  3046. if bnd:IsA("BindableEvent") then
  3047. warn("A BindableEvent was added!")
  3048. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  3049. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  3050. end end end
  3051. end)
  3052.  
  3053.  
  3054. if binds == true then
  3055. for i,v in pairs(game:GetDescendants()) do
  3056. if v:IsA("BindableFunction") then
  3057. print(" game." .. v:GetFullName() .. " | BindableFunction")
  3058. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  3059. end end
  3060. for i,v in pairs(game:GetDescendants()) do
  3061. if v:IsA("BindableEvent") then
  3062. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  3063. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  3064. end end
  3065. else
  3066. print("Off")
  3067. end
  3068. if remotes == true then
  3069. for i,v in pairs(game:GetDescendants()) do
  3070. if v:IsA("RemoteFunction") then
  3071. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  3072. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  3073. end end
  3074. wait()
  3075. for i,v in pairs(game:GetDescendants()) do
  3076. if v:IsA("RemoteEvent") then
  3077. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  3078. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  3079. end end
  3080. else
  3081. print("Off")
  3082. end
  3083. game:GetService("StarterGui"):SetCore("SendNotification", {
  3084. Title = "Printing Remotes";
  3085. Text = "Type ;noremotes to disable.";
  3086. })
  3087. end
  3088. if string.sub(CMDBAR.Text, 1, 9) == ("noremotes") then
  3089. remotes = false
  3090. added = false
  3091. game:GetService("StarterGui"):SetCore("SendNotification", {
  3092. Title = "Printing Remotes Disabled";
  3093. Text = "Type ;remotes to enable.";
  3094. })
  3095. end
  3096. if string.sub(CMDBAR.Text, 1, 9) == ("tpdefault") then
  3097. spin = false
  3098. followed = false
  3099. traill = false
  3100. noclip = false
  3101. annoying = false
  3102. hwalk = false
  3103. cbringing = false
  3104. end
  3105. if string.sub(CMDBAR.Text, 1, 7) == ("stopsit") then
  3106. stopsitting = true
  3107. end
  3108. if string.sub(CMDBAR.Text, 1, 5) == ("gosit") then
  3109. stopsitting = false
  3110. end
  3111. if string.sub(CMDBAR.Text, 1, 7) == ("version") then
  3112. print(adminversion)
  3113. game:GetService("StarterGui"):SetCore("SendNotification", {
  3114. Title = "Version";
  3115. Text = adminversion;
  3116. })
  3117. end
  3118. if string.sub(CMDBAR.Text, 1, 7) == ("clicktp") then
  3119. clickgoto = true
  3120. game:GetService("StarterGui"):SetCore("SendNotification", {
  3121. Title = "Click TP";
  3122. Text = "Press E to teleport to mouse position";
  3123. })
  3124. end
  3125. if string.sub(CMDBAR.Text, 1, 9) == ("noclicktp") then
  3126. clickgoto = false
  3127. game:GetService("StarterGui"):SetCore("SendNotification", {
  3128. Title = "Click TP";
  3129. Text = "Click TP has been disabled.";
  3130. })
  3131. end
  3132. if string.sub(CMDBAR.Text, 1, 7) == ("toolson") then
  3133. gettingtools = true
  3134. game:GetService("StarterGui"):SetCore("SendNotification", {
  3135. Title = "Tools Enabled";
  3136. Text = "Automatically colleting tools dropped.";
  3137. })
  3138. end
  3139. if string.sub(CMDBAR.Text, 1, 8) == ("toolsoff") then
  3140. gettingtools = false
  3141. game:GetService("StarterGui"):SetCore("SendNotification", {
  3142. Title = "Tools Disabled";
  3143. Text = "Click TP has been disabled.";
  3144. })
  3145. end
  3146. if string.sub(CMDBAR.Text, 1, 9) == ("delcmdbar") then
  3147. ScreenGui:Destroy()
  3148. end
  3149. if string.sub(CMDBAR.Text, 1, 5) == ("reset") then
  3150. lplayer.Character.Head:Destroy()
  3151. end
  3152. if string.sub(CMDBAR.Text, 1, 6) == ("state ") then
  3153. statechosen = string.sub(CMDBAR.Text, 7)
  3154. changingstate = true
  3155. end
  3156. if string.sub(CMDBAR.Text, 1, 8) == ("gravity ") then
  3157. game:GetService("Workspace").Gravity = string.sub(CMDBAR.Text, 9)
  3158. end
  3159. if string.sub(CMDBAR.Text, 1, 9) == ("looprhats") then
  3160. removingmeshhats = true
  3161. end
  3162. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprhats") then
  3163. removingmeshhats = false
  3164. end
  3165. if string.sub(CMDBAR.Text, 1, 9) == ("looprtool") then
  3166. removingmeshtool = true
  3167. end
  3168. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprtool") then
  3169. removingmeshtool = false
  3170. end
  3171. if string.sub(CMDBAR.Text, 1, 9) == ("givetool ") then
  3172. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  3173. if v:IsA("Tool") then
  3174. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  3175. v.Parent = player.Character
  3176. end
  3177. end
  3178. end
  3179. end
  3180. if string.sub(CMDBAR.Text, 1, 4) == ("age ") then
  3181. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  3182. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  3183. end
  3184. end
  3185. if string.sub(CMDBAR.Text, 1, 3) == ("id ") then
  3186. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 4))) do
  3187. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  3188. end
  3189. end
  3190. if string.sub(CMDBAR.Text, 1, 5) == (".age ") then
  3191. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  3192. game:GetService("StarterGui"):SetCore("SendNotification", {
  3193. Title = player.AccountAge.." Days";
  3194. Text = "Account age of "..player.Name;
  3195. })
  3196. end
  3197. end
  3198. if string.sub(CMDBAR.Text, 1, 4) == (".id ") then
  3199. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  3200. game:GetService("StarterGui"):SetCore("SendNotification", {
  3201. Title = player.UserId.." ID";
  3202. Text = "Account ID of "..player.Name;
  3203. })
  3204. end
  3205. end
  3206. if string.sub(CMDBAR.Text, 1, 6) == ("gameid") then
  3207. game:GetService("StarterGui"):SetCore("SendNotification", {
  3208. Title = "Game ID";
  3209. Text = "Game ID: ".. game.GameId;
  3210. })
  3211. end
  3212. if string.sub(CMDBAR.Text, 1, 3) == ("pgs") then
  3213. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  3214. if pgscheck == true then
  3215. game:GetService("StarterGui"):SetCore("SendNotification", {
  3216. Title = "PGSPhysicsSolverEnabled";
  3217. Text = "PGS is Enabled!";
  3218. })
  3219. else
  3220. game:GetService("StarterGui"):SetCore("SendNotification", {
  3221. Title = "PGSPhysicsSolverEnabled";
  3222. Text = "PGS is Disabled!";
  3223. })
  3224. end
  3225. end
  3226. if string.sub(CMDBAR.Text, 1, 11) == ("removeinvis") then
  3227. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  3228. if v:IsA("Part") then
  3229. if v.Transparency == 1 then
  3230. if v.Name ~= "HumanoidRootPart" then
  3231. v:Destroy()
  3232. end
  3233. end
  3234. end
  3235. end
  3236. end
  3237. if string.sub(CMDBAR.Text, 1, 9) == ("removefog") then
  3238. game:GetService("Lighting").FogStart = 0
  3239. game:GetService("Lighting").FogEnd = 9999999999999
  3240. end
  3241. if string.sub(CMDBAR.Text, 1, 7) == ("disable") then
  3242. lplayer.Character.Humanoid.Parent = lplayer
  3243. end
  3244. if string.sub(CMDBAR.Text, 1, 6) == ("enable") then
  3245. lplayer.Humanoid.Parent = lplayer.Character
  3246. end
  3247. if string.sub(CMDBAR.Text, 1, 13) == ("givealltools ") then
  3248. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  3249. if v:IsA("Tool") then
  3250. v.Parent = lplayer.Character
  3251. wait()
  3252. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 14))) do
  3253. v.Parent = player.Character
  3254. end
  3255. end
  3256. end
  3257. end
  3258. if string.sub(CMDBAR.Text, 1, 9) == ("flyspeed ") then
  3259. speedfly = string.sub(CMDBAR.Text, 10)
  3260. wait()
  3261. change()
  3262. end
  3263. if string.sub(CMDBAR.Text, 1, 7) == ("carpet ") then
  3264. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  3265. local Anim3 = Instance.new("Animation")
  3266. Anim3.AnimationId = "rbxassetid://282574440"
  3267. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  3268. track3:Play(.1, 1, 1)
  3269. bplrr = v.Name
  3270. banpl = true
  3271. end
  3272. end
  3273. if string.sub(CMDBAR.Text, 1, 8) == ("uncarpet") then
  3274. banpl = false
  3275. end
  3276. if string.sub(CMDBAR.Text, 1, 6) == ("stare ") then
  3277. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  3278. staring = true
  3279. stareplr = v
  3280. end
  3281. end
  3282. if string.sub(CMDBAR.Text, 1, 7) == ("unstare") then
  3283. staring = false
  3284. end
  3285. if string.sub(CMDBAR.Text, 1, 7) == ("logchat") then
  3286. chatlogs = true
  3287. game:GetService("StarterGui"):SetCore("SendNotification", {
  3288. Title = "LogChat enabled";
  3289. Text = "Now logging all player chat.";
  3290. })
  3291. end
  3292. if string.sub(CMDBAR.Text, 1, 9) == ("unlogchat") then
  3293. chatlogs = false
  3294. game:GetService("StarterGui"):SetCore("SendNotification", {
  3295. Title = "LogChat disabled";
  3296. Text = "Stopped logging all player chat.";
  3297. })
  3298. end
  3299. if string.sub(CMDBAR.Text, 1, 6) == ("fixcam") then
  3300. game:GetService("Workspace").CurrentCamera:Destroy()
  3301. wait(0.1)
  3302. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  3303. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  3304. lplayer.CameraMinZoomDistance = 0.5
  3305. lplayer.CameraMaxZoomDistance = 400
  3306. lplayer.CameraMode = "Classic"
  3307. end
  3308. if string.sub(CMDBAR.Text, 1, 7) == ("unstate") then
  3309. changingstate = false
  3310. end
  3311. CMDBAR.Text = ""
  3312. end
  3313. end)
  3314.  
  3315. wait(0.3)
  3316. game:GetService("StarterGui"):SetCore("SendNotification", {
  3317. Title = "Loaded successfully!";
  3318. Text = "Reviz Admin V2 by illremember";
  3319. })
  3320. wait(0.1)
  3321. print("Reviz Admin V2 loaded!")
  3322. if game:GetService("Workspace").FilteringEnabled == true then
  3323. warn("FE is Enabled (Filtering Enabled)")
  3324. game:GetService("StarterGui"):SetCore("SendNotification", {
  3325. Title = "FE is Enabled";
  3326. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  3327. })
  3328. else
  3329. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  3330. game:GetService("StarterGui"):SetCore("SendNotification", {
  3331. Title = "FE is Disabled";
  3332. Text = "Filtering Disabled. Consider using a different admin script.";
  3333. })
  3334. end
  3335.  
  3336. local intro = Instance.new("ScreenGui")
  3337. local Frame = Instance.new("Frame")
  3338. local ImageLabel = Instance.new("ImageLabel")
  3339. intro.Parent = game:GetService("CoreGui")
  3340. Frame.Parent = intro
  3341. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  3342. Frame.BackgroundTransparency = 1
  3343. Frame.Size = UDim2.new(1, 0, 0, 300)
  3344. Frame.Position = UDim2.new(0, 0, -0.4, 0)
  3345. ImageLabel.Parent = Frame
  3346. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  3347. ImageLabel.BackgroundTransparency = 1
  3348. ImageLabel.Position = UDim2.new(0, 0, 0, 0)
  3349. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  3350. ImageLabel.Image = "http://www.roblox.com/asset/?id=1542162618"
  3351. Frame:TweenPosition(UDim2.new(0, 0, 0.2, 0), "Out", "Elastic", 3)
  3352. wait(3.01)
  3353. Frame:TweenPosition(UDim2.new(0, 0, 1.5, 0), "Out", "Elastic", 5)
  3354. wait(5.01)
  3355. intro:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement