DuaLua

Untitled

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