Advertisement
oatmeal2009

hacker man!

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