Advertisement
Guest User

prison life

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