Advertisement
Guest User

Untitled

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