Guest User

[New] Prison Life 2020

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