Advertisement
Guest User

Madz Masters v0.1

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