Advertisement
PasteBinAutoUpdate

ayyayaya

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