Advertisement
Upscalefanatic3

Roblox High School Script

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