Advertisement
ghostteen14

Untitled

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