JORGEEEEEE_EEE

emillia hub

Aug 19th, 2019
527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 496.55 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local emillia = Instance.new("ScreenGui")
  5. local MainMenu = Instance.new("Frame")
  6. local Frame = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local Shattervast = Instance.new("TextButton")
  9. local InfiniteYield = Instance.new("TextButton")
  10. local Reviz = Instance.new("TextButton")
  11. local JoJoHub = Instance.new("TextButton")
  12. local PrisionLife = Instance.new("TextButton")
  13. local Jailbreak = Instance.new("TextButton")
  14. local Jailbreak2 = Instance.new("TextButton")
  15. local AimLock = Instance.new("TextButton")
  16. local TPose = Instance.new("TextButton")
  17. local Shit = Instance.new("TextButton")
  18. local Dick = Instance.new("TextButton")
  19. local Bitch = Instance.new("TextButton")
  20. local ImageLabel = Instance.new("ImageLabel")
  21. local ImageLabel_2 = Instance.new("ImageLabel")
  22. local Name1 = Instance.new("TextLabel")
  23. local Discord1 = Instance.new("TextLabel")
  24. local Discord2 = Instance.new("TextLabel")
  25. local Name2 = Instance.new("TextLabel")
  26. local Close = Instance.new("TextButton")
  27. local OpenFrame = Instance.new("Frame")
  28. local OpenButton = Instance.new("TextButton")
  29. --Properties:
  30. emillia.Name = "emillia"
  31. emillia.Parent = game.CoreGui
  32.  
  33. MainMenu.Name = "MainMenu"
  34. MainMenu.Parent = emillia
  35. MainMenu.Active = true
  36. MainMenu.BackgroundColor3 = Color3.new(1, 1, 1)
  37. MainMenu.Position = UDim2.new(0.247191012, 0, 0.143484622, 0)
  38. MainMenu.Size = UDim2.new(0, 660, 0, 507)
  39. MainMenu.Draggable = true
  40. MainMenu.Visible = false
  41.  
  42. Frame.Parent = MainMenu
  43. Frame.Active = true
  44. Frame.BackgroundColor3 = Color3.new(0, 1, 1)
  45. Frame.Position = UDim2.new(-0.000109678323, 0, -0.000549647491, 0)
  46. Frame.Size = UDim2.new(0, 660, 0, 38)
  47.  
  48. TextLabel.Parent = Frame
  49. TextLabel.Active = true
  50. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  51. TextLabel.BackgroundTransparency = 0.98000001907349
  52. TextLabel.Position = UDim2.new(0.198082462, 0, -0.0294703431, 0)
  53. TextLabel.Size = UDim2.new(0, 409, 0, 38)
  54. TextLabel.Font = Enum.Font.Highway
  55. TextLabel.Text = "Emillia hub"
  56. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  57. TextLabel.TextScaled = true
  58. TextLabel.TextSize = 14
  59. TextLabel.TextWrapped = true
  60.  
  61. Shattervast.Name = "Shattervast"
  62. Shattervast.Parent = Frame
  63. Shattervast.BackgroundColor3 = Color3.new(1, 1, 1)
  64. Shattervast.Position = UDim2.new(0, 0, 1.68909216, 0)
  65. Shattervast.Size = UDim2.new(0, 200, 0, 50)
  66. Shattervast.Font = Enum.Font.SourceSans
  67. Shattervast.Text = "Shattervast"
  68. Shattervast.TextColor3 = Color3.new(0, 0, 0)
  69. Shattervast.TextScaled = true
  70. Shattervast.TextSize = 14
  71. Shattervast.TextWrapped = true
  72. Shattervast.MouseButton1Down:connect(function()
  73. -- By illremember#3799
  74.  
  75. -- Important Loading
  76. trueSettings = {
  77. commandPrefix = ";";
  78. hotkeys = {};
  79. fchotkeymode = "unfc";
  80. }
  81.  
  82. -- Important Variables
  83. gsPlayers = game:GetService("Players")
  84. gsWorkspace = game:GetService("Workspace")
  85. gsLighting = game:GetService("Lighting")
  86. gsReplicatedStorage = game:GetService("ReplicatedStorage")
  87. gsCoreGui = game:GetService("CoreGui")
  88. gsTween = game:GetService("TweenService")
  89. gsHttp = game:GetService("HttpService")
  90.  
  91. LP = gsPlayers.LocalPlayer
  92. Mouse = LP:GetMouse()
  93.  
  94. defaultSettings = gsHttp:JSONEncode(trueSettings)
  95. function CreateSave()
  96. writefile("Shattervast.txt", defaultSettings)
  97. wait(0.5)
  98. local content = readfile("Shattervast.txt")
  99. local trueValue = gsHttp:JSONDecode(content)
  100. commandPrefix = trueValue.commandPrefix
  101. hotkeys = trueValue.hotkeys
  102. fchotkeymode = trueValue.fchotkeymode
  103. end
  104. function fullUpdate()
  105. local updatedSettings = {
  106. commandPrefix = commandPrefix;
  107. hotkeys = hotkeys;
  108. fchotkeymode = fchotkeymode;
  109. }
  110. local fullUPDATED = gsHttp:JSONEncode(updatedSettings)
  111. wait(0.2)
  112. writefile("Shattervast.txt", fullUPDATED)
  113. end
  114. if writefile ~= nil then
  115. function builder()
  116. local TESTsave = readfile("Shattervast.txt")
  117. if TESTsave == nil then
  118. return false
  119. else
  120. return true
  121. end
  122. end
  123. local success, message = pcall(builder)
  124. if success == true then
  125. function reader()
  126. local content = readfile("Shattervast.txt")
  127. local trueValue = gsHttp:JSONDecode(content)
  128. commandPrefix = trueValue.commandPrefix
  129. hotkeys = trueValue.hotkeys
  130. if trueValue.fchotkeymode == nil then
  131. fchotkeymode = "unfc"
  132. fullUpdate()
  133. else
  134. fchotkeymode = trueValue.fchotkeymode
  135. end
  136. end
  137. reader()
  138. elseif success == false then
  139. CreateSave()
  140. end
  141. else
  142. commandPrefix = ";"
  143. hotkeys = {}
  144. fchotkeymode = "unfc"
  145. end
  146.  
  147. CurrentGravity = gsWorkspace.Gravity
  148. CurrentWalkspeed = LP.Character.Humanoid.WalkSpeed
  149. CurrentJumppower = LP.Character.Humanoid.JumpPower
  150. CurrentHipheight = LP.Character.Humanoid.HipHeight
  151. CurrentNormal = LP.DevCameraOcclusionMode
  152.  
  153. gsWorkspace.Camera.Changed:Connect(function()
  154. gsWorkspace.Camera.FieldOfView = 70
  155. end)
  156.  
  157. -- Important Functions
  158. function view(plr)
  159. if plr.Character.Humanoid ~= nil then
  160. gsWorkspace.CurrentCamera.CameraSubject = plr.Character.Humanoid
  161. else
  162. gsWorkspace.CurrentCamera.CameraSubject = plr.Character.Head
  163. end
  164. end
  165. function unlockWS()
  166. for i,part in pairs(gsWorkspace:GetDescendants()) do
  167. if part:IsA("Part") then
  168. part.Locked = false
  169. end
  170. end
  171. end
  172. function lockWS()
  173. for i,part in pairs(gsWorkspace:GetDescendants()) do
  174. if part:IsA("Part") then
  175. part.Locked = true
  176. end
  177. end
  178. end
  179. function FEGodmode()
  180. local changeview = false
  181. if gsWorkspace.CurrentCamera.CameraSubject == LP.Character.Humanoid or gsWorkspace.CurrentCamera.CameraSubject == LP.Character then
  182. changeview = true
  183. end
  184. LP.Character.Humanoid.Name = 1
  185. local l = LP.Character["1"]:Clone()
  186. l.Parent = LP.Character
  187. l.Name = "Humanoid"
  188. wait(0.1)
  189. LP.Character["1"]:Destroy()
  190. if changeview then
  191. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character
  192. end
  193. LP.Character.Animate.Disabled = true
  194. wait(0.1)
  195. LP.Character.Animate.Disabled = false
  196. LP.Character.Humanoid.DisplayDistanceType = "None"
  197. end
  198. function RocketPropulsion(maxthrust,maxspeed,thrustp,targetplr,name)
  199. local l = Instance.new("RocketPropulsion")
  200. l.Parent = LP.Character.HumanoidRootPart
  201. l.CartoonFactor = 1
  202. l.MaxThrust = maxthrust
  203. l.MaxSpeed = maxspeed
  204. l.ThrustP = thrustp
  205. l.Name = name
  206. l.Target = targetplr.Character.HumanoidRootPart
  207. l:Fire()
  208. end
  209. function createIntro(style, msg, length)
  210. if gsCoreGui:FindFirstChild("Notification") then
  211. gsCoreGui:FindFirstChild("Notification"):Destroy()
  212. end
  213. local info = "http://www.roblox.com/asset/?id=1281284684"
  214. local warning = "http://www.roblox.com/asset/?id=1281286925"
  215. if style == "info" then
  216. style = info
  217. elseif style == "warning" then
  218. style = warning
  219. end
  220. local Notification = Instance.new("ScreenGui")
  221. local Frame = Instance.new("Frame")
  222. local TextLabel = Instance.new("TextLabel")
  223. local IMAGE = Instance.new("ImageLabel")
  224. Notification.Name = "Notification"
  225. Notification.Parent = gsCoreGui
  226. Frame.Parent = Notification
  227. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  228. Frame.BackgroundTransparency = 0.20000000298023
  229. Frame.BorderSizePixel = 0
  230. Frame.Position = UDim2.new(0, 0, -0.2, 0)
  231. Frame.Size = UDim2.new(1, 0, 0, 30)
  232. TextLabel.Parent = Frame
  233. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  234. TextLabel.BackgroundTransparency = 1
  235. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  236. TextLabel.Font = Enum.Font.SourceSansLight
  237. TextLabel.Text = msg
  238. TextLabel.TextColor3 = Color3.new(0.905882, 0.905882, 0.905882)
  239. TextLabel.TextScaled = true
  240. TextLabel.TextSize = 14
  241. TextLabel.TextWrapped = true
  242. IMAGE.Parent = Frame
  243. IMAGE.BackgroundTransparency = 1
  244. IMAGE.Size = UDim2.new(0, 50, 0, 50)
  245. IMAGE.Position = UDim2.new(0.1, 0, 0, 0)
  246. IMAGE.Image = style
  247. local Intro = Instance.new("ScreenGui")
  248. local Frame2 = Instance.new("Frame")
  249. local IMAGE2 = Instance.new("ImageLabel")
  250. Intro.Name = "Intro"
  251. Intro.Parent = gsCoreGui
  252. Frame2.Parent = Intro
  253. Frame2.BackgroundTransparency = 1
  254. Frame2.BorderSizePixel = 0
  255. Frame2.Position = UDim2.new(0, 0, -0.2, 0)
  256. Frame2.Size = UDim2.new(1, 0, 0, 30)
  257. IMAGE2.Parent = Frame
  258. IMAGE2.BackgroundTransparency = 1
  259. IMAGE2.AnchorPoint = Vector2.new(0.5, 0)
  260. IMAGE2.Size = UDim2.new(0, 240, 0, 120)
  261. IMAGE2.Position = UDim2.new(0.5, 0, 0, 0)
  262. IMAGE2.Image = "http://www.roblox.com/asset/?id=1795472522"
  263. Frame2:TweenPosition(UDim2.new(0, 0, 0, 200), "Out", "Quad", 1.5)
  264. Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 1.5)
  265. wait(length)
  266. pcall(function()
  267. Frame:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  268. Frame2:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  269. end)
  270. wait(3.01)
  271. Intro:Destroy()
  272. Notification:Destroy()
  273. end
  274. function Notification(style, msg, length)
  275. if gsCoreGui:FindFirstChild("Notification") then
  276. gsCoreGui:FindFirstChild("Notification"):Destroy()
  277. end
  278. local info = "http://www.roblox.com/asset/?id=1281284684"
  279. local warning = "http://www.roblox.com/asset/?id=1281286925"
  280. if style == "info" then
  281. style = info
  282. elseif style == "warning" then
  283. style = warning
  284. end
  285. local Notification = Instance.new("ScreenGui")
  286. local Frame = Instance.new("Frame")
  287. local TextLabel = Instance.new("TextLabel")
  288. local IMAGE = Instance.new("ImageLabel")
  289. Notification.Name = "Notification"
  290. Notification.Parent = gsCoreGui
  291. Frame.Parent = Notification
  292. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  293. Frame.BackgroundTransparency = 0.20000000298023
  294. Frame.BorderSizePixel = 0
  295. Frame.Position = UDim2.new(0, 0, -0.2, 0)
  296. Frame.Size = UDim2.new(1, 0, 0, 30)
  297. TextLabel.Parent = Frame
  298. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  299. TextLabel.BackgroundTransparency = 1
  300. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  301. TextLabel.Font = Enum.Font.SourceSansLight
  302. TextLabel.Text = msg
  303. TextLabel.TextColor3 = Color3.new(0.905882, 0.905882, 0.905882)
  304. TextLabel.TextScaled = true
  305. TextLabel.TextSize = 14
  306. TextLabel.TextWrapped = true
  307. IMAGE.Parent = Frame
  308. IMAGE.BackgroundTransparency = 1
  309. IMAGE.Size = UDim2.new(0, 50, 0, 50)
  310. IMAGE.Position = UDim2.new(0.1, 0, 0, 0)
  311. IMAGE.Image = style
  312. Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 1.5)
  313. wait(length)
  314. pcall(function()
  315. Frame:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  316. end)
  317. wait(3.01)
  318. Notification:Destroy()
  319. end
  320. function hasTools()
  321. local a = false
  322. local b = false
  323. for i,v in pairs(LP.Character:GetDescendants()) do
  324. if v:IsA("Tool") then
  325. if v ~= nil then
  326. a = true
  327. else
  328. a = false
  329. end
  330. end
  331. end
  332. for i,k in pairs(LP.Backpack:GetDescendants()) do
  333. if k:IsA("Tool") then
  334. if k ~= nil then
  335. b = true
  336. else
  337. b = false
  338. end
  339. end
  340. end
  341. return a or b
  342. end
  343. Compliments = {" is the coolest person in this server!", ", I really like your avatar!", ", I really want to be your friend!", " is truly amazing. Truly!", " is incredible!", ", you are my favourite here!!", ", I am complimenting you right now at this very moment.", " you are really awesome", " when will you be my friend!?", " is such a great person", " is a fantastic person!"}
  344. function complimentplr(player)
  345. local plrName = player.Name
  346. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(plrName..Compliments[math.random(1, #Compliments)], "All")
  347. end
  348. function createINFO(player)
  349. local InfoGUIv2 = Instance.new("ScreenGui")
  350. local Frame = Instance.new("Frame")
  351. local Frame_2 = Instance.new("Frame")
  352. local infoguiCLOSE = Instance.new("TextButton")
  353. local Frame_3 = Instance.new("Frame")
  354. local playerName = Instance.new("TextLabel")
  355. local Frame_4 = Instance.new("Frame")
  356. local playerAvatar = Instance.new("ImageLabel")
  357. local playerAccAge = Instance.new("TextLabel")
  358. local playerId = Instance.new("TextLabel")
  359. local playerOs = Instance.new("TextLabel")
  360. local playerMembership = Instance.new("TextLabel")
  361. local Frame_5 = Instance.new("Frame")
  362. local Frame_6 = Instance.new("Frame")
  363. InfoGUIv2.Name = "InfoGUIv2"
  364. InfoGUIv2.Parent = gsCoreGui
  365. Frame.Parent = InfoGUIv2
  366. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  367. Frame.BackgroundTransparency = 1
  368. Frame.BorderColor3 = Color3.new(0, 0, 0)
  369. Frame.ClipsDescendants = true
  370. Frame.Position = UDim2.new(0.45, 0, 1, 0)
  371. Frame.Size = UDim2.new(0, 265, 0, 302)
  372. Frame.ZIndex = -1
  373. Frame_2.Parent = Frame
  374. Frame_2.BackgroundColor3 = Color3.new(0.290196, 0, 0.447059)
  375. Frame_2.BorderSizePixel = 0
  376. Frame_2.Size = UDim2.new(0, 260, 0, 20)
  377. infoguiCLOSE.Name = "infoguiCLOSE"
  378. infoguiCLOSE.Parent = Frame_2
  379. infoguiCLOSE.BackgroundColor3 = Color3.new(1, 1, 1)
  380. infoguiCLOSE.BackgroundTransparency = 1
  381. infoguiCLOSE.BorderSizePixel = 0
  382. infoguiCLOSE.Position = UDim2.new(0, 230, 0, 0)
  383. infoguiCLOSE.Size = UDim2.new(0, 30, 0, 20)
  384. infoguiCLOSE.Font = Enum.Font.SourceSansBold
  385. infoguiCLOSE.Text = "X"
  386. infoguiCLOSE.TextColor3 = Color3.new(0.992157, 0.992157, 0.992157)
  387. infoguiCLOSE.TextSize = 20
  388. Frame_3.Parent = Frame
  389. Frame_3.BackgroundColor3 = Color3.new(0.482353, 0.121569, 0.635294)
  390. Frame_3.BorderSizePixel = 0
  391. Frame_3.Position = UDim2.new(0, 0, 0, 20)
  392. Frame_3.Size = UDim2.new(0, 260, 0, 40)
  393. playerName.Name = "playerName"
  394. playerName.Parent = Frame_3
  395. playerName.BackgroundColor3 = Color3.new(1, 1, 1)
  396. playerName.BackgroundTransparency = 1
  397. playerName.Position = UDim2.new(0, 10, 0, 5)
  398. playerName.Size = UDim2.new(0, 240, 0, 30)
  399. playerName.Font = Enum.Font.SourceSansLight
  400. playerName.Text = player.Name
  401. playerName.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  402. playerName.TextScaled = true
  403. playerName.TextSize = 14
  404. playerName.TextWrapped = true
  405. Frame_4.Parent = Frame
  406. Frame_4.BackgroundColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  407. Frame_4.BorderSizePixel = 0
  408. Frame_4.Position = UDim2.new(0, 0, 0, 60)
  409. Frame_4.Size = UDim2.new(0, 260, 0, 237)
  410. playerAvatar.Name = "playerAvatar"
  411. playerAvatar.Parent = Frame_4
  412. playerAvatar.BackgroundColor3 = Color3.new(1, 1, 1)
  413. playerAvatar.Position = UDim2.new(0, 85, 0, 10)
  414. playerAvatar.Size = UDim2.new(0, 85, 0, 85)
  415. playerAvatar.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=150&y=150&Format=Png&username="..player.Name
  416. playerAccAge.Name = "playerAccAge"
  417. playerAccAge.Parent = Frame_4
  418. playerAccAge.BackgroundColor3 = Color3.new(1, 1, 1)
  419. playerAccAge.BackgroundTransparency = 1
  420. playerAccAge.Position = UDim2.new(0, 5, 0, 101)
  421. playerAccAge.Size = UDim2.new(0, 250, 0, 30)
  422. playerAccAge.Font = Enum.Font.SourceSans
  423. playerAccAge.Text = "Account Age: "..player.AccountAge
  424. playerAccAge.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  425. playerAccAge.TextScaled = true
  426. playerAccAge.TextSize = 14
  427. playerAccAge.TextWrapped = true
  428. playerId.Name = "playerId"
  429. playerId.Parent = Frame_4
  430. playerId.BackgroundColor3 = Color3.new(1, 1, 1)
  431. playerId.BackgroundTransparency = 1
  432. playerId.Position = UDim2.new(0, 5, 0, 131)
  433. playerId.Size = UDim2.new(0, 250, 0, 30)
  434. playerId.Font = Enum.Font.SourceSans
  435. playerId.Text = "Account ID: "..player.UserId
  436. playerId.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  437. playerId.TextScaled = true
  438. playerId.TextSize = 14
  439. playerId.TextWrapped = true
  440. playerOs.Name = "playerOs"
  441. playerOs.Parent = Frame_4
  442. playerOs.BackgroundColor3 = Color3.new(1, 1, 1)
  443. playerOs.BackgroundTransparency = 1
  444. playerOs.Position = UDim2.new(0, 5, 0, 161)
  445. playerOs.Size = UDim2.new(0, 250, 0, 30)
  446. playerOs.Font = Enum.Font.SourceSansLight
  447. playerOs.Text = "Player OS: "..player.OsPlatform
  448. playerOs.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  449. playerOs.TextScaled = true
  450. playerOs.TextSize = 14
  451. playerOs.TextWrapped = true
  452. playerMembership.Name = "playerMembership"
  453. playerMembership.Parent = Frame_4
  454. playerMembership.BackgroundColor3 = Color3.new(1, 1, 1)
  455. playerMembership.BackgroundTransparency = 1
  456. playerMembership.Position = UDim2.new(0, 5, 0, 191)
  457. playerMembership.Size = UDim2.new(0, 250, 0, 30)
  458. playerMembership.Font = Enum.Font.SourceSansLight
  459. if player.MembershipType == Enum.MembershipType.None then
  460. playerMembership.Text = "No builder's club."
  461. elseif player.MembershipType == Enum.MembershipType.BuildersClub then
  462. playerMembership.Text = "Builder's club!"
  463. elseif player.MembershipType == Enum.MembershipType.TurboBuildersClub then
  464. playerMembership.Text = "Turbo Builder's club!"
  465. elseif player.MembershipType == Enum.MembershipType.OutrageousBuildersClub then
  466. playerMembership.Text = "Outrageous Builder's club!"
  467. end
  468. playerMembership.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  469. playerMembership.TextScaled = true
  470. playerMembership.TextSize = 14
  471. playerMembership.TextWrapped = true
  472. Frame_5.Parent = Frame
  473. Frame_5.BackgroundColor3 = Color3.new(0, 0, 0)
  474. Frame_5.BackgroundTransparency = 0.69999998807907
  475. Frame_5.BorderColor3 = Color3.new(0, 0, 0)
  476. Frame_5.BorderSizePixel = 0
  477. Frame_5.ClipsDescendants = true
  478. Frame_5.Position = UDim2.new(0, 10, 0, 10)
  479. Frame_5.Selectable = true
  480. Frame_5.Size = UDim2.new(0, 255, 0, 292)
  481. Frame_5.ZIndex = -1
  482. Frame_6.Parent = Frame
  483. Frame_6.BackgroundColor3 = Color3.new(0, 0, 0)
  484. Frame_6.BackgroundTransparency = 0.69999998807907
  485. Frame_6.BorderColor3 = Color3.new(0, 0, 0)
  486. Frame_6.BorderSizePixel = 0
  487. Frame_6.ClipsDescendants = true
  488. Frame_6.Position = UDim2.new(0, 8, 0, 8)
  489. Frame_6.Selectable = true
  490. Frame_6.Size = UDim2.new(0, 255, 0, 292)
  491. Frame_6.ZIndex = -1
  492. local closeGet = {}
  493. closeGet.Size = UDim2.new(0, 0, 0, 0)
  494. local openGet = {}
  495. openGet.Position = UDim2.new(0.45, 0, 0.45, 0)
  496. local closeFunction = gsTween:Create(Frame, TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), closeGet)
  497. local openFunction = gsTween:Create(Frame, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), openGet)
  498. infoguiCLOSE.MouseButton1Click:Connect(function()
  499. closeFunction:Play()
  500. Frame:TweenPosition((Frame.Position + UDim2.new(0, 265 / 2, 0, 302 / 2)), "InOut", "Sine", 2)
  501. wait(2.01)
  502. Frame:Destroy()
  503. end)
  504. openFunction:Play()
  505. local UserInputService = game:GetService("UserInputService")
  506. local dragging
  507. local dragInput
  508. local dragStart
  509. local startPos
  510. local function update(input)
  511. local delta = input.Position - dragStart
  512. local dragTime = 0.055
  513. local SmoothDrag = {}
  514. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  515. local dragSmoothFunction = gsTween:Create(Frame, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  516. dragSmoothFunction:Play()
  517. end
  518. Frame.InputBegan:Connect(function(input)
  519. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  520. dragging = true
  521. dragStart = input.Position
  522. startPos = Frame.Position
  523. input.Changed:Connect(function()
  524. if input.UserInputState == Enum.UserInputState.End then
  525. dragging = false
  526. end
  527. end)
  528. end
  529. end)
  530. Frame.InputChanged:Connect(function(input)
  531. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  532. dragInput = input
  533. end
  534. end)
  535. UserInputService.InputChanged:Connect(function(input)
  536. if input == dragInput and dragging and Frame.Size == UDim2.new(0, 265, 0, 302) then
  537. update(input)
  538. end
  539. end)
  540. end
  541. function clientSided()
  542. Notification("info", "This command is for the client (you) only, no one else can see!", 6)
  543. end
  544. searchCmds={"1 print [msg] - Prints a message to the developer console","2 warn [msg] - Warns a message to the developer console","3 sit - Makes you sit","4 god - Activates FE Godmode (breaks tools)","5 view [plr] - Changes your camera subject to another player","6 unview - Changes your camera back to your player","7 gravity [num] - Changes workspace gravity to [num]","8 ungravity - Reverts workspace gravity to game's default","9 goto [plr] - Teleports you to a player","10 fecheck - Checks whether the game is FE or not","11 lockws - Locks the whole workspace","12 unlockws - Unlocks the whole workspace","13 noclip - Allows you to walk through walls and other objects","14 clip - Stops noclip, can collide","15 follow [plr] / [num] - Makes you follow a player constantly, optional [num] for how far away to follow","16 unfollow - Stops you from following","17 fling [plr] / [pow] - Uses your character to fling a player, optional [pow] for how much power to put into the fling","18 unfling - Stops you from flinging","19 trail [plr] / [num] - Makes you trail (walk infront) of a player constantly, optional [num] for how far away to trail","20 untrail - Stops you from trailing","21 annoy [plr] - Loop teleports you to the player","22 unannoy - Stops loop teleporting you","23 reset - Resets your character","24 grespawn - Respawns your character, best for use after FE godmode","25 respawn - Respawns your character, best to use if grespawn fails to work","26 speed // ws [num] - Changes your walkspeed (speed or ws) to [num]","27 jumppower // jp [num] - Changes your jumppower (jumppower or jp) to [num]","28 hipheight // hh [num] - Changes your hipheight (hipheight or hh) to [num]","29 default - Changes your walkspeed, jumppower and hipheight back to normal","30 credits - Displays admin credits (by illremember#3799)","31 attach [plr] - Attaches you to a player, tool required","32 fly / [speed] - Enables fly, optional [speed] for how fast to fly","33 unfly - Disables fly","34 kill [plr] - Kills a player, tool required","35 bring [plr] - Brings a player, tool required","36 naked - Displays avatar body colours","37 nolimbs - Deletes all your arms and legs","38 noarms - Deletes both your arms","39 nolegs - Deletes both your legs","40 antikick [on/off] - Blocks all remotes for antikick when on, disables when off","41 blockremote [remote] / [service] - Blocks a remote from firing, optional [service] for where the remote is located","42 remotespy [on/off] - Prints all remotes to developer console when on when fired, stops printing when off","43 bang [plr] / [speed] - Bangs a player, optional [speed] to set animation adjust speed","44 unbang - Stops bang player","45 spam [msg] - Spams [msg] in chat","46 spamdelay [num] - Sets how long to wait in between spamming","47 unspam - Stops spamming","48 info [plr] - Creates GUI with information about player account, shows Account age, membership and account ID","49 age [plr] - Chats account age of player","50 invisible - Enables FE invisibility, by Timeless","51 walk [plr] - Begins to make you loop walk towards player","52 glitch [plr] / [num] - Glitches a player, tool required, optional [num] for strength of glitch","53 tp [plr] [plr] - Teleports a player to another player, tool required","54 givetool [plr] / [tool] - Gives your current equipped tool to player, optional [tool] to pick a tool by name from your inventory","55 givealltools [plr] - Gives all tools currently equipped and in inventory to player","56 blockhats - Removes mesh of all accessories","57 blocktool - Removes mesh of currently equipped tool","58 orbit [plr] - Begins to make you orbit around a player","59 unorbit - Stops you orbiting a player","60 pos - Shows your current position","61 savepos - Saves your current position","62 loadpos - Loads your current position from savepos","63 tppos [num] [num] [num] - Teleports you to position [num], [num], [num]","64 pmspam [plr] [msg] - Makes you spam a player's pm with [msg]","65 unpmspam - Stops spamming a player's pm","66 wsvis [num] - Changes all parts in workspace to [num] transparency","67 bringobj [obj] / [num] - Brings an object in the workspace to you, optional [num] for how far away to bring object","68 cbring [plr] - Brings a player to you constantly on client","69 uncbring - Stops bringing a player to you on client","70 cfreeze [plr] - Freezes a player on your client","71 uncfreeze / [plr] - Unfreezes a player on your cleint","72 unattach - Unattaches you from a player","73 reach [on/off] / [num] - Activates/Deactivates reach for currently equipped tool, optional [num] for how long the reach should be","74 droptool / [tool] - Drops a tool into the workspace, optional [tool] command for which tool to drop","75 drophats - Drops all your accessories into the workspace","76 hidecmdbar - Hides the command bar","77 showcmdbar - Shows the command bar","78 prefix [key] - Changes your prefix to [key] must be 1 character","79 removeinvis - Removes all invisible parts in workspace","80 removefog - Removes fog in lighting","81 animation [id/gui] / [speed] - Makes you play an animation with [id], optional [speed] for adjusting animation speed OR [gui] to open Energize animation GUI","82 btools - Gives you btools for deleting, copying and dragging (client side)","83 esp [plr] - Enables an esp for that player, credits to Infinite Yield","84 unesp / [plr] - Disables all esp, optional [plr] for disabling esp just for that player","85 dice - Chats you rolling a dice for 1, 2, 3, 4, 5 or 6","86 random [min] [max] - Chats you picking a random number between [min] and [max]","87 closegame - Shutsdown/closes your game","88 savetool / [tool] - Saves a tool to your player equipped, optional [tool] for which tool to save in your inventory","89 loadtool / [tool] - Loads a tool from your player, optional [tool] for which tool to load by name","90 savealltool - Saves all tools in your character/inventory","91 loadalltool - Loads all tools in your player saved tools","92 clicktp / [key] - Enables click teleport, optional [key] to set a key instead of clicking","93 clickdel / [key] - Enables click delete part, optional [key] to set a key instead of clicking","94 unclicktp - Disables clicktp","95 unclickdel - Disables clickdel","96 shutdown - Attempts a server shutdown","97 chatlogs - Opens up a chat log gui with options to print chat to developer console","98 stopadmin - Disables currently running admin completely","99 freecam / [speed] - Enables freecam (like flying but not in character), optional [speed] for how fast the freecam should go","100 unfreecam // unfc - Disables freecam","101 fctp [plr] - Teleports your freecam to player","102 gotofc - Teleports you to current freecam position","103 cmds - Opens up this GUI with commands","104 fullcredits - Shows full individual credits for all help with the admin","105 hotkey [key] [cmd] - Creates a hotkey that executes [cmd] when [key] is pressed","106 removehotkey [key] - Removes a hotkey with [key]","107 removeallhotkey - Removes all current hotkeys for commands","108 printhotkeys - Prints all current existing hotkeys","109 os [plr] - Chats the current OS of a player","110 spin [plr] - Makes you spin with a player, tool required","111 unspin - Stops you spinning a player/teleporting to a player","112 explorer - Loads DEX explorer","113 maxzoom [num] - Changes your maxzoom to number","114 stare [plr] - Makes you stare at another player","115 unstare [plr] - Makes you stop staring at player","116 tempgod - Enables temporary FE godmode, does not work on all games, does not break tools","117 void [plr] - Teleports you and a player to the void, requires a tool","118 freefall [plr] - Makes you and a player freefall to the ground","119 version - Shows current admin's version","120 shiftlockon - Enables shift lock if not enabled by game developer","121 copychat [plr] - Makes you copy the chat player says, use uncopychat to stop copying chat","122 newattach [plr] - Does not FE Godmode you, requires 2 tools, attaches you to player","123 newkill [plr] - Does not FE Godmode you, requires 2 tools, kills player","124 newbring [plr] - Does not FE Godmode you, requires 2 tools, brings player","125 spawn [ws/jp/hh/god] [num] - Sets your walkspeed/jumppower/hipheight to number whenever you respawn, or makes you FE Godded whenever you respawn","126 unspawn - Stops you spawning with stats set by "..commandPrefix.."spawn","127 autosavetool [on/off] - Auto saves your tools when you reset","128 beginbot / [mode] - Makes you a bot for other players, type just "..commandPrefix.."beginbot to print available modes","129 endbot / [mode] - Ends "..commandPrefix.."beginbot, optional [mode] to disable one mode only","130 stopsit - Disables your ability to sit","131 gosit - Enables your ability to sit","132 spawnpoint - Sets your spawnpoint for whenever you reset to where you are","133 nospawn - Removes your spawnpoint","134 chaterror - Creates a chat error, works best first time","135 bypass [on/off] - Changes certain commands like "..commandPrefix.."fly so they are not detected by most anti-exploits", "136 fixcam - Fixes your camera in case it breaks", "137 gotoobj [obj] - Teleports you to a part in the workspace, make sure you put the name properly!", "138 breakcam - Makes it so your camera can go through parts, fixed with "..commandPrefix.."fixcam", "139 inviscam - Makes it so your camera goes through parts and makes them transparent so your character is always visible, fixed with "..commandPrefix.."fixcam", "140 printobj / [key] - Prints the object's path clicked to developer console, optional [key] for key pressed instead of click", "141 unprintobj - Stops printobj from running", "142 hotkeyfc [goto/unfc] - If freecam is set as a hotkey, chooses whether to use unfreecam or gotofc when disabling through a hotkey", "143 carpet [plr] - Makes you a carpet for a player", "144 uncarpet - Stops carpet", "145 brickcreate [num] / [pos] [pos] [pos] - Creates [num] amount of bricks from accessories, wont work in all games, optional [pos] for position to create bricks", "146 uncopychat - Stops copying chat", "147 forward / [speed] - Makes you automatically move forward default speed is 1", "148 unforward - Stops you moving automatically forward from forward", "149 id [plr] - Makes you chat the user ID of the player", "150 spinhats / [pow] - Makes all your accessories begin to spin around! Credit to xFunnieuss.", "151 unspinhats - Stops spinhats from spinning accessories", "152 headless - Makes you headless, but cannot control your character after, use grespawn to reset", "153 savemap - Saves the current workspace/map", "154 loadmap - Loads map saved by savemap", "155 creatorid - Changes your user ID to the game creator's user ID", "156 gameid - Shows the game's ID", "157 delobj [obj] - Allows you to delete an object in the workspace by name", "158 glide [plr] / [speed] - Makes you glide towards a player, optional [speed] for the speed of gliding", "159 stutter [on/off] - Makes your character begin stuttering as you move", "160 platform - Creates a platform on your client that you can stand on, deletes in 20 seconds", "161 servertime - Gets the server time", "162 ride [plr] - Makes you ride a player's head", "163 unride [plr] - Makes you stop riding a player's head", "164 cmute [plr] - Client mutes a player, useful for muting spammers", "165 uncmute - Unmutes a player that has been cmuted", "166 hat [plr] - Makes you carpet a player, but on their head", "167 unhat - Stops hat from running", "168 chat [msg] - Makes you chat a string, useful for hotkeys"}
  545. CMDS={"print [msg]","warn [msg]","sit","god","view [plr]","unview","gravity [num]","ungravity","goto [plr]","fecheck","lockws","unlockws","noclip","clip","follow [plr] / [num]","unfollow","fling [plr] / [pow]","unfling","trail [plr] / [num]","untrail","annoy [plr]","unannoy","reset","grespawn","respawn","speed // ws [num]","jumppower // jp [num]","hipheight // hh [num]","default","credits","attach [plr]","fly / [speed]","unfly","kill [plr]","bring [plr]","naked","nolimbs","noarms","nolegs","antikick [on/off]","blockremote [remote] / [service]","remotespy [on/off]","bang [plr] / [speed]","unbang","spam [msg]","spamdelay [num]","unspam","info [plr]","age [plr]","invisible","walk [plr]","glitch [plr] / [num]","tp [plr] [plr]","givetool [plr] / [tool]","givealltools [plr]","blockhats","blocktool","orbit [plr]","unorbit","pos","savepos","loadpos","tppos [num] [num] [num]","pmspam [plr] [msg]","unpmspam","wsvis [num]","bringobj [obj] / [num]","cbring [plr] / [num]","uncbring","cfreeze [plr]","uncfreeze / [plr]","unattach","reach [on/off] / [num]","droptool / [tool]","drophats","hidecmdbar","showcmdbar","prefix [key]","removeinvis","removefog","animation [id/gui] / [speed]","btools","esp [plr]","unesp / [plr]","dice","random [min] [max]","closegame","savetool / [tool]","loadtool / [tool]","savealltool","loadalltool","clicktp / [key]","clickdel / [key]","unclicktp","unclickdel","oof","chatlogs","stopadmin","freecam / [speed] // fc / [speed]","unfreecam // unfc","gotofc","cmds","fullcredits","hotkey [key] [cmd]","removehotkey [key]","removeallhotkey","printhotkeys","os [plr]","spin [plr]","unspin","fctp [plr]","explorer","maxzoom [num]","stare [plr]","unstare [plr]","tempgod","void [plr]","freefall [plr]","version","shiftlockon","copychat [plr]","newattach [plr]","newkill [plr]","newbring [plr]","spawn [ws/jp/hh/god] [num]","unspawn","autosavetool [on/off]","beginbot / [mode]","endbot / [mode]","stopsit","gosit","spawnpoint","nospawn","chaterror", "bypass [on/off]", "fixcam", "gotoobj [obj]", "breakcam", "inviscam", "printobj / [key]", "unprintobj", "hotkeyfc [goto/unfc]", "carpet [plr]", "uncarpet", "brickcreate [num] / [pos] [pos] [pos]", "uncopychat", "forward / [speed]", "unforward", "id [plr]", "spinhats / [pow]", "unspinhats", "headless", "savemap", "loadmap", "creatorid", "gameid", "delobj [obj]", "glide [plr] / [speed]", "stutter [on/off]", "platform", "servertime", "ride [plr]", "unride", "cmute [plr]", "uncmute", "hat [plr]", "unhat", "chat [msg]"} -- 168
  546. local CMDS_GUI_V2 = Instance.new("ScreenGui")
  547. local CMDSmain = Instance.new("Frame")
  548. local CMDSframemain = Instance.new("Frame")
  549. local cmdgui_topframe = Instance.new("Frame")
  550. local closecmdsgui = Instance.new("TextButton")
  551. local cmdgui_midframe = Instance.new("Frame")
  552. local cmdsgui_SearchFunction = Instance.new("TextBox")
  553. local cmdsgui_searchDETAILFRAME = Instance.new("Frame")
  554. local cmdsgui_searchDETAILTEXT = Instance.new("TextLabel")
  555. local ListofCMDS = Instance.new("ScrollingFrame")
  556. local cmdTutorial = Instance.new("TextLabel")
  557. local cmdTutorial_2 = Instance.new("TextLabel")
  558. local cmdTutorial_3 = Instance.new("TextLabel")
  559. local CMDS_Shadow = Instance.new("Frame")
  560. local CMDS_Shadow2 = Instance.new("Frame")
  561. CMDS_GUI_V2.Name = "CMDS_GUI_V2"
  562. CMDS_GUI_V2.Parent = gsCoreGui
  563. CMDSmain.Name = "CMDSmain"
  564. CMDSmain.Parent = CMDS_GUI_V2
  565. CMDSmain.BackgroundColor3 = Color3.new(1, 1, 1)
  566. CMDSmain.BackgroundTransparency = 1
  567. CMDSmain.Position = UDim2.new(0, 695, 0, 297)
  568. CMDSmain.Size = UDim2.new(0, 440, 0, 367)
  569. CMDSmain.AnchorPoint = Vector2.new(0.5, 0.5)
  570. CMDSmain.Visible = false
  571. CMDSmain.ClipsDescendants = true
  572. CMDSframemain.Name = "CMDSframemain"
  573. CMDSframemain.Parent = CMDSmain
  574. CMDSframemain.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804)
  575. CMDSframemain.BorderSizePixel = 0
  576. CMDSframemain.Size = UDim2.new(0, 440, 0, 367)
  577. cmdgui_topframe.Name = "cmdgui_topframe"
  578. cmdgui_topframe.Parent = CMDSframemain
  579. cmdgui_topframe.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  580. cmdgui_topframe.BorderSizePixel = 0
  581. cmdgui_topframe.Size = UDim2.new(0, 440, 0, 15)
  582. closecmdsgui.Name = "closecmdsgui"
  583. closecmdsgui.Parent = cmdgui_topframe
  584. closecmdsgui.BackgroundColor3 = Color3.new(1, 1, 1)
  585. closecmdsgui.BackgroundTransparency = 1
  586. closecmdsgui.Position = UDim2.new(0, 410, 0, 0)
  587. closecmdsgui.Size = UDim2.new(0, 30, 0, 15)
  588. closecmdsgui.Font = Enum.Font.SourceSansBold
  589. closecmdsgui.Text = "X"
  590. closecmdsgui.TextColor3 = Color3.new(0.968628, 0.968628, 0.968628)
  591. closecmdsgui.TextSize = 20
  592. cmdgui_midframe.Name = "cmdgui_midframe"
  593. cmdgui_midframe.Parent = CMDSframemain
  594. cmdgui_midframe.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  595. cmdgui_midframe.BorderSizePixel = 0
  596. cmdgui_midframe.Position = UDim2.new(0, 0, 0, 15)
  597. cmdgui_midframe.Size = UDim2.new(0, 440, 0, 45)
  598. cmdsgui_SearchFunction.Name = "cmdsgui_SearchFunction"
  599. cmdsgui_SearchFunction.Parent = cmdgui_midframe
  600. cmdsgui_SearchFunction.BackgroundColor3 = Color3.new(1, 1, 1)
  601. cmdsgui_SearchFunction.BackgroundTransparency = 1
  602. cmdsgui_SearchFunction.BorderSizePixel = 0
  603. cmdsgui_SearchFunction.Position = UDim2.new(0, 120, 0, 10)
  604. cmdsgui_SearchFunction.Size = UDim2.new(0, 200, 0, 25)
  605. cmdsgui_SearchFunction.Font = Enum.Font.SourceSans
  606. cmdsgui_SearchFunction.Text = ""
  607. cmdsgui_SearchFunction.TextColor3 = Color3.new(0.972549, 0.972549, 0.972549)
  608. cmdsgui_SearchFunction.TextScaled = true
  609. cmdsgui_SearchFunction.TextSize = 14
  610. cmdsgui_SearchFunction.TextWrapped = true
  611. cmdsgui_searchDETAILFRAME.Name = "cmdsgui_searchDETAILFRAME"
  612. cmdsgui_searchDETAILFRAME.Parent = cmdsgui_SearchFunction
  613. cmdsgui_searchDETAILFRAME.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  614. cmdsgui_searchDETAILFRAME.BorderSizePixel = 0
  615. cmdsgui_searchDETAILFRAME.Position = UDim2.new(0, 0, 0, 25)
  616. cmdsgui_searchDETAILFRAME.Size = UDim2.new(0, 200, 0, 2)
  617. cmdsgui_searchDETAILTEXT.Name = "cmdsgui_searchDETAILTEXT"
  618. cmdsgui_searchDETAILTEXT.Parent = cmdsgui_SearchFunction
  619. cmdsgui_searchDETAILTEXT.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  620. cmdsgui_searchDETAILTEXT.BackgroundTransparency = 1
  621. cmdsgui_searchDETAILTEXT.Size = UDim2.new(0, 200, 0, 25)
  622. cmdsgui_searchDETAILTEXT.Font = Enum.Font.SourceSansLight
  623. cmdsgui_searchDETAILTEXT.Text = "Search"
  624. cmdsgui_searchDETAILTEXT.TextColor3 = Color3.fromRGB(240, 240, 240)
  625. cmdsgui_searchDETAILTEXT.TextSize = 30
  626. ListofCMDS.Name = "ListofCMDS"
  627. ListofCMDS.Parent = CMDSframemain
  628. ListofCMDS.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804)
  629. ListofCMDS.BorderSizePixel = 0
  630. ListofCMDS.Position = UDim2.new(0, 0, 0, 60)
  631. ListofCMDS.Size = UDim2.new(0, 440, 0, 307)
  632. ListofCMDS.CanvasSize = UDim2.new(5, 0, 8, 0)
  633. ListofCMDS.ScrollingDirection = Enum.ScrollingDirection.XY
  634. cmdTutorial.Name = "cmdTutorial"
  635. cmdTutorial.Parent = ListofCMDS
  636. cmdTutorial.BackgroundColor3 = Color3.new(1, 1, 1)
  637. cmdTutorial.BackgroundTransparency = 1
  638. cmdTutorial.BorderSizePixel = 0
  639. cmdTutorial.Position = UDim2.new(0, 5, 0, 5)
  640. cmdTutorial.Size = UDim2.new(0, 420, 0, 20)
  641. cmdTutorial.Font = Enum.Font.SourceSansBold
  642. cmdTutorial.Text = "\"/\" means OPTIONAL argument after"
  643. cmdTutorial.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  644. cmdTutorial.TextScaled = true
  645. cmdTutorial.TextSize = 14
  646. cmdTutorial.TextWrapped = true
  647. cmdTutorial.TextXAlignment = Enum.TextXAlignment.Left
  648. cmdTutorial_2.Name = "cmdTutorial"
  649. cmdTutorial_2.Parent = ListofCMDS
  650. cmdTutorial_2.BackgroundColor3 = Color3.new(1, 1, 1)
  651. cmdTutorial_2.BackgroundTransparency = 1
  652. cmdTutorial_2.BorderSizePixel = 0
  653. cmdTutorial_2.Position = UDim2.new(0, 5, 0, 25)
  654. cmdTutorial_2.Size = UDim2.new(0, 420, 0, 20)
  655. cmdTutorial_2.Font = Enum.Font.SourceSansBold
  656. cmdTutorial_2.Text = "\"//\" means another way of running command"
  657. cmdTutorial_2.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  658. cmdTutorial_2.TextScaled = true
  659. cmdTutorial_2.TextSize = 14
  660. cmdTutorial_2.TextWrapped = true
  661. cmdTutorial_2.TextXAlignment = Enum.TextXAlignment.Left
  662. cmdTutorial_3.Name = "cmdTutorial"
  663. cmdTutorial_3.Parent = ListofCMDS
  664. cmdTutorial_3.BackgroundColor3 = Color3.new(1, 1, 1)
  665. cmdTutorial_3.BackgroundTransparency = 1
  666. cmdTutorial_3.BorderSizePixel = 0
  667. cmdTutorial_3.Position = UDim2.new(0, 5, 0, 45)
  668. cmdTutorial_3.Size = UDim2.new(0, 420, 0, 20)
  669. cmdTutorial_3.Font = Enum.Font.SourceSansBold
  670. cmdTutorial_3.Text = "Anything inside \"[ ]\" is an argument for the command"
  671. cmdTutorial_3.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  672. cmdTutorial_3.TextScaled = true
  673. cmdTutorial_3.TextSize = 14
  674. cmdTutorial_3.TextWrapped = true
  675. cmdTutorial_3.TextXAlignment = Enum.TextXAlignment.Left
  676. CMDS_Shadow.Name = "CMDS_Shadow"
  677. CMDS_Shadow.Parent = CMDSmain
  678. CMDS_Shadow.BackgroundColor3 = Color3.new(0, 0, 0)
  679. CMDS_Shadow.BackgroundTransparency = 0.60000002384186
  680. CMDS_Shadow.BorderSizePixel = 0
  681. CMDS_Shadow.Position = UDim2.new(0, 2, 0, 2)
  682. CMDS_Shadow.Size = UDim2.new(0, 440, 0, 367)
  683. CMDS_Shadow.ZIndex = -1
  684. CMDS_Shadow2.Name = "CMDS_Shadow2"
  685. CMDS_Shadow2.Parent = CMDSmain
  686. CMDS_Shadow2.BackgroundColor3 = Color3.new(0, 0, 0)
  687. CMDS_Shadow2.BackgroundTransparency = 0.80000001192093
  688. CMDS_Shadow2.BorderSizePixel = 0
  689. CMDS_Shadow2.Position = UDim2.new(0, 5, 0, 5)
  690. CMDS_Shadow2.Size = UDim2.new(0, 440, 0, 367)
  691. CMDS_Shadow2.ZIndex = -1
  692. closecmdsgui.MouseButton1Click:Connect(function()
  693. CMDSmain:TweenSize(UDim2.new(0, 0, 0, 0), "InOut", "Sine", 2)
  694. end)
  695. function CreateCMDlabel(position, text)
  696. local sizenow = 15
  697. local cmdHere = Instance.new("TextLabel")
  698. cmdHere.Name = "cmdHere"
  699. cmdHere.TextWrapped = true
  700. cmdHere.Parent = ListofCMDS
  701. cmdHere.BackgroundColor3 = Color3.new(1, 1, 1)
  702. cmdHere.BackgroundTransparency = 1
  703. cmdHere.BorderSizePixel = 0
  704. cmdHere.Position = position
  705. cmdHere.Size = UDim2.new(0, 1950, 0, sizenow)
  706. cmdHere.Font = Enum.Font.SourceSans
  707. cmdHere.Text = text
  708. cmdHere.TextWrapped = true
  709. cmdHere.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  710. cmdHere.TextScaled = false
  711. cmdHere.TextSize = 20
  712. cmdHere.TextXAlignment = Enum.TextXAlignment.Left
  713. end
  714. for i,_cmds in pairs(searchCmds) do
  715. CreateCMDlabel(UDim2.new(0, 5, 0, 50 + (i * 15)), _cmds)
  716. end
  717. local UserInputService = game:GetService("UserInputService")
  718. local dragging
  719. local dragInput
  720. local dragStart
  721. local startPos
  722. local function updateCMDS(input)
  723. local delta = input.Position - dragStart
  724. local dragTime = 0.055
  725. local SmoothDrag = {}
  726. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  727. local dragSmoothFunction = gsTween:Create(CMDSmain, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  728. dragSmoothFunction:Play()
  729. end
  730. cmdgui_topframe.InputBegan:Connect(function(input)
  731. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  732. dragging = true
  733. dragStart = input.Position
  734. startPos = CMDSmain.Position
  735. input.Changed:Connect(function()
  736. if input.UserInputState == Enum.UserInputState.End then
  737. dragging = false
  738. end
  739. end)
  740. end
  741. end)
  742. cmdgui_topframe.InputChanged:Connect(function(input)
  743. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  744. dragInput = input
  745. end
  746. end)
  747. cmdgui_midframe.InputBegan:Connect(function(input)
  748. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  749. dragging = true
  750. dragStart = input.Position
  751. startPos = CMDSmain.Position
  752. input.Changed:Connect(function()
  753. if input.UserInputState == Enum.UserInputState.End then
  754. dragging = false
  755. end
  756. end)
  757. end
  758. end)
  759. cmdgui_midframe.InputChanged:Connect(function(input)
  760. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  761. dragInput = input
  762. end
  763. end)
  764. UserInputService.InputChanged:Connect(function(input)
  765. if input == dragInput and dragging then
  766. updateCMDS(input)
  767. end
  768. end)
  769. cmdsgui_SearchFunction.Focused:Connect(function()
  770. cmdsgui_SearchFunction.TextTransparency = 0
  771. local searchTween = {}
  772. searchTween.TextColor3 = Color3.new(0.0980392, 0.462745, 0.823529)
  773. searchTween.TextSize = 18
  774. searchTween.Position = UDim2.new(0, -70, 0, -15)
  775. local frameTweenblue = {}
  776. frameTweenblue.BackgroundColor3 = Color3.new(0.0980392, 0.462745, 0.823529)
  777. local searchTween1 = gsTween:Create(cmdsgui_searchDETAILTEXT, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), searchTween)
  778. searchTween1:Play()
  779. local frameTweenblue1 = gsTween:Create(cmdsgui_searchDETAILFRAME, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), frameTweenblue)
  780. frameTweenblue1:Play()
  781. end)
  782. cmdsgui_SearchFunction.FocusLost:Connect(function(enterPressed)
  783. if not enterPressed then
  784. cmdsgui_SearchFunction.TextTransparency = 1
  785. else
  786. cmdsgui_SearchFunction.Text = " "
  787. end
  788. local searchTween = {}
  789. searchTween.TextColor3 = Color3.fromRGB(240, 240, 240)
  790. searchTween.TextSize = 30
  791. searchTween.Position = UDim2.new(0, 0, 0, 0)
  792. local frameTweenblue = {}
  793. frameTweenblue.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  794. local searchTween1 = gsTween:Create(cmdsgui_searchDETAILTEXT, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), searchTween)
  795. searchTween1:Play()
  796. local frameTweenblue1 = gsTween:Create(cmdsgui_searchDETAILFRAME, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), frameTweenblue)
  797. frameTweenblue1:Play()
  798. end)
  799. cmdsgui_SearchFunction.Changed:Connect(function()
  800. local index = 0
  801. if cmdsgui_SearchFunction.Text ~= "" then
  802. for i,v in pairs(ListofCMDS:GetChildren()) do
  803. if v.Name == "cmdHere" then
  804. if not string.find(v.Text, cmdsgui_SearchFunction.Text) then
  805. v.Visible = false
  806. else
  807. v.Visible = true
  808. index = index + 1
  809. v.Position = UDim2.new(0, 5, 0, 50 + (index * 15))
  810. end
  811. end
  812. end
  813. end
  814. end)
  815.  
  816. -- Command Execution
  817. LP.Chatted:Connect(function(chat)
  818. run(chat)
  819. end)
  820.  
  821. function run(msg)
  822. if string.lower(string.sub(msg, 2, 5)) == "chat" then
  823. msg = msg
  824. elseif string.match(msg, "hotkey") and string.match(msg, "chat") then
  825. msg = msg
  826. else
  827. msg = string.lower(msg)
  828. end
  829. local cmdPrefix = string.sub(msg, 1, 1)
  830. if cmdPrefix == commandPrefix then
  831. msg = string.sub(msg, 2)
  832. local args = {}
  833. for arg in string.gmatch(msg,"[^%s]+") do
  834. table.insert(args,arg)
  835. end
  836. local cmdName = args[1]
  837. table.remove(args,1)
  838. local doCmd = Commands[cmdName]
  839.  
  840. if doCmd ~= nil then
  841. doCmd(args)
  842. end
  843. end
  844. end
  845.  
  846. -- Command bar
  847. local CommandBar = Instance.new("ScreenGui")
  848. local CMDBAR = Instance.new("Frame")
  849. local CMDBARText = Instance.new("TextBox")
  850. CommandBar.Name = "CommandBar"
  851. CommandBar.Parent = gsCoreGui
  852. CMDBAR.Name = "CMDBAR"
  853. CMDBAR.Parent = CommandBar
  854. CMDBAR.BackgroundColor3 = Color3.new(0.164706, 0.152941, 0.172549)
  855. CMDBAR.BorderSizePixel = 0
  856. CMDBAR.Position = UDim2.new(0.025, 0, 1, 0)
  857. CMDBAR.Size = UDim2.new(0, 270, 0, 35)
  858. CMDBARText.Name = "CMDBARText"
  859. CMDBARText.Parent = CMDBAR
  860. CMDBARText.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  861. CMDBARText.BorderSizePixel = 0
  862. CMDBARText.Position = UDim2.new(0, 5, 0, 5)
  863. CMDBARText.Size = UDim2.new(0, 260, 0, 25)
  864. CMDBARText.Font = Enum.Font.SourceSansLight
  865. CMDBARText.Text = ""
  866. CMDBARText.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333)
  867. CMDBARText.TextScaled = true
  868. CMDBARText.TextSize = 14
  869. CMDBARText.TextWrapped = true
  870. Mouse.KeyDown:connect(function(Key)
  871. if Key == string.lower(commandPrefix) then
  872. CMDBARText:CaptureFocus()
  873. CMDBAR:TweenPosition(UDim2.new(0.015, 0, 0.95, 0), "Out", "Elastic", 0.5, true)
  874. end
  875. end)
  876. CMDBARText.FocusLost:connect(function(enterPressed)
  877. CMDBAR:TweenPosition(UDim2.new(0.015, 0, 1, 0), "Out", "Quad", 0.5, true)
  878. if enterPressed then
  879. local cmdmsg = CMDBARText.Text
  880. CMDBARText.Text = ""
  881. run(commandPrefix..cmdmsg)
  882. end
  883. end)
  884. local Match = Instance.new("Frame")
  885. Match.Name = "Match"
  886. Match.Parent = CMDBAR
  887. Match.BackgroundColor3 = Color3.new(0.164706, 0.152941, 0.172549)
  888. Match.BorderSizePixel = 0
  889. Match.Position = UDim2.new(0, 0, -4, 0)
  890. Match.Size = UDim2.new(1, 0, 4, 0)
  891. Match.Visible = false
  892. function CreateOption(Text)
  893. local Option1 = Instance.new("TextLabel")
  894. Option1.Name = "Option"
  895. Option1.Parent = Match
  896. Option1.BackgroundColor3 = Color3.new(1, 1, 1)
  897. Option1.BackgroundTransparency = 1
  898. Option1.Position = UDim2.new(-10, 0, 0, 0)
  899. Option1.Size = UDim2.new(1, 0, 0, 20)
  900. Option1.Font = Enum.Font.SourceSans
  901. Option1.Text = Text
  902. Option1.TextColor3 = Color3.new(0.952941, 0.952941, 0.952941)
  903. Option1.TextScaled = true
  904. Option1.TextWrapped = true
  905. end
  906. for i,cmdtext2 in pairs(CMDS) do
  907. CreateOption(cmdtext2)
  908. end
  909. CMDBARText.Changed:Connect(function()
  910. if CMDBARText.Text ~= "" and CMDBARText.Text ~= commandPrefix then
  911. Match.Visible = true
  912. local PositionMatch = 0
  913. for i,cmdtext in pairs(Match:GetChildren()) do
  914. if cmdtext.Name == "Option" then
  915. if string.find(cmdtext.Text, CMDBARText.Text) then
  916. cmdtext.Position = UDim2.new(0, 0, 0, 2 + (PositionMatch * 20))
  917. PositionMatch = PositionMatch + 1
  918. if cmdtext.Position == UDim2.new(0, 0, 0, 142) then
  919. cmdtext.Position = UDim2.new(-10, 0, 0, 0)
  920. PositionMatch = PositionMatch - 1
  921. end
  922. else
  923. cmdtext.Position = UDim2.new(-10, 0, 0, 0)
  924. end
  925. end
  926. end
  927. else
  928. Match.Visible = false
  929. end
  930. end)
  931.  
  932. -- Chat
  933. local ChatLogsv2 = Instance.new("ScreenGui")
  934. local MainChatFrame = Instance.new("Frame")
  935. local Framess = Instance.new("Frame")
  936. local CloseChatGUI = Instance.new("TextButton")
  937. local Frame_222 = Instance.new("Frame")
  938. local PrintChat = Instance.new("TextButton")
  939. local Shadow1 = Instance.new("Frame")
  940. local Shadow2 = Instance.new("Frame")
  941. local ScrollingFrame = Instance.new("ScrollingFrame")
  942. ChatLogsv2.Name = "ChatLogsv2"
  943. ChatLogsv2.Parent = gsCoreGui
  944. MainChatFrame.Name = "MainChatFrame"
  945. MainChatFrame.Parent = ChatLogsv2
  946. MainChatFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  947. MainChatFrame.BackgroundTransparency = 1
  948. MainChatFrame.Position = UDim2.new(0, 760, 0, 261)
  949. MainChatFrame.Size = UDim2.new(0, 525, 0, 337)
  950. MainChatFrame.Visible = false
  951. Framess.Parent = MainChatFrame
  952. Framess.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  953. Framess.BorderSizePixel = 0
  954. Framess.Size = UDim2.new(0, 525, 0, 15)
  955. CloseChatGUI.Name = "CloseChatGUI"
  956. CloseChatGUI.Parent = Framess
  957. CloseChatGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  958. CloseChatGUI.BackgroundTransparency = 1
  959. CloseChatGUI.BorderSizePixel = 0
  960. CloseChatGUI.Position = UDim2.new(0, 495, 0, 0)
  961. CloseChatGUI.Size = UDim2.new(0, 30, 0, 15)
  962. CloseChatGUI.Font = Enum.Font.SourceSansBold
  963. CloseChatGUI.Text = "X"
  964. CloseChatGUI.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  965. CloseChatGUI.TextSize = 20
  966. Frame_222.Parent = MainChatFrame
  967. Frame_222.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  968. Frame_222.BorderSizePixel = 0
  969. Frame_222.Position = UDim2.new(0, 0, 0, 15)
  970. Frame_222.Size = UDim2.new(0, 525, 0, 50)
  971. PrintChat.Name = "PrintChat"
  972. PrintChat.Parent = Frame_222
  973. PrintChat.BackgroundColor3 = Color3.new(0.870588, 0.25098, 0.25098)
  974. PrintChat.BorderSizePixel = 0
  975. PrintChat.Position = UDim2.new(0, 15, 0, 0)
  976. PrintChat.Size = UDim2.new(0, 170, 0, 30)
  977. PrintChat.Font = Enum.Font.SourceSansLight
  978. PrintChat.Text = "Print Chat"
  979. PrintChat.TextColor3 = Color3.new(0.960784, 0.960784, 0.960784)
  980. PrintChat.TextSize = 30
  981. PrintChat.TextWrapped = true
  982. Shadow1.Name = "Shadow1"
  983. Shadow1.Parent = MainChatFrame
  984. Shadow1.BackgroundColor3 = Color3.new(0, 0, 0)
  985. Shadow1.BackgroundTransparency = 0.5
  986. Shadow1.Position = UDim2.new(0, 2, 0, 2)
  987. Shadow1.Size = UDim2.new(0, 525, 0, 337)
  988. Shadow1.ZIndex = -1
  989. Shadow2.Name = "Shadow2"
  990. Shadow2.Parent = MainChatFrame
  991. Shadow2.BackgroundColor3 = Color3.new(0, 0, 0)
  992. Shadow2.BackgroundTransparency = 0.80000001192093
  993. Shadow2.Position = UDim2.new(0, 5, 0, 5)
  994. Shadow2.Size = UDim2.new(0, 525, 0, 337)
  995. Shadow2.ZIndex = -1
  996. ScrollingFrame.Parent = MainChatFrame
  997. ScrollingFrame.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
  998. ScrollingFrame.BorderSizePixel = 0
  999. ScrollingFrame.Position = UDim2.new(0, 0, 0, 65)
  1000. ScrollingFrame.Size = UDim2.new(0, 525, 0, 271)
  1001. ScrollingFrame.CanvasPosition = Vector2.new(0, 403)
  1002. ScrollingFrame.ScrollBarThickness = 8
  1003. function CreateChatText(plr, chat)
  1004. for i,v in pairs(ScrollingFrame:GetDescendants()) do
  1005. v.Position = v.Position - UDim2.new(0, 0, 0, 20)
  1006. if v.Position == UDim2.new(0, 5, 0, 10) then
  1007. v:Destroy()
  1008. end
  1009. end
  1010. local Example = Instance.new("TextLabel")
  1011. Example.Name = "Example"
  1012. Example.Parent = ScrollingFrame
  1013. Example.BackgroundColor3 = Color3.new(1, 1, 1)
  1014. Example.BackgroundTransparency = 1
  1015. Example.Position = UDim2.new(0, 5, 0, 650)
  1016. Example.Size = UDim2.new(0, 500, 0, 20)
  1017. Example.Font = Enum.Font.SourceSans
  1018. Example.Text = "["..plr.Name.."]: "..chat
  1019. Example.TextColor3 = Color3.new(0.960784, 0.960784, 0.960784)
  1020. Example.TextScaled = true
  1021. Example.TextSize = 20
  1022. Example.TextWrapped = true
  1023. Example.TextXAlignment = Enum.TextXAlignment.Left
  1024. end
  1025. CloseChatGUI.MouseButton1Click:Connect(function()
  1026. MainChatFrame:TweenPosition(UDim2.new(0, 550, 0, -550), "InOut", "Sine", 2)
  1027. wait(2.01)
  1028. MainChatFrame.Visible = false
  1029. end)
  1030. printingChat = false
  1031. PrintChat.MouseButton1Click:Connect(function()
  1032. if printingChat == false then
  1033. printingChat = true
  1034. PrintChat.BackgroundColor3 = Color3.fromRGB(60, 200, 60)
  1035. elseif printingChat == true then
  1036. printingChat = false
  1037. PrintChat.BackgroundColor3 = Color3.new(0.870588, 0.25098, 0.25098)
  1038. end
  1039. end)
  1040. local UserInputService = game:GetService("UserInputService")
  1041. local dragging
  1042. local dragInput
  1043. local dragStart
  1044. local startPos
  1045. local function updateChat(input)
  1046. local delta = input.Position - dragStart
  1047. local dragTime = 0.055
  1048. local SmoothDrag = {}
  1049. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  1050. local dragSmoothFunction = gsTween:Create(MainChatFrame, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  1051. dragSmoothFunction:Play()
  1052. end
  1053. Frame_222.InputBegan:Connect(function(input)
  1054. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  1055. dragging = true
  1056. dragStart = input.Position
  1057. startPos = MainChatFrame.Position
  1058. input.Changed:Connect(function()
  1059. if input.UserInputState == Enum.UserInputState.End then
  1060. dragging = false
  1061. end
  1062. end)
  1063. end
  1064. end)
  1065. Frame_222.InputChanged:Connect(function(input)
  1066. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  1067. dragInput = input
  1068. end
  1069. end)
  1070. UserInputService.InputChanged:Connect(function(input)
  1071. if input == dragInput and dragging then
  1072. updateChat(input)
  1073. end
  1074. end)
  1075.  
  1076. function printChat(player, chat)
  1077. print("["..player.Name.."]: "..chat)
  1078. end
  1079. complimentReady = true
  1080. for i,currentPlayersChatting in pairs(game:GetService("Players"):GetPlayers()) do
  1081. currentPlayersChatting.Chatted:connect(function(chat)
  1082. CreateChatText(currentPlayersChatting, chat)
  1083. if printingChat then
  1084. printChat(currentPlayersChatting, chat)
  1085. end
  1086. if copychatACTIVE then
  1087. if currentPlayersChatting == copychatplayer then
  1088. gsReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(chat, "All")
  1089. end
  1090. end
  1091. if modeFling == true then
  1092. if string.lower(string.sub(chat, 1, 7)) == "!fling " then
  1093. if gsWorkspace:PGSIsEnabled() == false then
  1094. FEGodmode()
  1095. end
  1096. if string.lower(string.sub(chat, 8)) == "me" then
  1097. run(commandPrefix.."unfling")
  1098. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1099. run(commandPrefix.."fling "..currentPlayersChatting.Name.." 2000000")
  1100. else
  1101. for i,notAll in pairs(findSinglePlayer(string.lower(string.sub(chat, 8)))) do
  1102. if notAll ~= LP then
  1103. run(commandPrefix.."unfling")
  1104. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1105. run(commandPrefix.."fling "..notAll.Name.." 2000000")
  1106. end
  1107. end
  1108. end
  1109. end
  1110. end
  1111. if modeCompliment == true then
  1112. if string.lower(string.sub(chat, 1, 3)) == "!c " then
  1113. if complimentReady then
  1114. complimentReady = false
  1115. if string.lower(string.sub(chat, 4)) == "me" then
  1116. complimentplr(currentPlayersChatting)
  1117. else
  1118. for i,Others in pairs(findSinglePlayer(string.lower(string.sub(chat, 4)))) do
  1119. if Others == LP then
  1120. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Don't be silly, I can't compliment myself!", "All")
  1121. else
  1122. complimentplr(Others)
  1123. end
  1124. end
  1125. end
  1126. wait(1)
  1127. complimentReady = true
  1128. end
  1129. end
  1130. end
  1131. if modeMove == true then
  1132. if string.lower(string.sub(chat, 1, 9)) == "!bringbot" then
  1133. run(commandPrefix.."unfollow")
  1134. run(commandPrefix.."unwalk")
  1135. run(commandPrefix.."goto "..currentPlayersChatting.Name)
  1136. elseif string.lower(string.sub(chat, 1, 6)) == "!walk " then
  1137. for i,getWalkPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 7)))) do
  1138. if getWalkPlayer == LP then
  1139. run(commandPrefix.."unfollow")
  1140. run(commandPrefix.."walk "..currentPlayersChatting.Name)
  1141. else
  1142. run(commandPrefix.."unfollow")
  1143. run(commandPrefix.."walk "..getWalkPlayer.Name)
  1144. end
  1145. end
  1146. elseif string.lower(string.sub(chat, 1, 8)) == "!follow " then
  1147. for i,getFollowPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 9)))) do
  1148. if getFollowPlayer == LP then
  1149. run(commandPrefix.."unwalk")
  1150. run(commandPrefix.."follow "..currentPlayersChatting.Name)
  1151. else
  1152. run(commandPrefix.."unwalk")
  1153. run(commandPrefix.."follow "..getFollowPlayer.Name)
  1154. end
  1155. end
  1156. end
  1157. end
  1158. if modeInfo == true then
  1159. if infoReady then
  1160. infoReady = false
  1161. if string.lower(string.sub(chat, 1, 5)) == "!age " then
  1162. for i,v in pairs(findSinglePlayer(string.lower(string.sub(chat, 6)))) do
  1163. if v == LP then
  1164. run(commandPrefix.."age "..currentPlayersChatting.Name)
  1165. else
  1166. run(commandPrefix.."age "..v.Name)
  1167. end
  1168. end
  1169. end
  1170. if string.lower(string.sub(chat, 1, 4)) == "!id " then
  1171. for i,a in pairs(findSinglePlayer(string.lower(string.sub(chat, 5)))) do
  1172. if a == LP then
  1173. run(commandPrefix.."id "..currentPlayersChatting.Name)
  1174. else
  1175. run(commandPrefix.."id "..a.Name)
  1176. end
  1177. end
  1178. end
  1179. wait(1)
  1180. infoReady = true
  1181. end
  1182. end
  1183. end)
  1184. end
  1185. game:GetService("Players").PlayerAdded:connect(function(plr)
  1186. plr.Chatted:connect(function(chat)
  1187. CreateChatText(plr, chat)
  1188. if printingChat then
  1189. printChat(plr, chat)
  1190. end
  1191. if modeFling == true then
  1192. if string.lower(string.sub(chat, 1, 7)) == "!fling " then
  1193. if gsWorkspace:PGSIsEnabled() == false then
  1194. FEGodmode()
  1195. end
  1196. if string.lower(string.sub(chat, 8)) == "me" then
  1197. run(commandPrefix.."unfling")
  1198. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1199. run(commandPrefix.."fling "..plr.Name.." 2000000")
  1200. else
  1201. for i,notAll in pairs(findSinglePlayer(string.lower(string.sub(chat, 8)))) do
  1202. if notAll ~= LP then
  1203. run(commandPrefix.."unfling")
  1204. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1205. run(commandPrefix.."fling "..notAll.Name.." 2000000")
  1206. end
  1207. end
  1208. end
  1209. end
  1210. end
  1211. if modeCompliment == true then
  1212. if string.lower(string.sub(chat, 1, 3)) == "!c " then
  1213. if complimentReady == true then
  1214. complimentReady = false
  1215. if string.lower(string.sub(chat, 4)) == "me" then
  1216. complimentplr(plr)
  1217. else
  1218. for i,Others in pairs(findSinglePlayer(string.lower(string.sub(chat, 4)))) do
  1219. if Others == LP then
  1220. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Don't be silly, I can't compliment myself!", "All")
  1221. else
  1222. complimentplr(Others)
  1223. end
  1224. end
  1225. end
  1226. wait(1)
  1227. complimentReady = true
  1228. end
  1229. end
  1230. end
  1231. if modeMove == true then
  1232. if string.lower(string.sub(chat, 1, 9)) == "!bringbot" then
  1233. run(commandPrefix.."unfollow")
  1234. run(commandPrefix.."unwalk")
  1235. run(commandPrefix.."goto "..plr.Name)
  1236. elseif string.lower(string.sub(chat, 1, 6)) == "!walk " then
  1237. for i,getWalkPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 7)))) do
  1238. if getWalkPlayer == LP then
  1239. run(commandPrefix.."unfollow")
  1240. run(commandPrefix.."walk "..plr.Name)
  1241. else
  1242. run(commandPrefix.."unfollow")
  1243. run(commandPrefix.."walk "..getWalkPlayer.Name)
  1244. end
  1245. end
  1246. elseif string.lower(string.sub(chat, 1, 8)) == "!follow " then
  1247. for i,getFollowPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 9)))) do
  1248. if getFollowPlayer == LP then
  1249. run(commandPrefix.."unwalk")
  1250. run(commandPrefix.."follow "..plr.Name)
  1251. else
  1252. run(commandPrefix.."unwalk")
  1253. run(commandPrefix.."follow "..getFollowPlayer.Name)
  1254. end
  1255. end
  1256. end
  1257. end
  1258. if modeInfo == true then
  1259. if infoReady then
  1260. infoReady = false
  1261. if string.lower(string.sub(chat, 1, 5)) == "!age " then
  1262. for i,v in pairs(findSinglePlayer(string.lower(string.sub(chat, 6)))) do
  1263. if v == LP then
  1264. run(commandPrefix.."age "..plr.Name)
  1265. else
  1266. run(commandPrefix.."age "..v.Name)
  1267. end
  1268. end
  1269. end
  1270. if string.lower(string.sub(chat, 1, 4)) == "!id " then
  1271. for i,a in pairs(findSinglePlayer(string.lower(string.sub(chat, 5)))) do
  1272. if a == LP then
  1273. run(commandPrefix.."id "..plr.Name)
  1274. else
  1275. run(commandPrefix.."id "..a.Name)
  1276. end
  1277. end
  1278. end
  1279. wait(1)
  1280. infoReady = true
  1281. end
  1282. end
  1283. end)
  1284. end)
  1285.  
  1286. -- Loops
  1287. noclip = false
  1288. following = false
  1289. trailing = false
  1290. annoying = false
  1291. flingnoclip = false
  1292. staring = false
  1293. stopsitting = false
  1294. stareplr = ""
  1295. CBRINGamount = 3
  1296. spawnWS = CurrentWalkspeed
  1297. spawnJP = CurrentJumppower
  1298. spawnHH = CurrentHipheight
  1299. spawningfegod = false
  1300. looptpbypassfly = false
  1301. if game.GameId == 245662005 or game.GameId == 601130232 then
  1302. bypassMODE = true
  1303. else
  1304. bypassMODE = false
  1305. end
  1306. viewplr = ""
  1307. loopview = false
  1308. cmdForward = false
  1309. forwardSpeed = 1
  1310. loopviewfc = false
  1311. spinTOhead = false
  1312. spinObj = ""
  1313. rideACTIVE = false
  1314. ridePLAYER = ""
  1315.  
  1316. LPcurrenthumanoid = LP.Character.Humanoid
  1317. game:GetService('RunService').Stepped:connect(function()
  1318. if LP.Character.Humanoid ~= nil then
  1319. LPcurrenthumanoid = LP.Character.Humanoid
  1320. end
  1321. if noclip then
  1322. if LP.Character then
  1323. if LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  1324. LP.Character.Head.CanCollide = false
  1325. LP.Character.Torso.CanCollide = false
  1326. LP.Character["Left Leg"].CanCollide = false
  1327. LP.Character["Right Leg"].CanCollide = false
  1328. LP.Character["Left Arm"].CanCollide = false
  1329. LP.Character["Right Arm"].CanCollide = false
  1330. elseif LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  1331. LP.Character.Head.CanCollide = false
  1332. LP.Character.UpperTorso.CanCollide = false
  1333. LP.Character.LowerTorso.CanCollide = false
  1334. LP.Character.HumanoidRootPart.CanCollide = false
  1335. end
  1336. end
  1337. end
  1338. if following then
  1339. LP.Character.HumanoidRootPart.CFrame = gsPlayers[flwplr.Name].Character.HumanoidRootPart.CFrame + gsPlayers[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * flwnum
  1340. end
  1341. if trailing then
  1342. LP.Character.HumanoidRootPart.CFrame = gsPlayers[trlplr.Name].Character.HumanoidRootPart.CFrame + gsPlayers[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * trlnum
  1343. end
  1344. if annoying then
  1345. LP.Character.HumanoidRootPart.CFrame = gsPlayers[annplr.Name].Character.HumanoidRootPart.CFrame
  1346. end
  1347. if walkto then
  1348. LP.Character.Humanoid:MoveTo(walkplr.Character.HumanoidRootPart.Position)
  1349. end
  1350. if cbringing then
  1351. CBRINGplr.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * CBRINGamount
  1352. end
  1353. if cbringingall then
  1354. for i,getbringplrs in pairs(gsPlayers:GetPlayers()) do
  1355. if getbringplrs ~= LP then
  1356. getbringplrs.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * CBRINGamount
  1357. end
  1358. end
  1359. end
  1360. if staring then
  1361. LP.Character.HumanoidRootPart.CFrame = CFrame.new(LP.Character.Torso.Position, gsPlayers[stareplr.Name].Character.Torso.Position)
  1362. end
  1363. if stopsitting then
  1364. LP.Character.Humanoid.Sit = false
  1365. end
  1366. if looptpbypassfly then
  1367. pcall(function()
  1368. LP.Character.Head.Anchored = false
  1369. LP.Character.HumanoidRootPart.CFrame = gsWorkspace.rGETpartNUMBER2.CFrame
  1370. LP.Character.Head.Anchored = true
  1371. end)
  1372. end
  1373. if loopview then
  1374. view(viewplr)
  1375. end
  1376. if cmdForward then
  1377. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * forwardSpeed
  1378. end
  1379. if loopviewfc then
  1380. pcall(function()
  1381. gsWorkspace.CurrentCamera.CameraSubject = gsWorkspace.rGETpartNUMBER2
  1382. end)
  1383. end
  1384. if spinTOhead then
  1385. pcall(function()
  1386. spinObj.Position = LP.Character.Head.Position
  1387. end)
  1388. end
  1389. if rideACTIVE == true then
  1390. LP.character.HumanoidRootPart.CFrame = ridePLAYER.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  1391. end
  1392. end)
  1393. spawningatreset = false
  1394. spawnresetpoint = LP.Character.Head.CFrame
  1395.  
  1396. LPcurrenthumanoid.Died:Connect(function()
  1397. flying = false
  1398. doFREECAM = false
  1399. if savingtoolsloop then
  1400. run(commandPrefix.."savealltool")
  1401. end
  1402. if spawningatreset == true then
  1403. spawnresetpoint = LP.Character.Head.CFrame + Vector3.new(0, 5, 0)
  1404. end
  1405. end)
  1406.  
  1407. LP.CharacterAdded:Connect(function()
  1408. wait(0.2)
  1409. LP.Character.Humanoid.WalkSpeed = spawnWS
  1410. LP.Character.Humanoid.JumpPower = spawnJP
  1411. LP.Character.Humanoid.HipHeight = spawnHH
  1412. if spawningfegod then
  1413. FEGodmode()
  1414. end
  1415. if spawningpos and spawnpos ~= nil then
  1416. LP.Character.HumanoidRootPart.CFrame = spawnpos
  1417. end
  1418. if spawningatreset == true then
  1419. LP.Character.HumanoidRootPart.CFrame = spawnresetpoint
  1420. end
  1421. end)
  1422.  
  1423. -- Commands
  1424. Commands = {}
  1425.  
  1426. Commands.print = function(args)
  1427. local msg = table.concat(args," ")
  1428. print(msg)
  1429. end
  1430.  
  1431. Commands.warn = function(args)
  1432. local msg = table.concat(args," ")
  1433. warn(msg)
  1434. end
  1435.  
  1436. Commands.sit = function(args)
  1437. LP.Character.Humanoid.Sit = true
  1438. end
  1439.  
  1440. Commands.god = function(args)
  1441. FEGodmode()
  1442. Notification("warning", "You have enabled FE Godmode, tools will not work. Use "..commandPrefix.."grespawn to remove.", 7)
  1443. end
  1444.  
  1445. Commands.view = function(args)
  1446. if args[1] then
  1447. for i,v in pairs(findSinglePlayer(args[1])) do
  1448. if bypassMODE == false then
  1449. view(v)
  1450. Notification("info", "Now viewing "..v.Name..". Use "..commandPrefix.."unview to stop viewing.", 3)
  1451. elseif bypassMODE == true then
  1452. viewplr = v
  1453. loopview = true
  1454. end
  1455. end
  1456. end
  1457. end
  1458.  
  1459. Commands.unview = function(args)
  1460. view(LP)
  1461. loopview = false
  1462. end
  1463.  
  1464. Commands.gravity = function(args)
  1465. if args[1] then
  1466. gsWorkspace.Gravity = args[1]
  1467. end
  1468. end
  1469.  
  1470. Commands.ungravity = function(args)
  1471. gsWorkspace.Gravity = CurrentGravity
  1472. end
  1473.  
  1474. Commands.goto = function(args)
  1475. if args[1] then
  1476. if bypassMODE == false then
  1477. for i,v in pairs(findPlayer(args[1])) do
  1478. LP.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  1479. end
  1480. elseif bypassMODE == true then
  1481. for i,v in pairs(findPlayer(args[1])) do
  1482. local TPbypass = {}
  1483. TPbypass.CFrame = v.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0)
  1484. local TPFunction = gsTween:Create(LP.Character.HumanoidRootPart, TweenInfo.new(1.5, Enum.EasingStyle.Sine, Enum.EasingDirection.In), TPbypass)
  1485. TPFunction:Play()
  1486. end
  1487. end
  1488. end
  1489. end
  1490.  
  1491. Commands.fecheck = function(args)
  1492. if gsWorkspace.FilteringEnabled == true then
  1493. Notification("warning", "FE is enabled!", 7)
  1494. else
  1495. Notification("warning", "FE is disabled. Consider using a different script.", 7)
  1496. end
  1497. end
  1498.  
  1499. Commands.lockws = function(args)
  1500. lockWS()
  1501. Notification("info", "Workspace locked.", 4)
  1502. end
  1503.  
  1504. Commands.unlockws = function(args)
  1505. unlockWS()
  1506. Notification("info", "Workspace unlocked.", 4)
  1507. end
  1508.  
  1509. Commands.noclip = function(args)
  1510. noclip = true
  1511. Notification("info", "Noclip enabled.", 4)
  1512. end
  1513.  
  1514. Commands.clip = function(args)
  1515. noclip = false
  1516. Notification("info", "Noclip disabled.", 4)
  1517. end
  1518.  
  1519. Commands.follow = function(args)
  1520. if args[1] then
  1521. for i,v in pairs(findPlayer(args[1])) do
  1522. flwplr = v
  1523. end
  1524. if args[2] then
  1525. flwnum = args[2]
  1526. else
  1527. flwnum = -5
  1528. end
  1529. following = true
  1530. else
  1531. Notification("warning", "No player selected to follow! Use: "..commandPrefix.."follow player", 4)
  1532. end
  1533. end
  1534.  
  1535. Commands.unfollow = function(args)
  1536. following = false
  1537. end
  1538.  
  1539. Commands.fling = function(args)
  1540. if args[1] then
  1541. for i,v in pairs(findSinglePlayer(args[1])) do
  1542. if v ~= LP then
  1543. view(v)
  1544. pcall(function()
  1545. LP.Character.HumanoidRootPart.Fling:Destroy()
  1546. end)
  1547. if not args[2] then
  1548. RocketPropulsion(800000,1000,400000,v,"Fling")
  1549. else
  1550. RocketPropulsion(args[2],1500,400000,v,"Fling")
  1551. end
  1552. if noclip ~= true then
  1553. flingnoclip = true
  1554. noclip = true
  1555. end
  1556. end
  1557. end
  1558. else
  1559. Notification("warning", "No player selected to fling! Use: "..commandPrefix.."fling player", 4)
  1560. end
  1561. end
  1562.  
  1563. Commands.unfling = function(args)
  1564. view(LP)
  1565. pcall(function()
  1566. if LP.Character.HumanoidRootPart.Fling then
  1567. for i,v in pairs(LP.Character:GetDescendants()) do
  1568. if v.Name == "Fling" and v:IsA("RocketPropulsion") then
  1569. v:Destroy()
  1570. end
  1571. end
  1572. end
  1573. end)
  1574. if flingnoclip == true then
  1575. noclip = false
  1576. flingnoclip = false
  1577. end
  1578. end
  1579.  
  1580. Commands.trail = function(args)
  1581. if args[1] then
  1582. for i,v in pairs(findPlayer(args[1])) do
  1583. trlplr = v
  1584. end
  1585. if args[2] then
  1586. trlnum = args[2]
  1587. else
  1588. trlnum = 5
  1589. end
  1590. trailing = true
  1591. else
  1592. Notification("warning", "No player selected to trail! Use: "..commandPrefix.."trail player", 4)
  1593. end
  1594. end
  1595.  
  1596. Commands.untrail = function(args)
  1597. trailing = false
  1598. end
  1599.  
  1600. Commands.annoy = function(args)
  1601. if args[1] then
  1602. for i,v in pairs(findPlayer(args[1])) do
  1603. annplr = v
  1604. end
  1605. annoying = true
  1606. else
  1607. Notification("warning", "No player selected to annoy! Use: "..commandPrefix.."annoy player", 4)
  1608. end
  1609. end
  1610.  
  1611. Commands.unannoy = function(args)
  1612. annoying = false
  1613. end
  1614.  
  1615. Commands.reset = function(args)
  1616. LP.Character:BreakJoints()
  1617. end
  1618.  
  1619. Commands.grespawn = function(args)
  1620. LP.Character.Humanoid.Health = 0
  1621. wait(1)
  1622. LP.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  1623. LP.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  1624. end
  1625.  
  1626. Commands.respawn = function(args)
  1627. local mod = Instance.new('Model', workspace) mod.Name = 'new '..LP.Name
  1628. local hum = Instance.new('Humanoid', mod)
  1629. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  1630. LP.Character = mod
  1631. end
  1632.  
  1633. Commands.speed = function(args)
  1634. if args[1] then
  1635. run(commandPrefix.."ws "..args[1])
  1636. end
  1637. end
  1638.  
  1639. bypassingwalkspeed = false
  1640. Commands.ws = function(args)
  1641. if args[1] then
  1642. if bypassMODE == false then
  1643. LP.Character.Humanoid.WalkSpeed = args[1]
  1644. elseif bypassMODE == true then
  1645. if game.GameId == 245662005 then
  1646. bypassingwalkspeed = true
  1647. bypassWalkspeed = args[1]
  1648. end
  1649. end
  1650. end
  1651. end
  1652.  
  1653. game:GetService("RunService").Heartbeat:Connect(function()
  1654. if bypassingwalkspeed then
  1655. LP.Character.Humanoid.WalkSpeed = bypassWalkspeed
  1656. end
  1657. end)
  1658.  
  1659. Commands.jumppower = function(args)
  1660. if args[1] then
  1661. LP.Character.Humanoid.JumpPower = args[1]
  1662. end
  1663. end
  1664.  
  1665. Commands.jp = function(args)
  1666. if args[1] then
  1667. LP.Character.Humanoid.JumpPower = args[1]
  1668. end
  1669. end
  1670.  
  1671. Commands.hipheight = function(args)
  1672. if args[1] then
  1673. LP.Character.Humanoid.HipHeight = args[1]
  1674. end
  1675. end
  1676.  
  1677. Commands.hh = function(args)
  1678. if args[1] then
  1679. LP.Character.Humanoid.HipHeight = args[1]
  1680. end
  1681. end
  1682.  
  1683. Commands.default = function(args)
  1684. LP.Character.Humanoid.WalkSpeed = CurrentWalkspeed
  1685. LP.Character.Humanoid.HipHeight = CurrentHipheight
  1686. LP.Character.Humanoid.JumpPower = CurrentJumppower
  1687. end
  1688.  
  1689. Commands.credits = function(args)
  1690. Notification("info", "Shattervast was made by illremember#3799 , "..commandPrefix.."fullcredits for all credits.", 8)
  1691. end
  1692.  
  1693. Commands.attach = function(args)
  1694. if hasTools() == false then
  1695. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1696. else
  1697. FEGodmode()
  1698. for i,v in pairs(LP.Backpack:GetChildren())do
  1699. LP.Character.Humanoid:EquipTool(v)
  1700. end
  1701. if args[1] then
  1702. for i,v in pairs(findSinglePlayer(args[1])) do
  1703. if v ~= LP then
  1704. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1705. wait(0.3)
  1706. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1707. end
  1708. end
  1709. end
  1710. end
  1711. end
  1712.  
  1713. Commands.fly = function(args)
  1714. if bypassMODE == false then
  1715. local speedget = 1
  1716. repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('HumanoidRootPart') and LP.Character:FindFirstChild('Humanoid')
  1717. repeat wait() until Mouse
  1718. if args[1] then
  1719. speedfly = args[1]
  1720. else
  1721. speedfly = 1
  1722. end
  1723.  
  1724. local T = LP.Character.HumanoidRootPart
  1725. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  1726. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  1727. local SPEED = speedget
  1728.  
  1729. local function fly()
  1730. flying = true
  1731. local BG = Instance.new('BodyGyro', T)
  1732. local BV = Instance.new('BodyVelocity', T)
  1733. BG.P = 9e4
  1734. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1735. BG.cframe = T.CFrame
  1736. BV.velocity = Vector3.new(0, 0.1, 0)
  1737. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1738. spawn(function()
  1739. repeat wait()
  1740. LP.Character.Humanoid.PlatformStand = true
  1741. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  1742. SPEED = 50
  1743. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  1744. SPEED = 0
  1745. end
  1746. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  1747. 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
  1748. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  1749. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  1750. 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
  1751. else
  1752. BV.velocity = Vector3.new(0, 0.1, 0)
  1753. end
  1754. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  1755. until not flying
  1756. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  1757. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  1758. SPEED = 0
  1759. BG:destroy()
  1760. BV:destroy()
  1761. LP.Character.Humanoid.PlatformStand = false
  1762. end)
  1763. end
  1764. Mouse.KeyDown:connect(function(KEY)
  1765. if KEY:lower() == 'w' then
  1766. CONTROL.F = speedfly
  1767. elseif KEY:lower() == 's' then
  1768. CONTROL.B = -speedfly
  1769. elseif KEY:lower() == 'a' then
  1770. CONTROL.L = -speedfly
  1771. elseif KEY:lower() == 'd' then
  1772. CONTROL.R = speedfly
  1773. end
  1774. end)
  1775. Mouse.KeyUp:connect(function(KEY)
  1776. if KEY:lower() == 'w' then
  1777. CONTROL.F = 0
  1778. elseif KEY:lower() == 's' then
  1779. CONTROL.B = 0
  1780. elseif KEY:lower() == 'a' then
  1781. CONTROL.L = 0
  1782. elseif KEY:lower() == 'd' then
  1783. CONTROL.R = 0
  1784. end
  1785. end)
  1786. fly()
  1787. elseif bypassMODE == true then
  1788. if not args[1] then
  1789. run(commandPrefix.."fc")
  1790. else
  1791. run(commandPrefix.."fc "..args[1])
  1792. end
  1793. LP.Character.Head.Anchored = false
  1794. looptpbypassfly = true
  1795. view(LP)
  1796. end
  1797. end
  1798.  
  1799. Commands.unfly = function(args)
  1800. if bypassMODE == false then
  1801. flying = false
  1802. LP.Character.Humanoid.PlatformStand = false
  1803. else
  1804. looptpbypassfly = false
  1805. run(commandPrefix.."unfreecam")
  1806. local goalTP = LP.Character.HumanoidRootPart.CFrame
  1807. if game.GameId == 245662005 then
  1808. for i = 1, 5 do wait(0.2)
  1809. LP.Character.HumanoidRootPart.CFrame = goalTP
  1810. end
  1811. else
  1812. LP.Character.HumanoidRootPart.CFrame = goalTP
  1813. end
  1814. LP.Character.Head.Anchored = false
  1815. end
  1816. end
  1817.  
  1818. Commands.kill = function(args)
  1819. if args[1] then
  1820. for i,v in pairs(findSinglePlayer(args[1])) do
  1821. if v == LP then
  1822. LP.Character:BreakJoints()
  1823. else
  1824. if hasTools() == false then
  1825. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1826. else
  1827. FEGodmode()
  1828. for i,v in pairs(LP.Backpack:GetChildren())do
  1829. LP.Character.Humanoid:EquipTool(v)
  1830. end
  1831. local NOW = LP.Character.HumanoidRootPart.CFrame
  1832. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1833. wait(0.3)
  1834. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1835. local function tp(player,player2)
  1836. local char1,char2=player.Character,player2.Character
  1837. if char1 and char2 then
  1838. char1:MoveTo(char2.Head.Position)
  1839. end
  1840. end
  1841. wait(0.5)
  1842. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(100000,0,100000))
  1843. wait(0.5)
  1844. tp(LP,game:GetService("Players")[v.Name])
  1845. wait(0.7)
  1846. LP.Character.HumanoidRootPart.CFrame = NOW
  1847. view(LP)
  1848. end
  1849. end
  1850. end
  1851. end
  1852. end
  1853. Commands.bring = function(args)
  1854. if hasTools() == false then
  1855. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1856. else
  1857. FEGodmode()
  1858. for i,v in pairs(LP.Backpack:GetChildren())do
  1859. LP.Character.Humanoid:EquipTool(v)
  1860. end
  1861. if args[1] then
  1862. for i,v in pairs(findSinglePlayer(args[1])) do
  1863. if v ~= LP then
  1864. local NOW = LP.Character.HumanoidRootPart.CFrame
  1865. local function tp(player,player2)
  1866. local char1,char2=player.Character,player2.Character
  1867. if char1 and char2 then
  1868. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  1869. end
  1870. end
  1871. local function getout(player,player2)
  1872. local char1,char2=player.Character,player2.Character
  1873. if char1 and char2 then
  1874. char1:MoveTo(char2.Head.Position)
  1875. end
  1876. end
  1877. tp(game:GetService("Players")[v.Name], LP)
  1878. wait(0.2)
  1879. tp(game:GetService("Players")[v.Name], LP)
  1880. wait(0.5)
  1881. LP.Character.HumanoidRootPart.CFrame = NOW
  1882. wait(0.5)
  1883. getout(LP, game:GetService("Players")[v.Name])
  1884. wait(0.3)
  1885. LP.Character.HumanoidRootPart.CFrame = NOW
  1886. end
  1887. end
  1888. end
  1889. end
  1890. end
  1891.  
  1892. Commands.naked = function(args)
  1893. for i,v in pairs(LP.Character:GetDescendants()) do
  1894. if v:IsA("Clothing") then
  1895. v:Destroy()
  1896. end
  1897. end
  1898. end
  1899.  
  1900. Commands.nolimbs = function(args)
  1901. LP.Character["Left Arm"]:Destroy()
  1902. LP.Character["Right Arm"]:Destroy()
  1903. LP.Character["Left Leg"]:Destroy()
  1904. LP.Character["Right Leg"]:Destroy()
  1905. end
  1906.  
  1907. Commands.noarms = function(args)
  1908. LP.Character["Left Arm"]:Destroy()
  1909. LP.Character["Right Arm"]:Destroy()
  1910. end
  1911.  
  1912. Commands.nolegs = function(args)
  1913. LP.Character["Left Leg"]:Destroy()
  1914. LP.Character["Right Leg"]:Destroy()
  1915. end
  1916.  
  1917. Commands.headless = function(args)
  1918. local l = LP.Character.Humanoid:Clone()
  1919. LP.Character.Humanoid:Destroy()
  1920. wait(0.2)
  1921. LP.Character.Head.CanCollide = false
  1922. for i,v in pairs(LP.Character:GetDescendants()) do
  1923. if string.sub(v.Name, 1, 4) == "Neck" then
  1924. v:Destroy()
  1925. end
  1926. end
  1927. wait(0.2)
  1928. l.Name = "Humanoid"
  1929. l.Parent = LP.Character
  1930. wait(0.1)
  1931. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character
  1932. LP.Character.Animate:Destroy()
  1933. end
  1934.  
  1935. antiremotes = false
  1936. Commands.antikick = function(args)
  1937. if args[1] then
  1938. if args[1] == "on" then
  1939. antiremotes = true
  1940. wait(0.2)
  1941. for i,v in pairs(LP.Character:GetChildren()) do
  1942. if string.find(string.lower(v.Name), "exploit") and v:IsA("LocalScript") then
  1943. v.Disabled = true
  1944. end
  1945. end
  1946. Notification("warning", "This command disables all remotes incase they are kick remotes, may break game.", 8)
  1947. Notification("info", "Does not prevent serverside kicks, use "..commandPrefix.."antikick off to turn off.", 8)
  1948. elseif args[1] == "off" then
  1949. antiremotes = false
  1950. Notification("warning", "Remote anti-kick turned off.", 8)
  1951. end
  1952. end
  1953. end
  1954.  
  1955. blockedremotes = {}
  1956. Commands.blockremote = function(args)
  1957. local getService = ""
  1958. if args[1] then
  1959. local remoteName = string.lower(tostring(args[1]))
  1960. if args[2] then
  1961. local serviceRemote = string.lower(tostring(args[2]))
  1962. if serviceRemote == "workspace" then
  1963. getService = "Workspace"
  1964. elseif serviceRemote == "replicatedstorage" then
  1965. getService = "ReplicatedStorage"
  1966. elseif serviceRemote == "players" then
  1967. getService = "Players"
  1968. elseif serviceRemote == "lighting" then
  1969. getService = "Lighting"
  1970. elseif serviceRemote == "startergui" then
  1971. getService = "StarterGui"
  1972. elseif serviceRemote == "starterpack" then
  1973. getService = "StarterPack"
  1974. elseif serviceRemote == "starterplayer" then
  1975. getService = "StarterPlayer"
  1976. else
  1977. getService = "ReplicatedStorage"
  1978. end
  1979. else
  1980. getService = "ReplicatedStorage"
  1981. end
  1982. for i,getRemote in pairs(game:GetService(getService):GetDescendants()) do
  1983. if string.lower(getRemote.Name) == remoteName then
  1984. table.insert(blockedremotes, getRemote.Name)
  1985. end
  1986. end
  1987. end
  1988. Notification("warning", "If this command does not work, make sure you type remote name/service fully correct.", 8)
  1989. end
  1990.  
  1991. spyingremotes = false
  1992. Commands.remotespy = function(args)
  1993. if args[1] then
  1994. if args[1] == "on" then
  1995. spyingremotes = true
  1996. Notification("info", "Remotespy turned on.", 4)
  1997. elseif args[1] == "off" then
  1998. spyingremotes = false
  1999. Notification("info", "Remotespy turned off.", 4)
  2000. end
  2001. end
  2002. end
  2003.  
  2004. Commands.bang = function(args)
  2005. if args[1] then
  2006. for i,v in pairs(findSinglePlayer(args[1])) do
  2007. if v ~= nil then
  2008. following = true
  2009. flwplr = v
  2010. flwnum = -1
  2011. local bangAnimation = Instance.new("Animation")
  2012. bangAnimation.AnimationId = "rbxassetid://148840371"
  2013. bangTrack = LP.Character.Humanoid:LoadAnimation(bangAnimation)
  2014. if args[2] then
  2015. bangTrack:Play(.1, 1, args[2])
  2016. else
  2017. bangTrack:Play(.1, 1, 1)
  2018. end
  2019. end
  2020. end
  2021. else
  2022. Notification("warning", "No player selected to follow! Use: "..commandPrefix.."follow player", 4)
  2023. end
  2024. end
  2025.  
  2026. Commands.unbang = function(args)
  2027. following = false
  2028. bangTrack:Stop()
  2029. end
  2030.  
  2031. spamdelay = 1
  2032. spamtext = "Spam"
  2033. spamming = false
  2034. Commands.spam = function(args)
  2035. if args[1] then
  2036. spamtext = args[1]
  2037. spamming = true
  2038. end
  2039. end
  2040. Commands.spamdelay = function(args)
  2041. if args[1] then
  2042. spamdelay = args[1]
  2043. end
  2044. end
  2045. spawn(function()
  2046. while wait(spamdelay) do
  2047. if spamming then
  2048. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
  2049. end
  2050. end
  2051. end)
  2052.  
  2053. Commands.unspam = function(args)
  2054. spamming = false
  2055. end
  2056.  
  2057. Commands.info = function(args)
  2058. if args[1] then
  2059. for i,v in pairs(findSinglePlayer(args[1])) do
  2060. createINFO(v)
  2061. end
  2062. end
  2063. end
  2064.  
  2065. Commands.age = function(args)
  2066. if args[1] then
  2067. for i,v in pairs(findPlayer(args[1])) do
  2068. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." Account Age: "..v.AccountAge.." days!", "All")
  2069. end
  2070. end
  2071. end
  2072.  
  2073. Commands.invisible = function(args)
  2074. local Character = LP.Character
  2075. if LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  2076. local Clone = Character.HumanoidRootPart:Clone()
  2077. Character.HumanoidRootPart:Destroy()
  2078. Clone.Parent = Character
  2079. else
  2080. local Clone = Character.LowerTorso.Root:Clone()
  2081. Character.LowerTorso.Root:Destroy()
  2082. Clone.Parent = Character.LowerTorso
  2083. end
  2084. end
  2085.  
  2086. walkto = false
  2087. walkplr = ""
  2088. Commands.walk = function(args)
  2089. if args[1] then
  2090. for i,v in pairs(findSinglePlayer(args[1])) do
  2091. walkplr = v
  2092. walkto = true
  2093. noclip = true
  2094. end
  2095. end
  2096. end
  2097.  
  2098. Commands.unwalk = function(args)
  2099. walkto = false
  2100. noclip = false
  2101. LP.Character.Humanoid:MoveTo(LP.Character.HumanoidRootPart.Position)
  2102. end
  2103.  
  2104. Commands.glitch = function(args)
  2105. if hasTools() == false then
  2106. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  2107. else
  2108. FEGodmode()
  2109. for i,v in pairs(LP.Backpack:GetChildren())do
  2110. LP.Character.Humanoid:EquipTool(v)
  2111. end
  2112. if args[1] then
  2113. for i,v in pairs(findSinglePlayer(args[1])) do
  2114. local function tp(player,player2)
  2115. local char1,char2=player.Character,player2.Character
  2116. if char1 and char2 then
  2117. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  2118. end
  2119. end
  2120. tp(game:GetService("Players")[v.Name], LP)
  2121. wait(0.2)
  2122. tp(game:GetService("Players")[v.Name], LP)
  2123. wait(0.5)
  2124. local b = Instance.new("BodyForce")
  2125. b.Parent = LP.Character.HumanoidRootPart
  2126. b.Name = "Glitch"
  2127. if args[2] then
  2128. b.Force = Vector3.new(args[2],5000,0)
  2129. else
  2130. b.Force = Vector3.new(100000000,5000,0)
  2131. end
  2132. wait(6)
  2133. b:Destroy()
  2134. end
  2135. end
  2136. end
  2137. end
  2138.  
  2139. Commands.tp = function(args)
  2140. if args[1] then
  2141. for i,v in pairs(findSinglePlayer(args[1])) do
  2142. if v == LP then
  2143. if args[2] then
  2144. for i,a in pairs(findSinglePlayer(args[2])) do
  2145. v.Character.HumanoidRootPart.CFrame = a.Character.HumanoidRootPart.CFrame
  2146. end
  2147. end
  2148. else
  2149. if hasTools() == false then
  2150. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  2151. else
  2152. FEGodmode()
  2153. for i,v in pairs(LP.Backpack:GetChildren())do
  2154. LP.Character.Humanoid:EquipTool(v)
  2155. end
  2156. if args[1] then
  2157. for i,first in pairs(findSinglePlayer(args[1])) do
  2158. if args[2] then
  2159. for i,second in pairs(findSinglePlayer(args[2])) do
  2160. local function tp(player,player2)
  2161. local char1,char2=player.Character,player2.Character
  2162. if char1 and char2 then
  2163. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  2164. end
  2165. end
  2166. local function getout(player,player2)
  2167. local char1,char2=player.Character,player2.Character
  2168. if char1 and char2 then
  2169. char1:MoveTo(char2.Head.Position)
  2170. end
  2171. end
  2172. tp(LP, first)
  2173. wait(0.2)
  2174. tp(LP, first)
  2175. wait(0.5)
  2176. tp(LP, second)
  2177. wait(0.2)
  2178. tp(LP, second)
  2179. wait(0.2)
  2180. getout(LP, first)
  2181. end
  2182. end
  2183. end
  2184. end
  2185. end
  2186. end
  2187. end
  2188. end
  2189. end
  2190.  
  2191. Commands.givetool = function(args)
  2192. if args[1] then
  2193. if args[2] then
  2194. local selectedTool = ""
  2195. for i,allTools in pairs(LP.Character:GetDescendants()) do
  2196. if allTools:IsA("Tool") and string.lower(allTools.Name) == string.lower(args[2]) then
  2197. selectedTool = allTools
  2198. else
  2199. for i,otherTools in pairs(LP.Backpack:GetDescendants()) do
  2200. if otherTools:IsA("Tool") and string.lower(otherTools.Name) == string.lower(args[2]) then
  2201. selectedTool = otherTools
  2202. end
  2203. end
  2204. end
  2205. end
  2206. for i,v in pairs(findSinglePlayer(args[1])) do
  2207. if selectedTool ~= "" then
  2208. selectedTool.Parent = v.Character
  2209. end
  2210. end
  2211. else
  2212. for i,plr in pairs(findSinglePlayer(args[1])) do
  2213. for i,tool in pairs(LP.Character:GetDescendants()) do
  2214. if tool:IsA("Tool") then
  2215. tool.Parent = plr.Character
  2216. end
  2217. end
  2218. end
  2219. end
  2220. end
  2221. end
  2222.  
  2223. Commands.givealltools = function(args)
  2224. LP.Character.Humanoid:UnequipTools()
  2225. for i,plr in pairs(findSinglePlayer(args[1])) do
  2226. for i,v in pairs(LP.Character:GetDescendants()) do
  2227. if v:IsA("Tool") then
  2228. v.Parent = plr.Character
  2229. end
  2230. end
  2231. for i,a in pairs(LP.Backpack:GetDescendants()) do
  2232. if a:IsA("Tool") then
  2233. a.Parent = plr.Character
  2234. end
  2235. end
  2236. end
  2237. end
  2238.  
  2239. Commands.blockhats = function(args)
  2240. for i,v in pairs(LP.Character:GetDescendants()) do
  2241. if v:IsA("Accessory") or v:IsA("Hat") then
  2242. for i,mesh in pairs(v:GetDescendants()) do
  2243. if mesh.Name == "Mesh" then
  2244. mesh:Destroy()
  2245. end
  2246. end
  2247. end
  2248. end
  2249. end
  2250.  
  2251. Commands.blocktool = function(args)
  2252. for i,v in pairs(LP.Character:GetDescendants()) do
  2253. if v:IsA("Tool") then
  2254. for i,mesh in pairs(v:GetDescendants()) do
  2255. if mesh.Name == "Mesh" then
  2256. mesh:Destroy()
  2257. end
  2258. end
  2259. end
  2260. end
  2261. end
  2262.  
  2263. Commands.orbit = function(args)
  2264. if args[1] then
  2265. for i,v in pairs(findSinglePlayer(args[1])) do
  2266. view(v)
  2267. RocketPropulsion(5000,100,5000,v,"OrbitMove")
  2268. end
  2269. else
  2270. Notification("warning", "No player selected to orbit! Use: "..commandPrefix.."orbit player", 4)
  2271. end
  2272. end
  2273.  
  2274. Commands.unorbit = function(args)
  2275. for i,v in pairs(LP.Character:GetDescendants()) do
  2276. if v.Name == "OrbitMove" then
  2277. v:Destroy()
  2278. end
  2279. end
  2280. view(LP)
  2281. end
  2282.  
  2283. Commands.pos = function(args)
  2284. Notification("info", "Your current position is ".. tostring(LP.Character.HumanoidRootPart.Position), 9)
  2285. end
  2286.  
  2287. SavedPosition = ""
  2288. Commands.savepos = function(args)
  2289. SavedPosition = LP.Character.HumanoidRootPart.CFrame
  2290. end
  2291. Commands.loadpos = function(args)
  2292. if SavedPosition ~= "" then
  2293. LP.Character.HumanoidRootPart.CFrame = SavedPosition
  2294. end
  2295. end
  2296.  
  2297. Commands.tppos = function(args)
  2298. if args[1] and args[2] and args[3] then
  2299. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(args[1], args[2], args[3]))
  2300. end
  2301. end
  2302.  
  2303. Commands.pmspam = function(args)
  2304. if args[1] then
  2305. local gotPlayer = ""
  2306. for i,v in pairs(findPlayer(args[1])) do
  2307. gotPlayer = v
  2308. end
  2309. table.remove(args, 1)
  2310. local pmSpamMsg = table.concat(args," ")
  2311. spamtext = "/w "..gotPlayer.Name.." "..pmSpamMsg
  2312. spamming = true
  2313. end
  2314. end
  2315.  
  2316. Commands.unpmspam = function(args)
  2317. spamming = false
  2318. end
  2319.  
  2320. Commands.wsvis = function(args)
  2321. if args[1] then
  2322. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2323. if v:IsA("Part") or v:IsA("Decal") then
  2324. if tonumber(args[1]) > 1 then
  2325. v.Transparency = 0.5
  2326. else
  2327. v.Transparency = args[1]
  2328. end
  2329. end
  2330. end
  2331. end
  2332. clientSided()
  2333. end
  2334.  
  2335. Commands.bringobj = function(args)
  2336. if args[1] then
  2337. local Object = ""
  2338. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2339. if string.lower(v.Name) == string.lower(args[1]) then
  2340. Object = v
  2341. end
  2342. end
  2343. if Object == "" then
  2344. Notification("warning", "Object was not found in the workspace.", 6)
  2345. end
  2346. if args[2] then
  2347. Object.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * args[2]
  2348. else
  2349. Object.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * 3
  2350. end
  2351. clientSided()
  2352. end
  2353. end
  2354.  
  2355. CBRINGplr = ""
  2356. cbringing = false
  2357. cbringingall = false
  2358. Commands.cbring = function(args)
  2359. if args[1] then
  2360. if string.lower(tostring(args[1])) == "all" or string.lower(tostring(args[1])) == "others" then
  2361. cbringingall = true
  2362. else
  2363. for i,v in pairs(findPlayer(args[1])) do
  2364. CBRINGplr = v
  2365. cbringing = true
  2366. end
  2367. end
  2368. if args[2] then
  2369. CBRINGamount = args[2]
  2370. else
  2371. CBRINGamount = 3
  2372. end
  2373. clientSided()
  2374. end
  2375. end
  2376.  
  2377. Commands.uncbring = function(args)
  2378. cbringing = false
  2379. cbringingall = false
  2380. end
  2381.  
  2382. Commands.cfreeze = function(args)
  2383. if args[1] then
  2384. for i,v in pairs(findPlayer(args[1])) do
  2385. v.Character.HumanoidRootPart.Anchored = true
  2386. end
  2387. clientSided()
  2388. end
  2389. end
  2390.  
  2391. Commands.uncfreeze = function(args)
  2392. if args[1] then
  2393. for i,v in pairs(findPlayer(args[1])) do
  2394. v.Character.HumanoidRootPart.Anchored = false
  2395. end
  2396. else
  2397. for i,all in pairs(gsPlayers:GetPlayers()) do
  2398. all.Character.HumanoidRootPart.Anchored = false
  2399. end
  2400. end
  2401. end
  2402.  
  2403. Commands.unattach = function(args)
  2404. local function getout(player,player2)
  2405. local char1,char2=player.Character,player2.Character
  2406. if char1 and char2 then
  2407. char1:MoveTo(char2.Head.Position)
  2408. end
  2409. end
  2410. getout(LP, LP)
  2411. end
  2412.  
  2413. currentToolSize = ""
  2414. Commands.reach = function(args)
  2415. if args[1] then
  2416. for i,v in pairs(LP.Character:GetDescendants()) do
  2417. if v:IsA("Tool") then
  2418. if string.lower(tostring(args[1])) == "off" then
  2419. v.Handle.Size = currentToolSize
  2420. v.Handle.SelectionBoxCreated:Destroy()
  2421. LP.Character.Humanoid:UnequipTools()
  2422. elseif string.lower(tostring(args[1])) == "on" then
  2423. if args[2] then
  2424. currentToolSize = v.Handle.Size
  2425. local a = Instance.new("SelectionBox",v.Handle)
  2426. a.Name = "SelectionBoxCreated"
  2427. a.Adornee = v.Handle
  2428. v.Handle.Size = Vector3.new(0.5,0.5,args[2])
  2429. v.GripPos = Vector3.new(0,0,0)
  2430. LP.Character.Humanoid:UnequipTools()
  2431. else
  2432. currentToolSize = v.Handle.Size
  2433. local a = Instance.new("SelectionBox",v.Handle)
  2434. a.Name = "SelectionBoxCreated"
  2435. a.Adornee = v.Handle
  2436. v.Handle.Size = Vector3.new(0.5,0.5,60)
  2437. v.GripPos = Vector3.new(0,0,0)
  2438. LP.Character.Humanoid:UnequipTools()
  2439. end
  2440. end
  2441. end
  2442. end
  2443. end
  2444. end
  2445.  
  2446. Commands.droptool = function(args)
  2447. for i,v in pairs(LP.Character:GetDescendants()) do
  2448. if v:IsA("Tool") then
  2449. v.Parent = gsWorkspace
  2450. end
  2451. end
  2452. for i,a in pairs(LP.Backpack:GetDescendants()) do
  2453. if a:IsA("Tool") then
  2454. a.Parent = gsWorkspace
  2455. end
  2456. end
  2457. end
  2458.  
  2459. Commands.drophats = function(args)
  2460. for i,v in pairs(LP.Character:GetDescendants()) do
  2461. if v:IsA("Accessory") or v:IsA("Hat") then
  2462. v.Parent = gsWorkspace
  2463. end
  2464. end
  2465. end
  2466.  
  2467. Commands.hidecmdbar = function(args)
  2468. CMDBAR.Visible = false
  2469. end
  2470.  
  2471. Commands.showcmdbar = function(args)
  2472. CMDBAR.Visible = true
  2473. end
  2474.  
  2475. Commands.prefix = function(args)
  2476. if args[1] then
  2477. commandPrefix = string.sub(tostring(args[1]), 1, 1)
  2478. fullUpdate()
  2479. end
  2480. end
  2481.  
  2482. Commands.removeinvis = function(args)
  2483. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2484. if v:IsA("Part") and v.Name ~= "HumanoidRootPart" then
  2485. if v.Transparency == 1 then
  2486. v:Destroy()
  2487. end
  2488. end
  2489. end
  2490. clientSided()
  2491. end
  2492.  
  2493. Commands.removefog = function(args)
  2494. gsLighting.FogStart = 0
  2495. gsLighting.FogEnd = 9999999999999
  2496. clientSided()
  2497. end
  2498.  
  2499. Commands.animation = function(args)
  2500. if args[1] then
  2501. if string.lower(tostring(args[1])) == "gui" then
  2502. loadstring(game:HttpGet(("https://pastebin.com/raw/mdbTSP4d"),true))()
  2503. else
  2504. local Anim = Instance.new("Animation")
  2505. Anim.AnimationId = "rbxassetid://".. tostring(args[1])
  2506. local track = LP.Character.Humanoid:LoadAnimation(Anim)
  2507. if args[2] then
  2508. track:Play(.1, 1, args[2])
  2509. else
  2510. track:Play(.1, 1, 1)
  2511. end
  2512. end
  2513. end
  2514. end
  2515.  
  2516. Commands.btools = function(args)
  2517. local Clone_T = Instance.new("HopperBin",LP.Backpack)
  2518. Clone_T.BinType = "Clone"
  2519. local Destruct = Instance.new("HopperBin",LP.Backpack)
  2520. Destruct.BinType = "Hammer"
  2521. local Hold_T = Instance.new("HopperBin",LP.Backpack)
  2522. Hold_T.BinType = "Grab"
  2523. clientSided()
  2524. end
  2525.  
  2526. Commands.esp = function(args)
  2527. if args[1] then
  2528. for i,v in pairs(findPlayer(args[1])) do
  2529. local espPlayer = v
  2530. for i,createESP in pairs(espPlayer.Character:GetDescendants()) do
  2531. if createESP:IsA("Part") or createESP:IsA("MeshPart") then
  2532. if createESP.Name ~= "HumanoidRootPart" and createESP.Name ~= "Handle" then
  2533. local current = true
  2534. local espBOX = Instance.new("BoxHandleAdornment")
  2535. espBOX.Parent = gsCoreGui
  2536. espBOX.Name = "rGET"..espPlayer.Name
  2537. espBOX.Adornee = createESP
  2538. espBOX.AlwaysOnTop = true
  2539. espBOX.ZIndex = 0
  2540. espBOX.Size = createESP.Size
  2541. espBOX.Transparency = 0.3
  2542. local AboveHead = Instance.new("BillboardGui")
  2543. AboveHead.Parent = gsCoreGui
  2544. AboveHead.Adornee = espPlayer.Character.Head
  2545. AboveHead.Name = "rGET"..espPlayer.Name
  2546. AboveHead.Size = UDim2.new(0, 100, 0, 100)
  2547. AboveHead.StudsOffset = Vector3.new(0, 1, 0)
  2548. AboveHead.AlwaysOnTop = true
  2549. local Info = Instance.new("TextLabel")
  2550. Info.Parent = AboveHead
  2551. Info.BackgroundTransparency = 1
  2552. Info.Position = UDim2.new(0, 0, 0, 0)
  2553. Info.Size = UDim2.new(1, 0, 0, 40)
  2554. Info.TextColor3 = Color3.fromRGB(200,200,200)
  2555. Info.TextStrokeTransparency = 0.5
  2556. Info.TextSize = 15
  2557. if espPlayer.TeamColor == LP.TeamColor then
  2558. espBOX.Color = BrickColor.new("Lime green")
  2559. Info.TextStrokeColor3 = Color3.fromRGB(10,100,10)
  2560. else
  2561. espBOX.Color = BrickColor.new("Really red")
  2562. Info.TextStrokeColor3 = Color3.fromRGB(100,10,10)
  2563. end
  2564. game:GetService('RunService').Stepped:connect(function()
  2565. if current and LP.Character.Humanoid and espPlayer.Character.HumanoidRootPart then
  2566. Info.Text = espPlayer.Name.." (".. math.floor((LP.Character.HumanoidRootPart.Position - espPlayer.Character.HumanoidRootPart.Position).magnitude)..")"
  2567. end
  2568. end)
  2569. espPlayer.Character.Humanoid.Died:Connect(function()
  2570. current = false
  2571. espBOX:Destroy()
  2572. AboveHead:Destroy()
  2573. end)
  2574. gsPlayers.PlayerRemoving:Connect(function(plr)
  2575. if plr == espPlayer then
  2576. current = false
  2577. espBOX:Destroy()
  2578. AboveHead:Destroy()
  2579. end
  2580. end)
  2581. end
  2582. end
  2583. end
  2584. end
  2585. clientSided()
  2586. end
  2587. end
  2588.  
  2589. Commands.unesp = function(args)
  2590. if not args[1] then
  2591. for i,v in pairs(gsCoreGui:GetDescendants()) do
  2592. if string.sub(v.Name, 1, 4) == "rGET" then
  2593. v:Destroy()
  2594. end
  2595. end
  2596. else
  2597. for i,v in pairs(gsCoreGui:GetDescendants()) do
  2598. if string.sub(v.Name, 1, 4) == "rGET" then
  2599. for i,a in pairs(findPlayer(args[1])) do
  2600. if string.sub(v.Name, 5) == a.Name then
  2601. v:Destroy()
  2602. end
  2603. end
  2604. end
  2605. end
  2606. end
  2607. end
  2608.  
  2609. Commands.dice = function(args)
  2610. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("You rolled a dice for ".. tostring(math.random(1, 6)), "All")
  2611. end
  2612.  
  2613. Commands.random = function(args)
  2614. if args[1] and args[2] then
  2615. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Picking random number between "..args[1].." and "..args[2].."... The number is ".. tostring(math.random(args[1], args[2])), "All")
  2616. end
  2617. end
  2618.  
  2619. Commands.closegame = function(args)
  2620. game:Shutdown()
  2621. end
  2622.  
  2623. Commands.savetool = function(args)
  2624. if args[1] then
  2625. for i,a in pairs(LP.Character:GetDescendants()) do
  2626. if a:IsA("Tool") and string.lower(a.Name) == string.lower(tostring(args[1])) then
  2627. a.Parent = LP
  2628. local oldName = a.Name
  2629. a.Name = "saved "..oldName
  2630. else
  2631. for i,n in pairs(LP.Backpack:GetDescendants()) do
  2632. if n:IsA("Tool") and string.lower(n.Name) == string.lower(tostring(args[1])) then
  2633. n.Parent = LP
  2634. local sOldName = n.Name
  2635. n.Name = "saved "..sOldName
  2636. end
  2637. end
  2638. end
  2639. end
  2640. else
  2641. for i,v in pairs(LP.Character:GetDescendants()) do
  2642. if v:IsA("Tool") then
  2643. v.Parent = LP
  2644. local oldName = v.Name
  2645. v.Name = "saved "..oldName
  2646. end
  2647. end
  2648. end
  2649. end
  2650.  
  2651. Commands.loadtool = function(args)
  2652. if args[1] then
  2653. for i,a in pairs(LP:GetChildren()) do
  2654. if a:IsA("Tool") and string.sub(a.Name, 1, 5) == "saved" and string.lower(string.sub(a.Name, 7)) == string.lower(tostring(args[1])) then
  2655. a.Parent = LP.Backpack
  2656. local currentName = a.Name
  2657. a.Name = string.sub(currentName, 7)
  2658. end
  2659. end
  2660. else
  2661. for i,v in pairs(LP:GetChildren()) do
  2662. if string.sub(v.Name, 1, 5) == "saved" then
  2663. v.Parent = LP.Backpack
  2664. local currentName = v.Name
  2665. v.Name = string.sub(currentName, 7)
  2666. end
  2667. end
  2668. end
  2669. end
  2670.  
  2671. Commands.savealltool = function(args)
  2672. for i,v in pairs(LP.Character:GetDescendants()) do
  2673. if v:IsA("Tool") then
  2674. v.Parent = LP
  2675. local oldName = v.Name
  2676. v.Name = "saved "..oldName
  2677. end
  2678. end
  2679. for i,v in pairs(LP.Backpack:GetDescendants()) do
  2680. if v:IsA("Tool") then
  2681. v.Parent = LP
  2682. local oldName = v.Name
  2683. v.Name = "saved "..oldName
  2684. end
  2685. end
  2686. end
  2687.  
  2688. Commands.loadalltool = function(args)
  2689. for i,v in pairs(LP:GetChildren()) do
  2690. if v:IsA("Tool") and string.sub(v.Name, 1, 5) == "saved" then
  2691. v.Parent = LP.Backpack
  2692. local currentName = v.Name
  2693. v.Name = string.sub(currentName, 7)
  2694. end
  2695. end
  2696. end
  2697.  
  2698. Mouse.KeyDown:Connect(function(key)
  2699. if key == clicktpKEY and clicktpACTIVE == true then
  2700. if Mouse.Target then
  2701. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z)
  2702. end
  2703. end
  2704. if key == clickdelKEY and clickdelACTIVE == true then
  2705. if Mouse.Target then
  2706. Mouse.Target:Destroy()
  2707. end
  2708. end
  2709. end)
  2710. Mouse.Button1Down:Connect(function()
  2711. if clicktpACTIVE == true and clicktpCLICK == true then
  2712. if Mouse.Target then
  2713. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z)
  2714. end
  2715. end
  2716. if clickdelACTIVE == true and clickdelCLICK == true then
  2717. if Mouse.Target then
  2718. Mouse.Target:Destroy()
  2719. end
  2720. end
  2721. end)
  2722.  
  2723. clicktpKEY = ""
  2724. clickdelKEY = ""
  2725. clicktpACTIVE = false
  2726. clickdelACTIVE = false
  2727. clicktpCLICK = false
  2728. clickdelCLICK = false
  2729.  
  2730. Commands.clicktp = function(args)
  2731. if args[1] then
  2732. clicktpKEY = string.sub(tostring(args[1]), 1, 1)
  2733. clicktpACTIVE = true
  2734. clicktpCLICK = false
  2735. else
  2736. clicktpKEY = ""
  2737. clicktpACTIVE = true
  2738. clicktpCLICK = true
  2739. end
  2740. clientSided()
  2741. end
  2742.  
  2743. Commands.clickdel = function(args)
  2744. if args[1] then
  2745. clickdelKEY = string.sub(tostring(args[1]), 1, 1)
  2746. clickdelACTIVE = true
  2747. clickdelCLICK = false
  2748. else
  2749. clickdelKEY = ""
  2750. clickdelACTIVE = true
  2751. clickdelCLICK = true
  2752. end
  2753. clientSided()
  2754. end
  2755.  
  2756. Commands.unclicktp = function(args)
  2757. clicktpACTIVE = false
  2758. end
  2759.  
  2760. Commands.unclickdel = function(args)
  2761. clickdelACTIVE = false
  2762. end
  2763.  
  2764. Commands.oof = function(args)
  2765. spawn(function()
  2766. while wait() do
  2767. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  2768. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  2769. for _,x in pairs(v.Character.Head:GetChildren()) do
  2770. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true) end
  2771. end
  2772. end
  2773. end
  2774. end
  2775. end)
  2776. end
  2777.  
  2778. Commands.chatlogs = function(args)
  2779. MainChatFrame.Position = UDim2.new(0, 760, 0, 261)
  2780. MainChatFrame.Visible = true
  2781. end
  2782.  
  2783. Commands.stopadmin = function(args)
  2784. commandPrefix = " "
  2785. following = false
  2786. trailing = false
  2787. annoying = false
  2788. CMDBAR.Visible = false
  2789. Match.Visible = false
  2790. flying = false
  2791. end
  2792.  
  2793. Commands.freecam = function(args)
  2794. for i,getFC in pairs(gsWorkspace:GetDescendants()) do
  2795. if getFC.Name == "rGETpartNUMBER2" then
  2796. getFC:Destroy()
  2797. end
  2798. end
  2799. local CameraPart = Instance.new("Part")
  2800. CameraPart.CanCollide = false
  2801. CameraPart.CFrame = LP.Character.Head.CFrame
  2802. CameraPart.Locked = true
  2803. CameraPart.Transparency = 1
  2804. CameraPart.Size = Vector3.new(1, 1, 1)
  2805. CameraPart.Parent = gsWorkspace
  2806. CameraPart.Name = "rGETpartNUMBER2"
  2807. if bypassMODE == true then
  2808. loopviewfc = true
  2809. elseif bypassMODE == false then
  2810. gsWorkspace.CurrentCamera.CameraSubject = CameraPart
  2811. end
  2812. local speedget = 1
  2813. local T = CameraPart
  2814. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2815. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2816. local SPEED = speedget
  2817. if args[1] then
  2818. speedfly = tonumber(args[1])
  2819. else
  2820. speedfly = 1
  2821. end
  2822. local function freecamfly()
  2823. LP.Character.Head.Anchored = true
  2824. doFREECAM = true
  2825. local BG = Instance.new('BodyGyro', T)
  2826. local BV = Instance.new('BodyVelocity', T)
  2827. BG.P = 9e4
  2828. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2829. BG.cframe = T.CFrame
  2830. BV.velocity = Vector3.new(0, 0.1, 0)
  2831. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2832. spawn(function()
  2833. repeat wait()
  2834. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  2835. SPEED = 50
  2836. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  2837. SPEED = 0
  2838. end
  2839. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  2840. 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
  2841. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  2842. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  2843. 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
  2844. else
  2845. BV.velocity = Vector3.new(0, 0.1, 0)
  2846. end
  2847. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  2848. until not doFREECAM
  2849. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2850. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2851. SPEED = 0
  2852. BG:destroy()
  2853. BV:destroy()
  2854. end)
  2855. end
  2856. Mouse.KeyDown:connect(function(KEY)
  2857. if KEY:lower() == 'w' then
  2858. CONTROL.F = speedfly
  2859. elseif KEY:lower() == 's' then
  2860. CONTROL.B = -speedfly
  2861. elseif KEY:lower() == 'a' then
  2862. CONTROL.L = -speedfly
  2863. elseif KEY:lower() == 'd' then
  2864. CONTROL.R = speedfly
  2865. end
  2866. end)
  2867. Mouse.KeyUp:connect(function(KEY)
  2868. if KEY:lower() == 'w' then
  2869. CONTROL.F = 0
  2870. elseif KEY:lower() == 's' then
  2871. CONTROL.B = 0
  2872. elseif KEY:lower() == 'a' then
  2873. CONTROL.L = 0
  2874. elseif KEY:lower() == 'd' then
  2875. CONTROL.R = 0
  2876. end
  2877. end)
  2878. freecamfly()
  2879. end
  2880.  
  2881. Commands.fc = function(args)
  2882. if args[1] then
  2883. run(commandPrefix.."freecam "..args[1])
  2884. else
  2885. run(commandPrefix.."freecam")
  2886. end
  2887. end
  2888.  
  2889. Commands.unfreecam = function(args)
  2890. doFREECAM = false
  2891. LP.Character.Head.Anchored = false
  2892. view(LP)
  2893. if gsWorkspace.rGETpartNUMBER2 then
  2894. gsWorkspace.rGETpartNUMBER2:Destroy()
  2895. end
  2896. loopviewfc = false
  2897. end
  2898.  
  2899. Commands.unfc = function(args)
  2900. doFREECAM = false
  2901. LP.Character.Head.Anchored = false
  2902. view(LP)
  2903. if gsWorkspace.rGETpartNUMBER2 then
  2904. gsWorkspace.rGETpartNUMBER2:Destroy()
  2905. end
  2906. loopviewfc = false
  2907. end
  2908.  
  2909. Commands.gotofc = function(args)
  2910. doFREECAM = false
  2911. LP.Character.Head.Anchored = false
  2912. view(LP)
  2913. pcall(function()
  2914. LP.Character.HumanoidRootPart.CFrame = gsWorkspace.rGETpartNUMBER2.CFrame
  2915. gsWorkspace.rGETpartNUMBER2:Destroy()
  2916. end)
  2917. loopviewfc = false
  2918. end
  2919.  
  2920. Commands.fctp = function(args)
  2921. if args[1] then
  2922. for i,v in pairs(findPlayer(args[1])) do
  2923. pcall(function()
  2924. gsWorkspace.rGETpartNUMBER2.CFrame = v.Character.Head.CFrame
  2925. end)
  2926. end
  2927. end
  2928. end
  2929.  
  2930. Commands.cmds = function(args)
  2931. CMDSmain.Position = UDim2.new(0, 695, 0, 297)
  2932. CMDSmain.Visible = true
  2933. CMDSmain:TweenSize(UDim2.new(0, 440, 0, 367), "InOut", "Sine", 1)
  2934. end
  2935.  
  2936. Commands.fullcredits = function(args)
  2937. Notification("info", "Credit to Autumn, Josh and 3dsboy08 (Help with "..commandPrefix.."remotespy and anti client kick)", 1)
  2938. Notification("info", "Credit to Infinite Yield developers (Assisted in "..commandPrefix.."esp and "..commandPrefix.."fly commands)", 1)
  2939. Notification("info", "Credit to Timeless ("..commandPrefix.."invisible) and Harkinian ("..commandPrefix.."shutdown)", 1)
  2940. Notification("info", "Credit to DEX creators ("..commandPrefix.."explorer) and xFunnieuss ("..commandPrefix.."spinhats)", 1)
  2941. Notification("info", "Only creator is illremember", 2)
  2942. end
  2943.  
  2944. Commands.hotkey = function(args)
  2945. if args[1] then
  2946. local hotkeyKEY = string.sub(tostring(args[1]), 1, 3)
  2947. if args[2] then
  2948. table.remove(args, 1)
  2949. local hotkeyCMD = table.concat(args, " ")
  2950. table.insert(hotkeys, hotkeyCMD.."//"..hotkeyKEY)
  2951. fullUpdate()
  2952. Notification("info", "Hotkey added!", 1)
  2953. end
  2954. end
  2955. end
  2956.  
  2957. Mouse.KeyDown:Connect(function(key)
  2958. for i,v in pairs(hotkeys) do
  2959. local currentKey = string.match(v, "[%a%d]+$")
  2960. if string.len(currentKey) == 1 then
  2961. if key == string.sub(v, #v, #v) then
  2962. local commandtoRUN = string.match(v, "^[%w%s]+")
  2963. if string.sub(string.lower(tostring(commandtoRUN)), 1, 3) == "fly" then
  2964. if bypassMODE == true then
  2965. if doFREECAM == false then
  2966. run(commandPrefix..tostring(commandtoRUN))
  2967. else
  2968. run(commandPrefix.."unfly")
  2969. end
  2970. else
  2971. if flying == false then
  2972. run(commandPrefix..tostring(commandtoRUN))
  2973. else
  2974. run(commandPrefix.."unfly")
  2975. end
  2976. end
  2977. elseif tostring(commandtoRUN) == "noclip" then
  2978. if noclip == false then
  2979. run(commandPrefix..tostring(commandtoRUN))
  2980. else
  2981. run(commandPrefix.."clip")
  2982. end
  2983. elseif tostring(commandtoRUN) == "freecam" or tostring(commandtoRUN) == "fc" then
  2984. if doFREECAM == false then
  2985. run(commandPrefix..tostring(commandtoRUN))
  2986. else
  2987. if fchotkeymode == "goto" then
  2988. run(commandPrefix.."gotofc")
  2989. elseif fchotkeymode == "unfc" then
  2990. run(commandPrefix.."unfreecam")
  2991. end
  2992. end
  2993. else
  2994. run(commandPrefix..tostring(commandtoRUN))
  2995. end
  2996. end
  2997. else
  2998. if string.lower(string.sub(tostring(currentKey), 1, 1)) == "f" then
  2999. local commandtoRUN = string.match(v, "^[%w%s]+")
  3000. local hotkeyadjust = tonumber(string.sub(currentKey, 2, 3)) + 25
  3001. if string.byte(key) == hotkeyadjust then
  3002. if string.sub(string.lower(tostring(commandtoRUN)), 1, 3) == "fly" then
  3003. if bypassMODE == true then
  3004. if doFREECAM == false then
  3005. run(commandPrefix..tostring(commandtoRUN))
  3006. else
  3007. run(commandPrefix.."unfly")
  3008. end
  3009. else
  3010. if flying == false then
  3011. run(commandPrefix..tostring(commandtoRUN))
  3012. else
  3013. run(commandPrefix.."unfly")
  3014. end
  3015. end
  3016. elseif tostring(commandtoRUN) == "noclip" then
  3017. if noclip == false then
  3018. run(commandPrefix..tostring(commandtoRUN))
  3019. else
  3020. run(commandPrefix.."clip")
  3021. end
  3022. elseif tostring(commandtoRUN) == "freecam" or tostring(commandtoRUN) == "fc" then
  3023. if doFREECAM == false then
  3024. run(commandPrefix..tostring(commandtoRUN))
  3025. else
  3026. if fchotkeymode == "goto" then
  3027. run(commandPrefix.."gotofc")
  3028. elseif fchotkeymode == "unfc" then
  3029. run(commandPrefix.."unfreecam")
  3030. end
  3031. end
  3032. else
  3033. run(commandPrefix..tostring(commandtoRUN))
  3034. end
  3035. end
  3036. end
  3037. end
  3038. end
  3039. end)
  3040.  
  3041. Commands.removeallhotkey = function(args)
  3042. hotkeys = {}
  3043. fullUpdate()
  3044. Notification("warning", "All hotkeys reset/removed", 6)
  3045. end
  3046.  
  3047. Commands.removehotkey = function(args)
  3048. if args[1] then
  3049. for i,v in pairs(hotkeys) do
  3050. local currentKey = string.match(v, "[%a%d]+$")
  3051. if currentKey == string.lower(tostring(args[1])) then
  3052. table.remove(hotkeys, i)
  3053. fullUpdate()
  3054. end
  3055. end
  3056. end
  3057. end
  3058.  
  3059. Commands.printhotkeys = function(args)
  3060. for i,v in pairs(hotkeys) do
  3061. warn("HOTKEYS:")
  3062. print(v)
  3063. end
  3064. end
  3065.  
  3066. Commands.os = function(args)
  3067. if args[1] then
  3068. for i,v in pairs(findPlayer(args[1])) do
  3069. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." is on "..v.OsPlatform, "All")
  3070. end
  3071. end
  3072. end
  3073.  
  3074. spinning = false
  3075. Commands.spin = function(args)
  3076. if args[1] then
  3077. for i,v in pairs(findSinglePlayer(args[1])) do
  3078. run(commandPrefix.."attach "..v.Name)
  3079. annplr = v
  3080. annoying = true
  3081. spinning = true
  3082. end
  3083. end
  3084. end
  3085.  
  3086. Commands.unspin = function(args)
  3087. if spinning then
  3088. annoying = false
  3089. spinning = false
  3090. end
  3091. run(""..commandPrefix.."unattach")
  3092. end
  3093.  
  3094. Commands.explorer = function(args)
  3095. loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  3096. Notification("info", "Loaded DEX explorer!", 5)
  3097. end
  3098.  
  3099. Commands.maxzoom = function(args)
  3100. if args[1] then
  3101. LP.CameraMaxZoomDistance = args[1]
  3102. end
  3103. end
  3104.  
  3105. Commands.stare = function(args)
  3106. if args[1] then
  3107. for i,v in pairs(findSinglePlayer(args[1])) do
  3108. stareplr = v
  3109. staring = true
  3110. end
  3111. end
  3112. end
  3113.  
  3114. Commands.unstare = function(args)
  3115. staring = false
  3116. end
  3117.  
  3118. Commands.tempgod = function(args)
  3119. local hu = LP.Character.Humanoid
  3120. local l = Instance.new("Humanoid")
  3121. l.Parent = LP.Character
  3122. l.Name = "Humanoid"
  3123. wait(0.1)
  3124. hu.Parent = LP
  3125. gsWorkspace.CurrentCamera.CameraSubject = LP.Character
  3126. LP.Character.Animate.Disabled = true
  3127. wait(0.1)
  3128. LP.Character.Animate.Disabled = false
  3129. Notification("info", "Enabled Temp FE Godmode", 4)
  3130. end
  3131.  
  3132. Commands.void = function(args)
  3133. if hasTools() == false then
  3134. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  3135. else
  3136. FEGodmode()
  3137. for i,v in pairs(LP.Backpack:GetChildren())do
  3138. LP.Character.Humanoid:EquipTool(v)
  3139. end
  3140. if args[1] then
  3141. for i,v in pairs(findSinglePlayer(args[1])) do
  3142. local NOW = LP.Character.HumanoidRootPart.CFrame
  3143. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3144. wait(0.3)
  3145. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3146. local function tp(player,player2)
  3147. local char1,char2=player.Character,player2.Character
  3148. if char1 and char2 then
  3149. char1:MoveTo(char2.Head.Position)
  3150. end
  3151. end
  3152. wait(0.5)
  3153. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(999999999999999,0,999999999999999))
  3154. end
  3155. end
  3156. end
  3157. end
  3158.  
  3159. Commands.freefall = function(args)
  3160. if hasTools() == false then
  3161. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  3162. else
  3163. FEGodmode()
  3164. for i,v in pairs(LP.Backpack:GetChildren())do
  3165. LP.Character.Humanoid:EquipTool(v)
  3166. end
  3167. if args[1] then
  3168. for i,v in pairs(findSinglePlayer(args[1])) do
  3169. local NOW = LP.Character.HumanoidRootPart.CFrame
  3170. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3171. wait(0.3)
  3172. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3173. wait(0.5)
  3174. LP.Character.HumanoidRootPart.CFrame = NOW
  3175. wait(0.5)
  3176. LP.Character.HumanoidRootPart.CFrame = NOW
  3177. wait(0.6)
  3178. LP.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  3179. end
  3180. end
  3181. end
  3182. end
  3183.  
  3184. Commands.version = function(args)
  3185. Notification("info", "Current Shattervast Version: V2.8", 7)
  3186. end
  3187.  
  3188. Commands.shiftlockon = function(args)
  3189. LP.DevEnableMouseLock = true
  3190. Notification("info", "Shift lock enabled!", 5)
  3191. end
  3192.  
  3193. for i,needChat in pairs(gsPlayers:GetPlayers()) do
  3194. needChat.Chatted:Connect(function(msg)
  3195. if copychatall then
  3196. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
  3197. end
  3198. end)
  3199. end
  3200. gsPlayers.PlayerAdded:Connect(function(plr)
  3201. plr.Chatted:Connect(function(msg)
  3202. if copychatall then
  3203. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
  3204. end
  3205. end)
  3206. end)
  3207.  
  3208. copychatplayer = nil
  3209. copychatall = false
  3210. copychatACTIVE = false
  3211. Commands.copychat = function(args)
  3212. if args[1] then
  3213. if string.lower(args[1]) == "all" or string.lower(args[1]) == "others" then
  3214. copychatall = true
  3215. else
  3216. for i,v in pairs(findPlayer(args[1])) do
  3217. if v ~= LP then
  3218. copychatplayer = v
  3219. copychatACTIVE = true
  3220. end
  3221. end
  3222. end
  3223. end
  3224. end
  3225.  
  3226. Commands.uncopychat = function(args)
  3227. copychatall = false
  3228. copychatACTIVE = false
  3229. end
  3230.  
  3231. Commands.newkill = function(args)
  3232. if hasTools() == false then
  3233. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3234. else
  3235. if args[1] then
  3236. for i,plr in pairs(findSinglePlayer(args[1])) do
  3237. for i,v in pairs(LP.Backpack:GetChildren())do
  3238. LP.Character.Humanoid:EquipTool(v)
  3239. end
  3240. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3241. if v:IsA("Tool") then
  3242. v.Parent = LP.Character
  3243. wait()
  3244. v.Parent = plr.Character
  3245. end
  3246. end
  3247. wait(0.4)
  3248. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(4000000, -10, 200000))
  3249. end
  3250. end
  3251. end
  3252. end
  3253.  
  3254. Commands.newattach = function(args)
  3255. if hasTools() == false then
  3256. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3257. else
  3258. if args[1] then
  3259. for i,plr in pairs(findSinglePlayer(args[1])) do
  3260. for i,v in pairs(LP.Backpack:GetChildren())do
  3261. LP.Character.Humanoid:EquipTool(v)
  3262. end
  3263. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3264. if v:IsA("Tool") then
  3265. v.Parent = LP.Character
  3266. wait()
  3267. v.Parent = plr.Character
  3268. end
  3269. end
  3270. end
  3271. end
  3272. end
  3273. end
  3274.  
  3275. Commands.newbring = function(args)
  3276. if hasTools() == false then
  3277. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3278. else
  3279. if args[1] then
  3280. for i,plr in pairs(findSinglePlayer(args[1])) do
  3281. local NOW = LP.Character.HumanoidRootPart.CFrame
  3282. for i,v in pairs(LP.Backpack:GetChildren())do
  3283. LP.Character.Humanoid:EquipTool(v)
  3284. end
  3285. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3286. if v:IsA("Tool") then
  3287. v.Parent = LP.Character
  3288. wait()
  3289. v.Parent = plr.Character
  3290. end
  3291. end
  3292. wait(0.4)
  3293. LP.Character.HumanoidRootPart.CFrame = NOW
  3294. wait(0.4)
  3295. LP.Character.HumanoidRootPart.CFrame = NOW
  3296. end
  3297. end
  3298. end
  3299. end
  3300.  
  3301. Commands.spawn = function(args)
  3302. if args[1] then
  3303. if string.lower(tostring(args[1])) == "ws" then
  3304. spawnWS = args[2] or CurrentWalkspeed
  3305. LP.Character.Humanoid.WalkSpeed = args[2] or CurrentWalkspeed
  3306. elseif string.lower(tostring(args[1])) == "jp" then
  3307. spawnJP = args[2] or CurrentJumppower
  3308. LP.Character.Humanoid.JumpPower = args[2] or CurrentJumppower
  3309. elseif string.lower(tostring(args[1])) == "hh" then
  3310. spawnHH = args[2] or CurrentHipheight
  3311. LP.Character.Humanoid.HipHeight = args[2] or CurrentHipheight
  3312. elseif string.lower(tostring(args[1])) == "god" then
  3313. spawningfegod = true
  3314. FEGodmode()
  3315. end
  3316. end
  3317. end
  3318.  
  3319. Commands.unspawn = function(args)
  3320. spawnWS = CurrentWalkspeed
  3321. spawnJP = CurrentJumppower
  3322. spawnHH = CurrentHipheight
  3323. spawningfegod = false
  3324. Notification("info", "Reset spawning stats", 5)
  3325. end
  3326.  
  3327. savingtoolsloop = false
  3328. Commands.autosavetool = function(args)
  3329. if args[1] then
  3330. if string.lower(tostring(args[1])) == "on" then
  3331. savingtoolsloop = true
  3332. elseif string.lower(tostring(args[1])) == "off" then
  3333. savingtoolsloop = false
  3334. end
  3335. end
  3336. end
  3337.  
  3338. modeFling = false
  3339. modeCompliment = false
  3340. modeMove = false
  3341. modeInfo = false
  3342. Commands.beginbot = function(args)
  3343. if not args[1] then
  3344. print("fling // compliment // move // info")
  3345. Notification("info", ""..commandPrefix.."beginbot Modes printed", 5)
  3346. else
  3347. if string.lower(tostring(args[1])) == "fling" then
  3348. modeFling = true
  3349. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hello! I am Fling-Bot 5000! Say !fling [Player] to fling that player!", "All")
  3350. elseif string.lower(tostring(args[1])) == "compliment" then
  3351. modeCompliment = true
  3352. complimentReady = true
  3353. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Good day, I am Compliment-Bot. Say !c [Player] to give them a compliment.", "All")
  3354. elseif string.lower(tostring(args[1])) == "move" then
  3355. modeMove = true
  3356. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hi, I am movement bot. Commands you can use: !walk [Player], !bringbot, !follow [Player].", "All")
  3357. elseif string.lower(tostring(args[1])) == "info" then
  3358. modeInfo = true
  3359. infoReady = true
  3360. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hey, I'm Info-Bot. Commands you can use: !age [Player], !id [Player].", "All")
  3361. end
  3362. end
  3363. end
  3364.  
  3365. Commands.endbot = function(args)
  3366. if not args[1] then
  3367. modeFling = false
  3368. modeCompliment = false
  3369. modeMove = false
  3370. modeInfo = false
  3371. else
  3372. if string.lower(tostring(args[1])) == "fling" then
  3373. modeFling = false
  3374. elseif string.lower(tostring(args[1])) == "compliment" then
  3375. modeCompliment = false
  3376. elseif string.lower(tostring(args[1])) == "move" then
  3377. modeMove = false
  3378. elseif string.lower(tostring(args[1])) == "info" then
  3379. modeInfo = false
  3380. end
  3381. end
  3382. end
  3383.  
  3384. Commands.stopsit = function(args)
  3385. stopsitting = true
  3386. end
  3387.  
  3388. Commands.gosit = function(args)
  3389. stopsitting = false
  3390. end
  3391.  
  3392. chattingerror = true
  3393. Commands.chaterror = function(args)
  3394. if chattingerror then
  3395. chattingerror = false
  3396. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3397. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3398. wait(4)
  3399. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3400. wait(3)
  3401. chattingerror = true
  3402. end
  3403. end
  3404.  
  3405. spawnpos = nil
  3406. spawningpos = true
  3407. Commands.spawnpoint = function(args)
  3408. spawnpos = LP.Character.HumanoidRootPart.CFrame
  3409. spawningpos = true
  3410. Notification("info", "Spawn point has been set! Use "..commandPrefix.."nospawn to remove.", 6)
  3411. end
  3412.  
  3413. Commands.nospawn = function(args)
  3414. spawningpos = false
  3415. Notification("info", "Spawn point has been removed. Use "..commandPrefix.."spawnpoint to enable.", 6)
  3416. end
  3417.  
  3418. Commands.bypass = function(args)
  3419. if args[1] then
  3420. if string.lower(tostring(args[1])) == "on" then
  3421. bypassMODE = true
  3422. Notification("warning", "Bypass mode turned on, this changes functions of "..commandPrefix.."fly and other commands to bypass most anti-exploits.", 7)
  3423. elseif string.lower(tostring(args[1])) == "off" then
  3424. bypassMODE = false
  3425. Notification("warning", "Bypass mode has been turned off.", 7)
  3426. end
  3427. end
  3428. end
  3429.  
  3430. Commands.fixcam = function(args)
  3431. gsWorkspace.CurrentCamera:Destroy()
  3432. wait(0.1)
  3433. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character.Humanoid
  3434. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  3435. LP.CameraMinZoomDistance = 0.5
  3436. LP.CameraMaxZoomDistance = 400
  3437. LP.CameraMode = "Classic"
  3438. LP.DevCameraOcclusionMode = CurrentNormal
  3439. end
  3440.  
  3441. Commands.gotoobj = function(args)
  3442. if args[1] then
  3443. for i,v in pairs(gsWorkspace:GetDescendants()) do
  3444. if string.lower(v.Name) == string.lower(tostring(args[1])) then
  3445. LP.Character.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(0, 3, 0)
  3446. end
  3447. end
  3448. end
  3449. end
  3450.  
  3451. Commands.breakcam = function(args)
  3452. gsWorkspace.CurrentCamera.CameraSubject = LP.Character.Head
  3453. end
  3454.  
  3455. Commands.inviscam = function(args)
  3456. LP.DevCameraOcclusionMode = "Invisicam"
  3457. end
  3458.  
  3459. printobjKEY = ""
  3460. printobjCLICKING = false
  3461. printobjACTIVE = false
  3462.  
  3463. Commands.printobj = function(args)
  3464. if args[1] then
  3465. printobjKEY = string.sub(tostring(args[1]), 1, 1)
  3466. printobjACTIVE = true
  3467. printobjCLICKING = false
  3468. else
  3469. printobjKEY = ""
  3470. printobjACTIVE = true
  3471. printobjCLICKING = true
  3472. end
  3473. end
  3474.  
  3475. Mouse.KeyDown:Connect(function(key)
  3476. if key == printobjKEY and printobjACTIVE == true then
  3477. if Mouse.Target then
  3478. local path = Mouse.Target:GetFullName()
  3479. local getPath = "game:GetService(\"Workspace\")"
  3480. local getSpaces = ""
  3481. local separate = {}
  3482. local a = nil
  3483. for v in string.gmatch(string.sub(path, 10), "[^.]+") do
  3484. if string.match(v, " ") then
  3485. a = "["..v.."]"
  3486. table.insert(separate, a)
  3487. else
  3488. a = "."..v
  3489. table.insert(separate, a)
  3490. end
  3491. getSpaces = table.concat(separate, "")
  3492. end
  3493. local fullPath = getPath..getSpaces
  3494. print(fullPath)
  3495. end
  3496. end
  3497. end)
  3498. Mouse.Button1Down:Connect(function()
  3499. if printobjCLICKING == true and printobjACTIVE == true then
  3500. if Mouse.Target then
  3501. local path = Mouse.Target:GetFullName()
  3502. local getPath = "game:GetService(\"Workspace\")"
  3503. local getSpaces = ""
  3504. local separate = {}
  3505. local a = nil
  3506. for v in string.gmatch(string.sub(path, 10), "[^.]+") do
  3507. if string.match(v, " ") then
  3508. a = "["..v.."]"
  3509. table.insert(separate, a)
  3510. else
  3511. a = "."..v
  3512. table.insert(separate, a)
  3513. end
  3514. getSpaces = table.concat(separate, "")
  3515. end
  3516. local fullPath = getPath..getSpaces
  3517. print(fullPath)
  3518. end
  3519. end
  3520. end)
  3521.  
  3522. Commands.unprintobj = function(args)
  3523. printobjACTIVE = false
  3524. printobjCLICKING = false
  3525. end
  3526.  
  3527. Commands.hotkeyfc = function(args)
  3528. if args[1] then
  3529. if string.lower(tostring(args[1])) == "goto" then
  3530. fchotkeymode = "goto"
  3531. elseif string.lower(tostring(args[1])) == "unfc" then
  3532. fchotkeymode = "unfc"
  3533. end
  3534. fullUpdate()
  3535. end
  3536. end
  3537.  
  3538. Commands.carpet = function(args)
  3539. if args[1] then
  3540. for i,v in pairs(findSinglePlayer(args[1])) do
  3541. if v ~= nil then
  3542. annoying = true
  3543. annplr = v
  3544. local carpetAnimation = Instance.new("Animation")
  3545. carpetAnimation.AnimationId = "rbxassetid://282574440"
  3546. carpetTrack = LP.Character.Humanoid:LoadAnimation(carpetAnimation)
  3547. carpetTrack:Play(.1, 1, 1)
  3548. end
  3549. end
  3550. end
  3551. end
  3552.  
  3553. Commands.uncarpet = function(args)
  3554. annoying = false
  3555. carpetTrack:Stop()
  3556. end
  3557.  
  3558. Commands.brickcreate = function(args)
  3559. if args[1] then
  3560. local createPosition = LP.Character.HumanoidRootPart.CFrame
  3561. if args[2] and args[3] and args[4] then
  3562. createPosition = CFrame.new(Vector3.new(args[2], args[3], args[4]))
  3563. else
  3564. createPosition = LP.Character.HumanoidRootPart.CFrame
  3565. end
  3566. for i = 1, args[1] do
  3567. LP.Character.HumanoidRootPart.CFrame = createPosition
  3568. run(commandPrefix.."blockhats")
  3569. wait(0.2)
  3570. run(commandPrefix.."drophats")
  3571. wait(0.2)
  3572. run(commandPrefix.."reset")
  3573. wait(6)
  3574. end
  3575. end
  3576. end
  3577.  
  3578. Commands.forward = function(args)
  3579. if args[1] then
  3580. forwardSpeed = args[1]
  3581. else
  3582. forwardSpeed = 1
  3583. end
  3584. cmdForward = true
  3585. end
  3586.  
  3587. Commands.unforward = function(args)
  3588. cmdForward = false
  3589. end
  3590.  
  3591. Commands.id = function(args)
  3592. if args[1] then
  3593. for i,v in pairs(findPlayer(args[1])) do
  3594. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." Account ID: "..v.UserId.."!", "All")
  3595. end
  3596. end
  3597. end
  3598.  
  3599. Commands.spinhats = function(args) -- Credit to xFunnieuss
  3600. for i,v in pairs(LP.Character:GetDescendants()) do
  3601. if v:IsA("Accessory") or v:IsA("Hat") then
  3602. local keep = Instance.new("BodyPosition") keep.Parent = v.Handle keep.Name = "no"
  3603. local spin = Instance.new("BodyAngularVelocity") spin.Parent = v.Handle spin.Name = "ha"
  3604. if v.Handle.AccessoryWeld then
  3605. v.Handle.AccessoryWeld:Destroy()
  3606. end
  3607. if args[1] then
  3608. spin.AngularVelocity = Vector3.new(0, args[1], 0)
  3609. spin.MaxTorque = Vector3.new(0, args[1] * 2, 0)
  3610. else
  3611. spin.AngularVelocity = Vector3.new(0, 100, 0)
  3612. spin.MaxTorque = Vector3.new(0, 200, 0)
  3613. end
  3614. keep.P = 30000
  3615. keep.D = 50
  3616. spinObj = keep
  3617. spinTOhead = true
  3618. end
  3619. end
  3620. end
  3621.  
  3622. Commands.unspinhats = function(args)
  3623. for i,v in pairs(LP.Character:GetDescendants()) do
  3624. if v:IsA("Accessory") or v:IsA("Hat") then
  3625. pcall(function()
  3626. run(commandPrefix.."drophats")
  3627. wait(2)
  3628. v.Handle.spin:Destroy()
  3629. v.Handle.keep:Destroy()
  3630. end)
  3631. end
  3632. end
  3633. end
  3634.  
  3635. savedmap = {}
  3636. Commands.savemap = function(args)
  3637. for i,v in pairs(gsWorkspace:GetChildren()) do
  3638. v.Archivable = true
  3639. if not v:IsA("Terrain") and not v:IsA("Camera") then
  3640. if not gsPlayers:FindFirstChild(v.Name) then
  3641. table.insert(savedmap, v:Clone())
  3642. end
  3643. end
  3644. end
  3645. clientSided()
  3646. end
  3647.  
  3648. Commands.loadmap = function(args)
  3649. for i,v in pairs(gsWorkspace:GetChildren()) do
  3650. if not v:IsA("Terrain") and not v:IsA("Camera") then
  3651. if not gsPlayers:FindFirstChild(v.Name) then
  3652. pcall(function()
  3653. v:Destroy()
  3654. end)
  3655. end
  3656. end
  3657. end
  3658. for i,a in ipairs(savedmap) do
  3659. a:Clone().Parent = gsWorkspace
  3660. end
  3661. clientSided()
  3662. end
  3663.  
  3664. Commands.creatorid = function(args)
  3665. LP.UserId = game.CreatorId
  3666. end
  3667.  
  3668. Commands.gameid = function(args)
  3669. Notification("info", "Current game's ID = "..game.GameId, 8)
  3670. end
  3671.  
  3672. Commands.delobj = function(args)
  3673. if args[1] then
  3674. for i,v in pairs(gsWorkspace:GetDescendants()) do
  3675. if string.lower(v.Name) == string.lower(tostring(args[1])) then
  3676. v:Destroy()
  3677. clientSided()
  3678. end
  3679. end
  3680. end
  3681. end
  3682.  
  3683. Commands.glide = function(args)
  3684. if args[1] then
  3685. for i,v in pairs(findSinglePlayer(args[1])) do
  3686. local goal = {}
  3687. goal.CFrame = v.Character.HumanoidRootPart.CFrame
  3688. local defaultSpeed = 3
  3689. if args[2] then
  3690. if tonumber(args[2]) < 10 then
  3691. defaultSpeed = tonumber(args[2])
  3692. else
  3693. defaultSpeed = 5
  3694. end
  3695. else
  3696. defaultSpeed = 3
  3697. end
  3698. local goalFunction = gsTween:Create(LP.Character.HumanoidRootPart, TweenInfo.new(defaultSpeed, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), goal)
  3699. goalFunction:Play()
  3700. end
  3701. end
  3702. end
  3703.  
  3704. stutterON = false
  3705. Commands.stutter = function(args)
  3706. if args[1] then
  3707. if string.lower(tostring(args[1])) == "on" then
  3708. stutterON = true
  3709. elseif string.lower(tostring(args[1])) == "off" then
  3710. stutterON = false
  3711. wait(0.4)
  3712. LP.Character.HumanoidRootPart.Anchored = false
  3713. end
  3714. end
  3715. end
  3716.  
  3717. spawn(function()
  3718. while wait(0.1) do
  3719. if stutterON == true then
  3720. LP.Character.HumanoidRootPart.Anchored = false
  3721. wait(0.1)
  3722. LP.Character.HumanoidRootPart.Anchored = true
  3723. end
  3724. end
  3725. end)
  3726.  
  3727. Commands.platform = function(args)
  3728. local a = Instance.new("Part")
  3729. a.Parent = gsWorkspace
  3730. a.Size = Vector3.new(10, 1, 10)
  3731. a.Anchored = true
  3732. a.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0)
  3733. LP.Character.HumanoidRootPart.CFrame = a.CFrame + Vector3.new(0, 2, 0)
  3734. clientSided()
  3735. wait(20)
  3736. a:Destroy()
  3737. end
  3738.  
  3739. Commands.servertime = function(args)
  3740. Notification("info", "Server time is "..math.ceil(tonumber(gsWorkspace.DistributedGameTime)).." seconds.", 8)
  3741. end
  3742.  
  3743. Commands.ride = function(args)
  3744. if args[1] then
  3745. for i,v in pairs(findSinglePlayer(args[1])) do
  3746. local Anim = Instance.new("Animation")
  3747. Anim.AnimationId = "rbxassetid://179224234"
  3748. RIDEtrack = LP.Character.Humanoid:LoadAnimation(Anim)
  3749. rideACTIVE = true
  3750. ridePLAYER = v
  3751. RIDEtrack:Play()
  3752. end
  3753. end
  3754. end
  3755.  
  3756. Commands.unride = function(args)
  3757. RIDEtrack:Stop()
  3758. rideACTIVE = false
  3759. end
  3760.  
  3761. Commands.cmute = function(args)
  3762. if args[1] then
  3763. for i,v in pairs(findSinglePlayer(args[1])) do
  3764. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/mute "..v.Name, "All")
  3765. clientSided()
  3766. end
  3767. end
  3768. end
  3769.  
  3770. Commands.uncmute = function(args)
  3771. if args[1] then
  3772. for i,v in pairs(findSinglePlayer(args[1])) do
  3773. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/unmute "..v.Name, "All")
  3774. end
  3775. end
  3776. end
  3777.  
  3778. Commands.hat = function(args)
  3779. if args[1] then
  3780. for i,v in pairs(findSinglePlayer(args[1])) do
  3781. local Anim = Instance.new("Animation")
  3782. Anim.AnimationId = "rbxassetid://282574440"
  3783. HATtrack = LP.Character.Humanoid:LoadAnimation(Anim)
  3784. rideACTIVE = true
  3785. ridePLAYER = v
  3786. HATtrack:Play()
  3787. view(v)
  3788. end
  3789. end
  3790. end
  3791.  
  3792. Commands.unhat = function(args)
  3793. HATtrack:Stop()
  3794. rideACTIVE = false
  3795. view(LP)
  3796. end
  3797.  
  3798. --[[Commands.spawnreset = function(args)
  3799. if args[1] then
  3800. if string.lower(tostring(args[1])) == "on" then
  3801. spawningatreset = true
  3802. elseif string.lower(tostring(args[1])) == "off" then
  3803. spawningatreset = false
  3804. end
  3805. end
  3806. end]]
  3807.  
  3808. Commands.chat = function(args)
  3809. if args[1] then
  3810. local Chatmsg = table.concat(args, " ")
  3811. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Chatmsg, "All")
  3812. end
  3813. end
  3814.  
  3815. -- findPlayer function (ALL, OTHERS, ME, NOOBS, VETERANS, OLDVETERANS, FRIENDS, NOFRIENDS, DEFAULT, RANDOM, SAMETEAM, NOTEAM, OTHERTEAM, TEAMname)
  3816. function findPlayer(plr)
  3817. local players = {}
  3818. local find = plr:lower()
  3819. local getAllNames = getmultipleplayers(find)
  3820. for i,mplr in pairs(getAllNames) do
  3821. if mplr == "all" then
  3822. for i,v in pairs(gsPlayers:GetPlayers()) do
  3823. table.insert(players,v)
  3824. end
  3825. elseif mplr == "others" then
  3826. for i,v in pairs(gsPlayers:GetPlayers()) do
  3827. if v.Name ~= LP.Name then
  3828. table.insert(players,v)
  3829. end
  3830. end
  3831. elseif mplr == "me" then
  3832. table.insert(players,LP)
  3833. elseif mplr == "noobs" then
  3834. for i,v in pairs(gsPlayers:GetPlayers()) do
  3835. if v.AccountAge <= 3 then
  3836. table.insert(players,v)
  3837. end
  3838. end
  3839. elseif mplr == "veterans" then
  3840. for i,v in pairs(gsPlayers:GetPlayers()) do
  3841. if v.AccountAge >= 365 then
  3842. table.insert(players,v)
  3843. end
  3844. end
  3845. elseif mplr == "oldveterans" then
  3846. for i,v in pairs(gsPlayers:GetPlayers()) do
  3847. if v.AccountAge >= 1500 then
  3848. table.insert(players,v)
  3849. end
  3850. end
  3851. elseif mplr == "friends" then
  3852. for i,v in pairs(gsPlayers:GetPlayers()) do
  3853. if v:IsFriendsWith(LP.UserId) and v.Name ~= LP.Name then
  3854. table.insert(players,v)
  3855. end
  3856. end
  3857. elseif mplr == "nofriends" then
  3858. for i,v in pairs(gsPlayers:GetPlayers()) do
  3859. if not v:IsFriendsWith(LP.UserId) and v.Name ~= LP.Name then
  3860. table.insert(players,v)
  3861. end
  3862. end
  3863. elseif mplr == "default" then
  3864. for i,v in pairs(gsPlayers:GetPlayers()) do
  3865. if v.Character:FindFirstChild("Pal Hair") or v.Character:FindFirstChild("Kate Hair") then
  3866. table.insert(players,v)
  3867. end
  3868. end
  3869. elseif mplr == "random" then
  3870. for i,v in pairs(gsPlayers:GetPlayers()) do
  3871. table.insert(players,v[math.random(1, #v)])
  3872. end
  3873. elseif mplr == "sameteam" then
  3874. for i,v in pairs(gsPlayers:GetPlayers()) do
  3875. if v.Team == LP.Team then
  3876. table.insert(players,v)
  3877. end
  3878. end
  3879. elseif mplr == "noteam" then
  3880. for i,v in pairs(gsPlayers:GetPlayers()) do
  3881. if v.Team == nil then
  3882. table.insert(players,v)
  3883. end
  3884. end
  3885. elseif mplr == "otherteam" then
  3886. for i,v in pairs(gsPlayers:GetPlayers()) do
  3887. if v.Team ~= LP.Team then
  3888. table.insert(players,v)
  3889. end
  3890. end
  3891. elseif string.sub(mplr, 1, 4) == "team" then
  3892. for i,v in pairs(gsPlayers:GetPlayers()) do
  3893. local spaceTEAM = {}
  3894. for teamValues in (string.gmatch(string.sub(mplr, 5), "[^_]+")) do
  3895. spaceTEAM[#spaceTEAM + 1] = teamValues
  3896. end
  3897. local gottrueteam = table.concat(spaceTEAM, " ")
  3898. if string.lower(tostring(v.Team)) == string.lower(gottrueteam) then
  3899. table.insert(players,v)
  3900. end
  3901. end
  3902. else
  3903. for i,v in pairs(gsPlayers:GetPlayers()) do
  3904. if string.lower(v.Name):sub(1, #mplr) == string.lower(mplr) then
  3905. table.insert(players,v)
  3906. end
  3907. end
  3908. end
  3909. end
  3910.  
  3911. return players
  3912. end
  3913. function getmultipleplayers(plr)
  3914. local plrsgotten = {}
  3915. for i in string.gmatch(plr,"[^,]+") do
  3916. table.insert(plrsgotten,i)
  3917. end
  3918. return plrsgotten
  3919. end
  3920. function findSinglePlayer(plr)
  3921. local players = {}
  3922. local find = plr:lower()
  3923. if find == "me" then
  3924. table.insert(players,LP)
  3925. else
  3926. for i,v in pairs(gsPlayers:GetPlayers()) do
  3927. if string.lower(v.Name):sub(1, #find) == string.lower(find) then
  3928. table.insert(players,v)
  3929. end
  3930. end
  3931. end
  3932. local oneplayer = {}
  3933. pcall(function()
  3934. table.insert(oneplayer, players[math.random(1, #players)])
  3935. end)
  3936. return oneplayer
  3937. end
  3938.  
  3939. -- Anti Kick
  3940.  
  3941. if getrawmetatable then
  3942. function formatargs(getArgs,v)
  3943. if #getArgs == 0 then
  3944. return ""
  3945. end
  3946.  
  3947. local collectArgs = {}
  3948. for k,v in next,getArgs do
  3949. local argument = ""
  3950. if type(v) == "string" then
  3951. argument = "\""..v.."\""
  3952. elseif type(v) == "table" then
  3953. argument = "{" .. formatargs(v,true) .. "}"
  3954. else
  3955. argument = tostring(v)
  3956. end
  3957. if v and type(k) ~= "number" then
  3958. table.insert(collectArgs,k.."="..argument)
  3959. else
  3960. table.insert(collectArgs,argument)
  3961. end
  3962. end
  3963. return table.concat(collectArgs, ", ")
  3964. end
  3965.  
  3966. kicknum = 0
  3967. local game_meta = getrawmetatable(game)
  3968. local game_namecall = game_meta.__namecall
  3969. local game_index = game_meta.__index
  3970. local w = (setreadonly or fullaccess or make_writeable)
  3971. pcall(w, game_meta, false)
  3972. game_meta.__namecall = function(out, ...)
  3973. local args = {...}
  3974. local Method = args[#args]
  3975. args[#args] = nil
  3976.  
  3977. if Method == "Kick" and out == LP then
  3978. kicknum = kicknum + 1
  3979. warn("Blocked client-kick attempt "..kicknum)
  3980. return
  3981. end
  3982.  
  3983. if antiremotes then
  3984. if Method == "FireServer" or Method == "InvokeServer" then
  3985. if out.Name ~= "CharacterSoundEvent" and out.Name ~= "SayMessageRequest" and out.Name ~= "AddCharacterLoadedEvent" and out.Name ~= "RemoveCharacterEvent" and out.Name ~= "DefaultServerSoundEvent" and out.Parent ~= "DefaultChatSystemChatEvents" then
  3986. warn("Blocked remote: "..out.Name.." // Method: "..Method)
  3987. return
  3988. end
  3989. end
  3990. else
  3991. if Method == "FireServer" or Method == "InvokeServer" then
  3992. for i,noremote in pairs(blockedremotes) do
  3993. if out.Name == noremote and out.Name ~= "SayMessageRequest" then
  3994. warn("Blocked remote: "..out.Name.." // Method: "..Method)
  3995. return
  3996. end
  3997. end
  3998. end
  3999. end
  4000.  
  4001. if spyingremotes then
  4002. if Method == "FireServer" or Method == "InvokeServer" then
  4003. if out.Name ~= "CharacterSoundEvent" and out.Name ~= "AddCharacterLoadedEvent" and out.Name ~= "RemoveCharacterEvent" and out.Name ~= "DefaultServerSoundEvent" and out.Name ~= "SayMessageRequest" then
  4004. local arguments = {}
  4005. for i = 1,#args do
  4006. arguments[i] = args[i]
  4007. end
  4008. local getScript = getfenv(2).script
  4009. if getScript == nil then
  4010. getScript = "??? (Not Found) ???"
  4011. end
  4012. warn("<> <> <> A "..out.ClassName.." has been fired! How to fire:\ngame."..out:GetFullName()..":"..Method.."("..formatargs(arguments)..")\n\nFired from script: ".. tostring(getScript:GetFullName()))
  4013. end
  4014. end
  4015. end
  4016.  
  4017. return game_namecall(out, ...)
  4018. end
  4019. end
  4020.  
  4021. -- FE Check
  4022. function FEcheckDefault()
  4023. if gsWorkspace.FilteringEnabled == true then
  4024. createIntro("warning", "FE is enabled! Press "..commandPrefix.." to bring Command Bar.", 7)
  4025. else
  4026. createIntro("warning", "FE is disabled. Consider using a different script.", 7)
  4027. end
  4028. end
  4029. FEcheckDefault()
  4030. end)
  4031.  
  4032. InfiniteYield.Name = "InfiniteYield"
  4033. InfiniteYield.Parent = Frame
  4034. InfiniteYield.BackgroundColor3 = Color3.new(1, 1, 1)
  4035. InfiniteYield.Position = UDim2.new(0.366609275, 0, 1.68909216, 0)
  4036. InfiniteYield.Size = UDim2.new(0, 154, 0, 50)
  4037. InfiniteYield.Font = Enum.Font.SourceSans
  4038. InfiniteYield.Text = "Infinite yield"
  4039. InfiniteYield.TextColor3 = Color3.new(0, 0, 0)
  4040. InfiniteYield.TextScaled = true
  4041. InfiniteYield.TextSize = 14
  4042. InfiniteYield.TextWrapped = true
  4043. InfiniteYield.MouseButton1Down:connect(function()
  4044. loadstring(game:HttpGet(('https://pastebin.com/raw/tzTXmYf2'),true))()
  4045. end)
  4046.  
  4047. Reviz.Name = "Reviz"
  4048. Reviz.Parent = Frame
  4049. Reviz.BackgroundColor3 = Color3.new(1, 1, 1)
  4050. Reviz.Position = UDim2.new(0.655765951, 0, 1.68909216, 0)
  4051. Reviz.Size = UDim2.new(0, 200, 0, 50)
  4052. Reviz.Font = Enum.Font.SourceSans
  4053. Reviz.Text = "Reviz"
  4054. Reviz.TextColor3 = Color3.new(0, 0, 0)
  4055. Reviz.TextScaled = true
  4056. Reviz.TextSize = 14
  4057. Reviz.TextWrapped = true
  4058. Reviz.MouseButton1Down:connect(function()
  4059. -- Creator: illremember#3799
  4060.  
  4061. -- Credits to infinite yield, harkinian, dex creators
  4062.  
  4063. prefix = ";"
  4064. wait(0.3)
  4065. Commands = {
  4066. '[-] cmdbar is shown when ; is pressed.',
  4067. '[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player',
  4068. '[2] bring [plr] -- You need a tool! Will bring player to you',
  4069. '[3] spin [plr] -- You need a tool! Makes you and the player spin crazy',
  4070. '[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting',
  4071. '[5] attach [plr] -- You need a tool! Attaches you to player',
  4072. '[6] unattach [plr] -- Attempts to unattach you from a player',
  4073. '[7] follow [plr] -- Makes you follow behind the player',
  4074. '[8] unfollow',
  4075. '[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air',
  4076. '[10] trail [plr] -- The opposite of follow, you stay infront of player',
  4077. '[11] untrail',
  4078. '[12] orbit [plr] -- Makes you orbit the player',
  4079. '[13] unorbit',
  4080. '[14] fling [plr] -- Makes you fling the player',
  4081. '[15] unfling',
  4082. '[16] fecheck -- Checks if the game is FE or not',
  4083. '[17] void [plr] -- Teleports player to the void',
  4084. '[18] noclip -- Gives you noclip to walk through walls',
  4085. '[19] clip -- Removes noclip',
  4086. '[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default',
  4087. '[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default',
  4088. '[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default',
  4089. '[23] default -- Changes your speed, jumppower and hipheight to default values',
  4090. '[24] annoy [plr] -- Loop teleports you to the player',
  4091. '[25] unannoy',
  4092. '[26] headwalk [plr] -- Loop teleports you to the player head',
  4093. '[27] unheadwalk',
  4094. '[28] nolimbs -- Removes your arms and legs',
  4095. '[29] god -- Gives you FE Godmode',
  4096. '[30] drophats -- Drops your accessories',
  4097. '[31] droptool -- Drops any tool you have equipped',
  4098. '[32] loopdhats -- Loop drops your accessories',
  4099. '[33] unloopdhats',
  4100. '[34] loopdtool -- Loop drops any tools you have equipped',
  4101. '[35] unloopdtool',
  4102. '[36] invisible -- Gives you invisibility CREDIT TO TIMELESS',
  4103. '[37] view [plr] -- Changes your camera to the player character',
  4104. '[38] unview',
  4105. '[39] goto [plr] -- Teleports you to player',
  4106. '[40] fly -- Allows you to fly, credit to Infinite Yield',
  4107. '[41] unfly',
  4108. '[42] chat [msg] -- Makes you chat a message',
  4109. '[43] spam [msg] -- Spams a message',
  4110. '[44] unspam',
  4111. '[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second',
  4112. '[46] pmspam [plr] -- Spams a player in private message',
  4113. '[47] unpmspam',
  4114. '[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you',
  4115. '[49] uncfreeze [plr]',
  4116. '[50] unlockws -- Unlocks the workspace',
  4117. '[51] lockws -- Locks the workspace',
  4118. '[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you',
  4119. '[53] pstand -- Enables platform stand',
  4120. '[54] unpstand -- Disables platform stand',
  4121. '[55] blockhead -- Removes your head mesh',
  4122. '[56] sit',
  4123. '[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',
  4124. '[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided',
  4125. '[59] hypertotal -- Loads in my FE GUI Hypertotal',
  4126. '[60] cmds -- Prints all commands',
  4127. '[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats',
  4128. '[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool',
  4129. '[63] spinner -- Makes you spin',
  4130. '[64] nospinner',
  4131. '[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom',
  4132. '[66] noreach -- Removes reach, must have tool equipped',
  4133. '[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying',
  4134. '[68] tp me [plr] -- Alternative to goto',
  4135. '[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player',
  4136. '[70] uncbring',
  4137. '[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players',
  4138. '[72] givetool [plr] -- Gives the tool you have equipped to the player',
  4139. '[73] glitch [plr] -- Glitches you and the player, looks very cool',
  4140. '[74] unglitch -- Unglitches you',
  4141. '[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode',
  4142. '[76] explorer -- Loads up DEX',
  4143. '[77] reset -- Resets your character.',
  4144. '[78] anim [id] -- Applies an animation on you, must be created by ROBLOX',
  4145. '[79] animgui -- Loads up Energize animations GUI',
  4146. '[80] savepos -- Saves your current position',
  4147. '[81] loadpos -- Teleports you to your saved position',
  4148. '[82] bang [plr] -- 18+ will not work if you have FE Godmode on',
  4149. '[83] unbang',
  4150. '[84] delcmdbar -- Removes the command bar completely',
  4151. '[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model',
  4152. '[86] shutdown -- Uses harkinians script to shutdown server',
  4153. '[87] respawn -- If grespawn doesnt work you can use respawn',
  4154. '[88] delobj [obj] -- Deletes a certain brick in workspace, client sided',
  4155. '[89] getplrs -- Prints all players in game',
  4156. '[90] deldecal -- Deletes all decals client sided',
  4157. '[91] opfinality -- Loads in my FE GUI Opfinality',
  4158. '[92] remotes -- Prints all remotes in the game in the console when added',
  4159. '[93] noremotes -- Stops printing remotes',
  4160. '[94] tpdefault -- Stops all loop teleports to a player',
  4161. '[95] stopsit -- Will not allow you to sit',
  4162. '[96] gosit -- Allows you to sit',
  4163. '[97] clicktp -- Enables click tp',
  4164. '[98] noclicktp -- Disables click tp',
  4165. '[99] toolson -- If any tools are dropped in the workspace you will automatically get them',
  4166. '[100] toolsoff -- Stops ;toolson',
  4167. '[101] version -- Gets the admin version',
  4168. '[102] state [num] -- Changes your humanoid state, ;unstate to stop.',
  4169. '[103] gravity [num] -- Changes workspace gravity default is 196.2',
  4170. '[104] pgs -- Checks if the game has PGSPhysicsSolverEnabled enabled',
  4171. '[105] clickdel -- Delete any block you press q on, client sided',
  4172. '[106] noclickdel -- Stops clickdel',
  4173. '[107] looprhats -- Loop removes mesh of your hats/loop block hats',
  4174. '[108] unlooprhats -- Stops loop removing mesh',
  4175. '[109] looprtool -- Loop removes mesh of your tool/loop block tools',
  4176. '[110] unlooprtool -- Stops loop removing mesh',
  4177. '[111] givealltools [plr] -- Gives all the tools you have in your backpack to the player',
  4178. '[112] age [plr] -- Makes you chat the account age of the player',
  4179. '[113] id [plr] -- Makes you chat the account ID of the player',
  4180. '[114] .age [plr] -- Privately shows you the account age of the player',
  4181. '[115] .id [plr] -- Privately shows you the account ID of the player',
  4182. '[116] gameid -- Shows the game ID',
  4183. '[117] removeinvis -- Removes all invisible walls/parts, client sided',
  4184. '[118] removefog -- Removes fog, client sided',
  4185. '[119] disable -- Disables your character by removing humanoid',
  4186. '[120] enable -- Enables your character by adding humanoid',
  4187. '[121] prefix [key] -- Changes the prefix used, default is ;',
  4188. '[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.',
  4189. '[123] flyspeed [num] -- Change your fly speed, default is 1',
  4190. '[124] carpet [plr] -- Makes you a carpet for a player, will not work if FE Godmode is on',
  4191. '[125] uncarpet -- Stops carpet player',
  4192. '[126] stare [plr] -- Turns your character to stare at another player',
  4193. '[127] unstare -- Stops stare player',
  4194. '[128] logchat -- Logs all chat (including /e and whispers) of all players',
  4195. '[129] unlogchat -- Disables logchat',
  4196. '[130] fixcam -- Fixes/resets your camera',
  4197. '[131] unstate -- Stops changing state',
  4198. }
  4199. speedget = 1
  4200.  
  4201. lplayer = game:GetService("Players").LocalPlayer
  4202.  
  4203. lplayer.CharacterAdded:Connect(function(character)
  4204. spin = false
  4205. flying = false
  4206. staring = false
  4207. banpl = false
  4208. end)
  4209.  
  4210. function change()
  4211. prefix = prefix
  4212. speedfly = speedfly
  4213. end
  4214.  
  4215. function GetPlayer(String) -- Credit to Timeless/xFunnieuss
  4216. local Found = {}
  4217. local strl = String:lower()
  4218. if strl == "all" then
  4219. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4220. table.insert(Found,v)
  4221. end
  4222. elseif strl == "others" then
  4223. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4224. if v.Name ~= lplayer.Name then
  4225. table.insert(Found,v)
  4226. end
  4227. end
  4228. elseif strl == "me" then
  4229. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4230. if v.Name == lplayer.Name then
  4231. table.insert(Found,v)
  4232. end
  4233. end
  4234. else
  4235. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4236. if v.Name:lower():sub(1, #String) == String:lower() then
  4237. table.insert(Found,v)
  4238. end
  4239. end
  4240. end
  4241. return Found
  4242. end
  4243.  
  4244. local Mouse = lplayer:GetMouse()
  4245.  
  4246. spin = false
  4247. followed = false
  4248. traill = false
  4249. noclip = false
  4250. annoying = false
  4251. hwalk = false
  4252. droppinghats = false
  4253. droppingtools = false
  4254. flying = false
  4255. spamdelay = 1
  4256. spamming = false
  4257. spammingpm = false
  4258. cbringing = false
  4259. remotes = true
  4260. added = true
  4261. binds = false
  4262. stopsitting = false
  4263. clickgoto = false
  4264. gettingtools = false
  4265. removingmeshhats = false
  4266. removingmeshtool = false
  4267. clickdel = false
  4268. staring = false
  4269. chatlogs = false
  4270. banpl = false
  4271. changingstate = false
  4272. statechosen = 0
  4273.  
  4274. adminversion = "Reviz Admin by illremember, Version 2.0"
  4275.  
  4276. flying = false
  4277. speedfly = 1
  4278.  
  4279. function plrchat(plr, chat)
  4280. print(plr.Name..": "..tick().."\n"..chat)
  4281. end
  4282.  
  4283. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4284. v.Chatted:connect(function(chat)
  4285. if chatlogs then
  4286. plrchat(v, chat)
  4287. end
  4288. end)
  4289. end
  4290. game:GetService("Players").PlayerAdded:connect(function(plr)
  4291. plr.Chatted:connect(function(chat)
  4292. if chatlogs then
  4293. plrchat(plr, chat)
  4294. end
  4295. end)
  4296. end)
  4297.  
  4298.  
  4299. local ScreenGui = Instance.new("ScreenGui")
  4300. local Frame = Instance.new("Frame")
  4301. local CMDBAR = Instance.new("TextBox")
  4302. ScreenGui.Parent = game:GetService("CoreGui")
  4303. Frame.Parent = ScreenGui
  4304. Frame.BackgroundColor3 = Color3.new(0.3, 0.1, 0.1)
  4305. Frame.BackgroundTransparency = 0.3
  4306. Frame.Position = UDim2.new(0.5, 0, 0, 10)
  4307. Frame.Size = UDim2.new(0, 200, 0, 40)
  4308. Frame.Active = true
  4309. Frame.Draggable = true
  4310. CMDBAR.Name = "CMDBAR"
  4311. CMDBAR.Parent = Frame
  4312. CMDBAR.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  4313. CMDBAR.BackgroundTransparency = 0.20000000298023
  4314. CMDBAR.Size = UDim2.new(0, 180, 0, 20)
  4315. CMDBAR.Position = UDim2.new(0.05, 0, 0.25, 0)
  4316. CMDBAR.Font = Enum.Font.SourceSansLight
  4317. CMDBAR.FontSize = Enum.FontSize.Size14
  4318. CMDBAR.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  4319. CMDBAR.TextScaled = true
  4320. CMDBAR.TextSize = 14
  4321. CMDBAR.TextWrapped = true
  4322. CMDBAR.Text = "Press ; to type, Enter to execute"
  4323.  
  4324. local CMDS = Instance.new("ScreenGui")
  4325. local CMDSFRAME = Instance.new("Frame")
  4326. local ScrollingFrame = Instance.new("ScrollingFrame")
  4327. local TextLabel = Instance.new("TextLabel")
  4328. local closegui = Instance.new("TextButton")
  4329. CMDS.Name = "CMDS"
  4330. CMDS.Parent = game:GetService("CoreGui")
  4331. CMDSFRAME.Name = "CMDSFRAME"
  4332. CMDSFRAME.Parent = CMDS
  4333. CMDSFRAME.Active = true
  4334. CMDSFRAME.BackgroundColor3 = Color3.new(0.223529, 0.231373, 0.309804)
  4335. CMDSFRAME.BorderSizePixel = 0
  4336. CMDSFRAME.Draggable = true
  4337. CMDSFRAME.Position = UDim2.new(0, 315, 0, 100)
  4338. CMDSFRAME.Size = UDim2.new(0, 275, 0, 275)
  4339. CMDSFRAME.Visible = false
  4340. ScrollingFrame.Parent = CMDSFRAME
  4341. ScrollingFrame.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.203922)
  4342. ScrollingFrame.BorderSizePixel = 0
  4343. ScrollingFrame.Position = UDim2.new(0, 0, 0.0729999989, 0)
  4344. ScrollingFrame.Size = UDim2.new(1.04999995, 0, 0.92900002, 0)
  4345. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
  4346. TextLabel.Parent = ScrollingFrame
  4347. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  4348. TextLabel.BackgroundTransparency = 1
  4349. TextLabel.Size = UDim2.new(0.930000007, 0, 1, 0)
  4350. TextLabel.Font = Enum.Font.SourceSans
  4351. TextLabel.FontSize = Enum.FontSize.Size18
  4352. 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."
  4353. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  4354. TextLabel.TextSize = 15
  4355. TextLabel.TextWrapped = true
  4356. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  4357. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  4358. closegui.Name = "closegui"
  4359. closegui.Parent = CMDSFRAME
  4360. closegui.BackgroundColor3 = Color3.new(0.890196, 0.223529, 0.0588235)
  4361. closegui.BorderSizePixel = 0
  4362. closegui.Position = UDim2.new(0.995000005, 0, 0, 0)
  4363. closegui.Size = UDim2.new(0.0545952693, 0, 0.0728644878, 0)
  4364. closegui.Font = Enum.Font.SourceSansBold
  4365. closegui.FontSize = Enum.FontSize.Size24
  4366. closegui.Text = "X"
  4367. closegui.TextColor3 = Color3.new(1, 1, 1)
  4368. closegui.TextSize = 20
  4369.  
  4370. closegui.MouseButton1Click:connect(function()
  4371. CMDSFRAME.Visible = false
  4372. end)
  4373.  
  4374. game:GetService('RunService').Stepped:connect(function()
  4375. if spin then
  4376. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[spinplr.Name].Character.HumanoidRootPart.CFrame
  4377. end
  4378. if followed then
  4379. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * -5
  4380. end
  4381. if traill then
  4382. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * 5
  4383. end
  4384. if annoying then
  4385. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[annplr.Name].Character.HumanoidRootPart.CFrame
  4386. end
  4387. if hwalk then
  4388. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[hdwplr.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0, 4, 0)
  4389. end
  4390. if staring then
  4391. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(lplayer.Character.Torso.Position, game:GetService("Players")[stareplr.Name].Character.Torso.Position)
  4392. end
  4393. end)
  4394. game:GetService('RunService').Stepped:connect(function()
  4395. if noclip then
  4396. if lplayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  4397. lplayer.Character.Head.CanCollide = false
  4398. lplayer.Character.Torso.CanCollide = false
  4399. lplayer.Character["Left Leg"].CanCollide = false
  4400. lplayer.Character["Right Leg"].CanCollide = false
  4401. else
  4402. lplayer.Character.Humanoid:ChangeState(11)
  4403. end
  4404. end
  4405. if changingstate then
  4406. lplayer.Character.Humanoid:ChangeState(statechosen)
  4407. end
  4408. end)
  4409. game:GetService('RunService').Stepped:connect(function()
  4410. if droppinghats then
  4411. for i,v in pairs(lplayer.Character:GetChildren()) do
  4412. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  4413. v.Parent = workspace
  4414. end
  4415. end
  4416. end
  4417. if droppingtools then
  4418. for i,v in pairs(lplayer.Character:GetChildren()) do
  4419. if (v:IsA("Tool")) then
  4420. v.Parent = workspace
  4421. end
  4422. end
  4423. end
  4424. if removingmeshhats then
  4425. for i,v in pairs(lplayer.Character:GetChildren()) do
  4426. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  4427. v.Handle.Mesh:Destroy()
  4428. end
  4429. end
  4430. end
  4431. if removingmeshtool then
  4432. for i,v in pairs(lplayer.Character:GetChildren()) do
  4433. if (v:IsA("Tool")) then
  4434. v.Handle.Mesh:Destroy()
  4435. end
  4436. end
  4437. end
  4438. end)
  4439. game:GetService('RunService').Stepped:connect(function()
  4440. if banpl then
  4441. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[bplrr].Character.HumanoidRootPart.CFrame
  4442. end
  4443. end)
  4444. game:GetService('RunService').Stepped:connect(function()
  4445. if stopsitting then
  4446. lplayer.Character.Humanoid.Sit = false
  4447. end
  4448. end)
  4449.  
  4450. plr = lplayer
  4451. hum = plr.Character.HumanoidRootPart
  4452. mouse = plr:GetMouse()
  4453. mouse.KeyDown:connect(function(key)
  4454. if key == "e" then
  4455. if mouse.Target then
  4456. if clickgoto then
  4457. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  4458. elseif clickdel then
  4459. mouse.Target:Destroy()
  4460. end
  4461. end
  4462. end
  4463. end)
  4464.  
  4465. game:GetService("Workspace").ChildAdded:connect(function(part)
  4466. if gettingtools then
  4467. if part:IsA("Tool") then
  4468. part.Handle.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4469. end
  4470. end
  4471. end)
  4472.  
  4473. lplayer.Chatted:Connect(function(msg)
  4474. if string.sub(msg, 1, 6) == (prefix.."kill ") then
  4475. if string.sub(msg, 7) == "me" then
  4476. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  4477. else
  4478. for i,v in pairs(GetPlayer(string.sub(msg, 7)))do
  4479. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4480. lplayer.Character.Humanoid.Name = 1
  4481. local l = lplayer.Character["1"]:Clone()
  4482. l.Parent = lplayer.Character
  4483. l.Name = "Humanoid"
  4484. wait(0.1)
  4485. lplayer.Character["1"]:Destroy()
  4486. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4487. lplayer.Character.Animate.Disabled = true
  4488. wait(0.1)
  4489. lplayer.Character.Animate.Disabled = false
  4490. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4491. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4492. lplayer.Character.Humanoid:EquipTool(v)
  4493. end
  4494. local function tp(player,player2)
  4495. local char1,char2=player.Character,player2.Character
  4496. if char1 and char2 then
  4497. char1:MoveTo(char2.Head.Position)
  4498. end
  4499. end
  4500. wait(0.1)
  4501. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4502. wait(0.2)
  4503. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4504. wait(0.5)
  4505. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  4506. wait(0.7)
  4507. tp(lplayer,game:GetService("Players")[v.Name])
  4508. wait(0.7)
  4509. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4510. game:GetService("StarterGui"):SetCore("SendNotification", {
  4511. Title = "Tools needed!";
  4512. Text = "You need a tool in your backpack for this command!";
  4513. })
  4514. end
  4515. end
  4516. end
  4517. if string.sub(msg, 1, 7) == (prefix.."bring ") then
  4518. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  4519. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4520. lplayer.Character.Humanoid.Name = 1
  4521. local l = lplayer.Character["1"]:Clone()
  4522. l.Parent = lplayer.Character
  4523. l.Name = "Humanoid"
  4524. wait(0.1)
  4525. lplayer.Character["1"]:Destroy()
  4526. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4527. lplayer.Character.Animate.Disabled = true
  4528. wait(0.1)
  4529. lplayer.Character.Animate.Disabled = false
  4530. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4531. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4532. lplayer.Character.Humanoid:EquipTool(v)
  4533. end
  4534. local function tp(player,player2)
  4535. local char1,char2=player.Character,player2.Character
  4536. if char1 and char2 then
  4537. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  4538. end
  4539. end
  4540. local function getout(player,player2)
  4541. local char1,char2=player.Character,player2.Character
  4542. if char1 and char2 then
  4543. char1:MoveTo(char2.Head.Position)
  4544. end
  4545. end
  4546. tp(game:GetService("Players")[v.Name], lplayer)
  4547. wait(0.2)
  4548. tp(game:GetService("Players")[v.Name], lplayer)
  4549. wait(0.5)
  4550. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4551. wait(0.5)
  4552. getout(lplayer, game:GetService("Players")[v.Name])
  4553. wait(0.3)
  4554. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4555. game:GetService("StarterGui"):SetCore("SendNotification", {
  4556. Title = "Tools needed!";
  4557. Text = "You need a tool in your backpack for this command!";
  4558. })
  4559. end
  4560. end
  4561. if string.sub(msg, 1, 6) == (prefix.."spin ") then
  4562. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  4563. lplayer.Character.Humanoid.Name = 1
  4564. local l = lplayer.Character["1"]:Clone()
  4565. l.Parent = lplayer.Character
  4566. l.Name = "Humanoid"
  4567. wait(0.1)
  4568. lplayer.Character["1"]:Destroy()
  4569. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4570. lplayer.Character.Animate.Disabled = true
  4571. wait(0.1)
  4572. lplayer.Character.Animate.Disabled = false
  4573. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4574. lplayer.Character.Animate.Disabled = false
  4575. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4576. lplayer.Character.Humanoid:EquipTool(v)
  4577. end
  4578. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4579. spinplr = v
  4580. wait(0.5)
  4581. spin = true
  4582. game:GetService("StarterGui"):SetCore("SendNotification", {
  4583. Title = "Tools needed!";
  4584. Text = "You need a tool in your backpack for this command!";
  4585. })
  4586. end
  4587. end
  4588. if string.sub(msg, 1, 7) == (prefix.."unspin") then
  4589. spin = false
  4590. end
  4591. if string.sub(msg, 1, 8) == (prefix.."attach ") then
  4592. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  4593. lplayer.Character.Humanoid.Name = 1
  4594. local l = lplayer.Character["1"]:Clone()
  4595. l.Parent = lplayer.Character
  4596. l.Name = "Humanoid"
  4597. wait(0.1)
  4598. lplayer.Character["1"]:Destroy()
  4599. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4600. lplayer.Character.Animate.Disabled = true
  4601. wait(0.1)
  4602. lplayer.Character.Animate.Disabled = false
  4603. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4604. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4605. lplayer.Character.Humanoid:EquipTool(v)
  4606. end
  4607. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4608. wait(0.3)
  4609. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4610. attplr = v
  4611. game:GetService("StarterGui"):SetCore("SendNotification", {
  4612. Title = "Tools needed!";
  4613. Text = "You need a tool in your backpack for this command!";
  4614. })
  4615. end
  4616. end
  4617. if string.sub(msg, 1, 10) == (prefix.."unattach ") then
  4618. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  4619. local function getout(player,player2)
  4620. local char1,char2=player.Character,player2.Character
  4621. if char1 and char2 then
  4622. char1:MoveTo(char2.Head.Position)
  4623. end
  4624. end
  4625. getout(lplayer, game:GetService("Players")[v.Name])
  4626. end
  4627. end
  4628. if string.sub(msg, 1, 8) == (prefix.."follow ") then
  4629. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  4630. followed = true
  4631. flwplr = v
  4632. end
  4633. end
  4634. if string.sub(msg, 1, 9) == (prefix.."unfollow") then
  4635. followed = false
  4636. end
  4637. if string.sub(msg, 1, 10) == (prefix.."freefall ") then
  4638. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  4639. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4640. lplayer.Character.Humanoid.Name = 1
  4641. local l = lplayer.Character["1"]:Clone()
  4642. l.Parent = lplayer.Character
  4643. l.Name = "Humanoid"
  4644. wait(0.1)
  4645. lplayer.Character["1"]:Destroy()
  4646. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4647. lplayer.Character.Animate.Disabled = true
  4648. wait(0.1)
  4649. lplayer.Character.Animate.Disabled = false
  4650. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4651. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4652. lplayer.Character.Humanoid:EquipTool(v)
  4653. end
  4654. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4655. wait(0.2)
  4656. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4657. wait(0.6)
  4658. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4659. wait(0.6)
  4660. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  4661. game:GetService("StarterGui"):SetCore("SendNotification", {
  4662. Title = "Tools needed!";
  4663. Text = "You need a tool in your backpack for this command!";
  4664. })
  4665. end
  4666. end
  4667. if string.sub(msg, 1, 7) == (prefix.."trail ") then
  4668. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  4669. traill = true
  4670. trlplr = v
  4671. end
  4672. end
  4673. if string.sub(msg, 1, 8) == (prefix.."untrail") then
  4674. traill = false
  4675. end
  4676. if string.sub(msg, 1, 7) == (prefix.."orbit ") then
  4677. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  4678. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4679. else
  4680. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  4681. local o = Instance.new("RocketPropulsion")
  4682. o.Parent = lplayer.Character.HumanoidRootPart
  4683. o.Name = "Orbit"
  4684. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  4685. o:Fire()
  4686. noclip = true
  4687. end
  4688. end
  4689. end
  4690. if string.sub(msg, 1, 8) == (prefix.."unorbit") then
  4691. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  4692. noclip = false
  4693. end
  4694. if string.sub(msg, 1, 7) == (prefix.."fling ") then
  4695. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  4696. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4697. else
  4698. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  4699. local y = Instance.new("RocketPropulsion")
  4700. y.Parent = lplayer.Character.HumanoidRootPart
  4701. y.CartoonFactor = 1
  4702. y.MaxThrust = 800000
  4703. y.MaxSpeed = 1000
  4704. y.ThrustP = 200000
  4705. y.Name = "Fling"
  4706. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  4707. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  4708. y:Fire()
  4709. noclip = true
  4710. end
  4711. end
  4712. end
  4713. if string.sub(msg, 1, 8) == (prefix.."unfling") then
  4714. noclip = false
  4715. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  4716. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  4717. wait(0.4)
  4718. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  4719. end
  4720. if string.sub(msg, 1, 8) == (prefix.."fecheck") then
  4721. if game:GetService("Workspace").FilteringEnabled == true then
  4722. warn("FE is Enabled (Filtering Enabled)")
  4723. game:GetService("StarterGui"):SetCore("SendNotification", {
  4724. Title = "FE is Enabled";
  4725. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  4726. })
  4727. else
  4728. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  4729. game:GetService("StarterGui"):SetCore("SendNotification", {
  4730. Title = "FE is Disabled";
  4731. Text = "Filtering Disabled. Consider using a different admin script.";
  4732. })
  4733. end
  4734. end
  4735. if string.sub(msg, 1, 6) == (prefix.."void ") then
  4736. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  4737. lplayer.Character.Humanoid.Name = 1
  4738. local l = lplayer.Character["1"]:Clone()
  4739. l.Parent = lplayer.Character
  4740. l.Name = "Humanoid"
  4741. wait(0.1)
  4742. lplayer.Character["1"]:Destroy()
  4743. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4744. lplayer.Character.Animate.Disabled = true
  4745. wait(0.1)
  4746. lplayer.Character.Animate.Disabled = false
  4747. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4748. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4749. lplayer.Character.Humanoid:EquipTool(v)
  4750. end
  4751. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4752. wait(0.2)
  4753. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4754. wait(0.6)
  4755. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  4756. game:GetService("StarterGui"):SetCore("SendNotification", {
  4757. Title = "Tools needed!";
  4758. Text = "You need a tool in your backpack for this command!";
  4759. })
  4760. end
  4761. end
  4762. if string.sub(msg, 1, 7) == (prefix.."noclip") then
  4763. noclip = true
  4764. game:GetService("StarterGui"):SetCore("SendNotification", {
  4765. Title = "Noclip enabled";
  4766. Text = "Type ;clip to disable";
  4767. })
  4768. end
  4769. if string.sub(msg, 1, 5) == (prefix.."clip") then
  4770. noclip = false
  4771. game:GetService("StarterGui"):SetCore("SendNotification", {
  4772. Title = "Noclip disabled";
  4773. Text = "Type ;noclip to enable";
  4774. })
  4775. end
  4776. if string.sub(msg, 1, 7) == (prefix.."speed ") then
  4777. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 8))
  4778. end
  4779. if string.sub(msg, 1, 4) == (prefix.."ws ") then
  4780. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 5))
  4781. end
  4782. if string.sub(msg, 1, 11) == (prefix.."hipheight ") then
  4783. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 12))
  4784. end
  4785. if string.sub(msg, 1, 4) == (prefix.."hh ") then
  4786. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 5))
  4787. end
  4788. if string.sub(msg, 1, 11) == (prefix.."jumppower ") then
  4789. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 12))
  4790. end
  4791. if string.sub(msg, 1, 4) == (prefix.."jp ") then
  4792. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 5))
  4793. end
  4794. if string.sub(msg, 1, 8) == (prefix.."default") then
  4795. lplayer.Character.Humanoid.JumpPower = 50
  4796. lplayer.Character.Humanoid.WalkSpeed = 16
  4797. lplayer.Character.Humanoid.HipHeight = 0
  4798. end
  4799. if string.sub(msg, 1, 7) == (prefix.."annoy ") then
  4800. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  4801. annoying = true
  4802. annplr = v
  4803. end
  4804. end
  4805. if string.sub(msg, 1, 8) == (prefix.."unannoy") then
  4806. annoying = false
  4807. end
  4808. if string.sub(msg, 1, 10) == (prefix.."headwalk ") then
  4809. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  4810. hwalk = true
  4811. hdwplr = v
  4812. end
  4813. end
  4814. if string.sub(msg, 1, 11) == (prefix.."unheadwalk") then
  4815. hwalk = false
  4816. end
  4817. if string.sub(msg, 1, 8) == (prefix.."nolimbs") then
  4818. lplayer.Character["Left Leg"]:Destroy()
  4819. lplayer.Character["Left Arm"]:Destroy()
  4820. lplayer.Character["Right Leg"]:Destroy()
  4821. lplayer.Character["Right Arm"]:Destroy()
  4822. end
  4823. if string.sub(msg, 1, 4) == (prefix.."god") then
  4824. lplayer.Character.Humanoid.Name = 1
  4825. local l = lplayer.Character["1"]:Clone()
  4826. l.Parent = lplayer.Character
  4827. l.Name = "Humanoid"
  4828. wait(0.1)
  4829. lplayer.Character["1"]:Destroy()
  4830. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4831. lplayer.Character.Animate.Disabled = true
  4832. wait(0.1)
  4833. lplayer.Character.Animate.Disabled = false
  4834. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4835. game:GetService("StarterGui"):SetCore("SendNotification", {
  4836. Title = "FE Godmode enabled";
  4837. Text = "Use ;grespawn or ;respawn to remove";
  4838. })
  4839. end
  4840. if string.sub(msg, 1, 9) == (prefix.."drophats") then
  4841. for i,v in pairs(lplayer.Character:GetChildren()) do
  4842. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  4843. v.Parent = workspace
  4844. end
  4845. end
  4846. end
  4847. if string.sub(msg, 1, 9) == (prefix.."droptool") then
  4848. for i,v in pairs(lplayer.Character:GetChildren()) do
  4849. if (v:IsA("Tool")) then
  4850. v.Parent = workspace
  4851. end
  4852. end
  4853. end
  4854. if string.sub(msg, 1, 10) == (prefix.."loopdhats") then
  4855. droppinghats = true
  4856. game:GetService("StarterGui"):SetCore("SendNotification", {
  4857. Title = "Loop Drop Enabled";
  4858. Text = "Type ;unloopdhats to disable";
  4859. })
  4860. end
  4861. if string.sub(msg, 1, 12) == (prefix.."unloopdhats") then
  4862. droppinghats = false
  4863. game:GetService("StarterGui"):SetCore("SendNotification", {
  4864. Title = "Loop Drop Disabled";
  4865. Text = "Type ;loopdhats to enable.";
  4866. })
  4867. end
  4868. if string.sub(msg, 1, 10) == (prefix.."loopdtool") then
  4869. droppingtools = true
  4870. game:GetService("StarterGui"):SetCore("SendNotification", {
  4871. Title = "Loop Drop Enabled";
  4872. Text = "Type ;unloopdtool to disable";
  4873. })
  4874. end
  4875. if string.sub(msg, 1, 12) == (prefix.."unloopdtool") then
  4876. droppingtools = false
  4877. game:GetService("StarterGui"):SetCore("SendNotification", {
  4878. Title = "Loop Drop Disabled";
  4879. Text = "Type ;loopdtool to enable.";
  4880. })
  4881. end
  4882. if string.sub(msg, 1, 10) == (prefix.."invisible") then -- Credit to Timeless
  4883. Local = game:GetService('Players').LocalPlayer
  4884. Char = Local.Character
  4885. touched,tpdback = false, false
  4886. box = Instance.new('Part',workspace)
  4887. box.Anchored = true
  4888. box.CanCollide = true
  4889. box.Size = Vector3.new(10,1,10)
  4890. box.Position = Vector3.new(0,10000,0)
  4891. box.Touched:connect(function(part)
  4892. if (part.Parent.Name == Local.Name) then
  4893. if touched == false then
  4894. touched = true
  4895. function apply()
  4896. if script.Disabled ~= true then
  4897. no = Char.HumanoidRootPart:Clone()
  4898. wait(.25)
  4899. Char.HumanoidRootPart:Destroy()
  4900. no.Parent = Char
  4901. Char:MoveTo(loc)
  4902. touched = false
  4903. end end
  4904. if Char then
  4905. apply()
  4906. end
  4907. end
  4908. end
  4909. end)
  4910. repeat wait() until Char
  4911. loc = Char.HumanoidRootPart.Position
  4912. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  4913. game:GetService("StarterGui"):SetCore("SendNotification", {
  4914. Title = "Invisibility enabled!";
  4915. Text = "Reset or use ;respawn to remove.";
  4916. })
  4917. end
  4918. if string.sub(msg, 1, 6) == (prefix.."view ") then
  4919. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  4920. if game:GetService("Players")[v.Name].Character.Humanoid then
  4921. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  4922. else
  4923. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  4924. end
  4925. end
  4926. end
  4927. if string.sub(msg, 1, 7) == (prefix.."unview") then
  4928. if lplayer.Character.Humanoid then
  4929. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  4930. else
  4931. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  4932. end
  4933. end
  4934. if string.sub(msg, 1, 6) == (prefix.."goto ") then
  4935. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  4936. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4937. end
  4938. end
  4939. if string.sub(msg, 1, 4) == (prefix.."fly") then
  4940. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  4941. repeat wait() until Mouse
  4942.  
  4943. local T = lplayer.Character.HumanoidRootPart
  4944. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  4945. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  4946. local SPEED = speedget
  4947.  
  4948. local function fly()
  4949. flying = true
  4950. local BG = Instance.new('BodyGyro', T)
  4951. local BV = Instance.new('BodyVelocity', T)
  4952. BG.P = 9e4
  4953. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  4954. BG.cframe = T.CFrame
  4955. BV.velocity = Vector3.new(0, 0.1, 0)
  4956. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  4957. spawn(function()
  4958. repeat wait()
  4959. lplayer.Character.Humanoid.PlatformStand = true
  4960. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  4961. SPEED = 50
  4962. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  4963. SPEED = 0
  4964. end
  4965. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  4966. 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
  4967. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  4968. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  4969. 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
  4970. else
  4971. BV.velocity = Vector3.new(0, 0.1, 0)
  4972. end
  4973. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  4974. until not flying
  4975. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  4976. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  4977. SPEED = 0
  4978. BG:destroy()
  4979. BV:destroy()
  4980. lplayer.Character.Humanoid.PlatformStand = false
  4981. end)
  4982. end
  4983. Mouse.KeyDown:connect(function(KEY)
  4984. if KEY:lower() == 'w' then
  4985. CONTROL.F = speedfly
  4986. elseif KEY:lower() == 's' then
  4987. CONTROL.B = -speedfly
  4988. elseif KEY:lower() == 'a' then
  4989. CONTROL.L = -speedfly
  4990. elseif KEY:lower() == 'd' then
  4991. CONTROL.R = speedfly
  4992. end
  4993. end)
  4994. Mouse.KeyUp:connect(function(KEY)
  4995. if KEY:lower() == 'w' then
  4996. CONTROL.F = 0
  4997. elseif KEY:lower() == 's' then
  4998. CONTROL.B = 0
  4999. elseif KEY:lower() == 'a' then
  5000. CONTROL.L = 0
  5001. elseif KEY:lower() == 'd' then
  5002. CONTROL.R = 0
  5003. end
  5004. end)
  5005. fly()
  5006. end
  5007. if string.sub(msg, 1, 6) == (prefix.."unfly") then
  5008. flying = false
  5009. lplayer.Character.Humanoid.PlatformStand = false
  5010. end
  5011. if string.sub(msg, 1, 6) == (prefix.."chat ") then
  5012. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(msg, 7)), "All")
  5013. end
  5014. if string.sub(msg, 1, 6) == (prefix.."spam ") then
  5015. spamtext = (string.sub(msg, 7))
  5016. spamming = true
  5017. end
  5018. if string.sub(msg, 1, 7) == (prefix.."unspam") then
  5019. spamming = false
  5020. end
  5021. if string.sub(msg, 1, 10) == (prefix.."spamwait ") then
  5022. spamdelay = (string.sub(msg, 11))
  5023. end
  5024. if string.sub(msg, 1, 8) == (prefix.."pmspam ") then
  5025. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  5026. pmspammed = v.Name
  5027. spammingpm = true
  5028. end
  5029. end
  5030. if string.sub(msg, 1, 9) == (prefix.."unpmspam") then
  5031. spammingpm = false
  5032. end
  5033. if string.sub(msg, 1, 9) == (prefix.."cfreeze ") then
  5034. for i,v in pairs(GetPlayer(string.sub(msg, 10))) do
  5035. v.Character["Left Leg"].Anchored = true
  5036. v.Character["Left Arm"].Anchored = true
  5037. v.Character["Right Leg"].Anchored = true
  5038. v.Character["Right Arm"].Anchored = true
  5039. v.Character.Torso.Anchored = true
  5040. v.Character.Head.Anchored = true
  5041. end
  5042. end
  5043. if string.sub(msg, 1, 11) == (prefix.."uncfreeze ") then
  5044. for i,v in pairs(GetPlayer(string.sub(msg, 12))) do
  5045. v.Character["Left Leg"].Anchored = false
  5046. v.Character["Left Arm"].Anchored = false
  5047. v.Character["Right Leg"].Anchored = false
  5048. v.Character["Right Arm"].Anchored = false
  5049. v.Character.Torso.Anchored = false
  5050. v.Character.Head.Anchored = false
  5051. end
  5052. end
  5053. if string.sub(msg, 1, 9) == (prefix.."unlockws") then
  5054. local a = game:GetService("Workspace"):getChildren()
  5055. for i = 1, #a do
  5056. if a[i].className == "Part" then
  5057. a[i].Locked = false
  5058. elseif a[i].className == "Model" then
  5059. local r = a[i]:getChildren()
  5060. for i = 1, #r do
  5061. if r[i].className == "Part" then
  5062. r[i].Locked = false
  5063. end
  5064. end
  5065. end
  5066. end
  5067. game:GetService("StarterGui"):SetCore("SendNotification", {
  5068. Title = "Success!";
  5069. Text = "Workspace unlocked. Use ;lockws to lock.";
  5070. })
  5071. end
  5072. if string.sub(msg, 1, 7) == (prefix.."lockws") then
  5073. local a = game:GetService("Workspace"):getChildren()
  5074. for i = 1, #a do
  5075. if a[i].className == "Part" then
  5076. a[i].Locked = true
  5077. elseif a[i].className == "Model" then
  5078. local r = a[i]:getChildren()
  5079. for i = 1, #r do
  5080. if r[i].className == "Part" then
  5081. r[i].Locked = true
  5082. end
  5083. end
  5084. end
  5085. end
  5086. end
  5087. if string.sub(msg, 1, 7) == (prefix.."btools") then
  5088. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  5089. Clone_T.BinType = "Clone"
  5090. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  5091. Destruct.BinType = "Hammer"
  5092. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  5093. Hold_T.BinType = "Grab"
  5094. end
  5095. if string.sub(msg, 1, 7) == (prefix.."pstand") then
  5096. lplayer.Character.Humanoid.PlatformStand = true
  5097. end
  5098. if string.sub(msg, 1, 9) == (prefix.."unpstand") then
  5099. lplayer.Character.Humanoid.PlatformStand = false
  5100. end
  5101. if string.sub(msg, 1, 10) == (prefix.."blockhead") then
  5102. lplayer.Character.Head.Mesh:Destroy()
  5103. end
  5104. if string.sub(msg, 1, 4) == (prefix.."sit") then
  5105. lplayer.Character.Humanoid.Sit = true
  5106. end
  5107. if string.sub(msg, 1, 10) == (prefix.."bringobj ") then
  5108. local function bringobjw()
  5109. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  5110. if obj.Name == (string.sub(msg, 11)) then
  5111. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  5112. obj.CanCollide = false
  5113. obj.Transparency = 0.7
  5114. wait()
  5115. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  5116. wait()
  5117. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  5118. wait()
  5119. obj.CFrame = lplayer.Character["Head"].CFrame
  5120. end
  5121. end
  5122. end
  5123. while wait() do
  5124. bringobjw()
  5125. end
  5126. game:GetService("StarterGui"):SetCore("SendNotification", {
  5127. Title = "BringObj";
  5128. Text = "BringObj enabled.";
  5129. })
  5130. end
  5131. if string.sub(msg, 1, 7) == (prefix.."wsvis ") then
  5132. vis = (string.sub(msg, 8))
  5133. local a = game:GetService("Workspace"):GetDescendants()
  5134. for i = 1, #a do
  5135. if a[i].className == "Part" then
  5136. a[i].Transparency = vis
  5137. elseif a[i].className == "Model" then
  5138. local r = a[i]:getChildren()
  5139. for i = 1, #r do
  5140. if r[i].className == "Part" then
  5141. r[i].Transparency = vis
  5142. end
  5143. end
  5144. end
  5145. end
  5146. end
  5147. if string.sub(msg, 1, 11) == (prefix.."hypertotal") then
  5148. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  5149. game:GetService("StarterGui"):SetCore("SendNotification", {
  5150. Title = "Success!";
  5151. Text = "HyperTotal GUI Loaded!";
  5152. })
  5153. end
  5154. if string.sub(msg, 1, 5) == (prefix.."cmds") then
  5155. CMDSFRAME.Visible = true
  5156. end
  5157. if string.sub(msg, 1, 10) == (prefix.."rmeshhats") then
  5158. for i,v in pairs(lplayer.Character:GetChildren()) do
  5159. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  5160. v.Handle.Mesh:Destroy()
  5161. end
  5162. end
  5163. end
  5164. if string.sub(msg, 1, 10) == (prefix.."blockhats") then
  5165. for i,v in pairs(lplayer.Character:GetChildren()) do
  5166. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  5167. v.Handle.Mesh:Destroy()
  5168. end
  5169. end
  5170. end
  5171. if string.sub(msg, 1, 10) == (prefix.."rmeshtool") then
  5172. for i,v in pairs(lplayer.Character:GetChildren()) do
  5173. if (v:IsA("Tool")) then
  5174. v.Handle.Mesh:Destroy()
  5175. end
  5176. end
  5177. end
  5178. if string.sub(msg, 1, 10) == (prefix.."blocktool") then
  5179. for i,v in pairs(lplayer.Character:GetChildren()) do
  5180. if (v:IsA("Tool")) then
  5181. v.Handle.Mesh:Destroy()
  5182. end
  5183. end
  5184. end
  5185. if string.sub(msg, 1, 8) == (prefix.."spinner") then
  5186. local p = Instance.new("RocketPropulsion")
  5187. p.Parent = lplayer.Character.HumanoidRootPart
  5188. p.Name = "Spinner"
  5189. p.Target = lplayer.Character["Left Arm"]
  5190. p:Fire()
  5191. game:GetService("StarterGui"):SetCore("SendNotification", {
  5192. Title = "Spinner enabled";
  5193. Text = "Type ;nospinner to disable.";
  5194. })
  5195. end
  5196. if string.sub(msg, 1, 10) == (prefix.."nospinner") then
  5197. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  5198. end
  5199. if string.sub(msg, 1, 7) == (prefix.."reachd") then
  5200. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  5201. if v:isA("Tool") then
  5202. local a = Instance.new("SelectionBox",v.Handle)
  5203. a.Adornee = v.Handle
  5204. v.Handle.Size = Vector3.new(0.5,0.5,60)
  5205. v.GripPos = Vector3.new(0,0,0)
  5206. lplayer.Character.Humanoid:UnequipTools()
  5207. end
  5208. end
  5209. game:GetService("StarterGui"):SetCore("SendNotification", {
  5210. Title = "Reach applied!";
  5211. Text = "Applied to equipped sword. Use ;noreach to disable.";
  5212. })
  5213. end
  5214. if string.sub(msg, 1, 7) == (prefix.."reach ") then
  5215. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  5216. if v:isA("Tool") then
  5217. handleSize = v.Handle.Size
  5218. wait()
  5219. local a = Instance.new("SelectionBox",v.Handle)
  5220. a.Name = "a"
  5221. a.Adornee = v.Handle
  5222. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(msg, 8)))
  5223. v.GripPos = Vector3.new(0,0,0)
  5224. lplayer.Character.Humanoid:UnequipTools()
  5225. end
  5226. end
  5227. game:GetService("StarterGui"):SetCore("SendNotification", {
  5228. Title = "Reach applied!";
  5229. Text = "Applied to equipped sword. Use ;noreach to disable.";
  5230. })
  5231. end
  5232. if string.sub(msg, 1, 8) == (prefix.."noreach") then
  5233. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  5234. if v:isA("Tool") then
  5235. v.Handle.a:Destroy()
  5236. v.Handle.Size = handleSize
  5237. end
  5238. end
  5239. game:GetService("StarterGui"):SetCore("SendNotification", {
  5240. Title = "Reach removed!";
  5241. Text = "Removed reach from equipped sword.";
  5242. })
  5243. end
  5244. if string.sub(msg, 1, 7) == (prefix.."rkill ") then
  5245. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  5246. lplayer.Character.Humanoid.Name = 1
  5247. local l = lplayer.Character["1"]:Clone()
  5248. l.Parent = lplayer.Character
  5249. l.Name = "Humanoid"
  5250. wait(0.1)
  5251. lplayer.Character["1"]:Destroy()
  5252. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5253. lplayer.Character.Animate.Disabled = true
  5254. wait(0.1)
  5255. lplayer.Character.Animate.Disabled = false
  5256. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5257. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5258. lplayer.Character.Humanoid:EquipTool(v)
  5259. end
  5260. wait(0.1)
  5261. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5262. wait(0.2)
  5263. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5264. wait(0.5)
  5265. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  5266. game:GetService("StarterGui"):SetCore("SendNotification", {
  5267. Title = "Tools needed!";
  5268. Text = "You need a tool in your backpack for this command!";
  5269. })
  5270. end
  5271. end
  5272. if string.sub(msg, 1, 7) == (prefix.."tp me ") then
  5273. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  5274. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5275. end
  5276. end
  5277. if string.sub(msg, 1, 8) == (prefix.."cbring ") then
  5278. if (string.sub(msg, 9)) == "all" or (string.sub(msg, 9)) == "All" or (string.sub(msg, 9)) == "ALL" then
  5279. cbringall = true
  5280. else
  5281. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  5282. brplr = v.Name
  5283. end
  5284. end
  5285. cbring = true
  5286. end
  5287. if string.sub(msg, 1, 9) == (prefix.."uncbring") then
  5288. cbring = false
  5289. cbringall = false
  5290. end
  5291. if string.sub(msg, 1, 6) == (prefix.."swap ") then
  5292. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  5293. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5294. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  5295. lplayer.Character.Humanoid.Name = 1
  5296. local l = lplayer.Character["1"]:Clone()
  5297. l.Parent = lplayer.Character
  5298. l.Name = "Humanoid"
  5299. wait(0.1)
  5300. lplayer.Character["1"]:Destroy()
  5301. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5302. lplayer.Character.Animate.Disabled = true
  5303. wait(0.1)
  5304. lplayer.Character.Animate.Disabled = false
  5305. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5306. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5307. lplayer.Character.Humanoid:EquipTool(v)
  5308. end
  5309. local function tp(player,player2)
  5310. local char1,char2=player.Character,player2.Character
  5311. if char1 and char2 then
  5312. char1:MoveTo(char2.Head.Position)
  5313. end
  5314. end
  5315. wait(0.1)
  5316. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5317. wait(0.2)
  5318. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5319. wait(0.5)
  5320. lplayer.Character.HumanoidRootPart.CFrame = NOW
  5321. wait(0.6)
  5322. tp(lplayer, game:GetService("Players")[v.Name])
  5323. wait(0.4)
  5324. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  5325. game:GetService("StarterGui"):SetCore("SendNotification", {
  5326. Title = "Tools needed!";
  5327. Text = "You need a tool in your backpack for this command!";
  5328. })
  5329. end
  5330. end
  5331. if string.sub(msg, 1, 8) == (prefix.."glitch ") then
  5332. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  5333. lplayer.Character.Humanoid.Name = 1
  5334. local l = lplayer.Character["1"]:Clone()
  5335. l.Parent = lplayer.Character
  5336. l.Name = "Humanoid"
  5337. wait(0.1)
  5338. lplayer.Character["1"]:Destroy()
  5339. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5340. lplayer.Character.Animate.Disabled = true
  5341. wait(0.1)
  5342. lplayer.Character.Animate.Disabled = false
  5343. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5344. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5345. lplayer.Character.Humanoid:EquipTool(v)
  5346. end
  5347. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  5348. wait(0.3)
  5349. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  5350. wait(0.4)
  5351. b = Instance.new("BodyForce")
  5352. b.Parent = lplayer.Character.HumanoidRootPart
  5353. b.Name = "Glitch"
  5354. b.Force = Vector3.new(100000000,5000,0)
  5355. game:GetService("StarterGui"):SetCore("SendNotification", {
  5356. Title = "Tools needed!";
  5357. Text = "You need a tool in your backpack for this command!";
  5358. })
  5359. end
  5360. end
  5361. if string.sub(msg, 1, 9) == (prefix.."unglitch") then
  5362. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  5363. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  5364. b = Instance.new("BodyForce")
  5365. b.Parent = lplayer.Character.HumanoidRootPart
  5366. b.Name = "unGlitch"
  5367. b.Force = Vector3.new(0,-5000000,0)
  5368. wait(2)
  5369. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  5370. end
  5371. if string.sub(msg, 1, 9) == (prefix.."grespawn") then
  5372. lplayer.Character.Humanoid.Health = 0
  5373. wait(1)
  5374. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  5375. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  5376. end
  5377. if string.sub(msg, 1, 9) == (prefix.."explorer") then
  5378. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  5379. game:GetService("StarterGui"):SetCore("SendNotification", {
  5380. Title = "Success!";
  5381. Text = "DEX Explorer has loaded.";
  5382. })
  5383. end
  5384. if string.sub(msg, 1, 6) == (prefix.."anim ") then
  5385. local Anim = Instance.new("Animation")
  5386. Anim.AnimationId = "rbxassetid://"..(string.sub(msg, 7))
  5387. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  5388. track:Play(.1, 1, 1)
  5389. end
  5390. if string.sub(msg, 1, 8) == (prefix.."animgui") then
  5391. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  5392. game:GetService("StarterGui"):SetCore("SendNotification", {
  5393. Title = "Success!";
  5394. Text = "Energize Animations GUI has loaded.";
  5395. })
  5396. end
  5397. if string.sub(msg, 1, 8) == (prefix.."savepos") then
  5398. saved = lplayer.Character.HumanoidRootPart.CFrame
  5399. game:GetService("StarterGui"):SetCore("SendNotification", {
  5400. Title = "Position Saved";
  5401. Text = "Use ;loadpos to return to saved position.";
  5402. })
  5403. end
  5404. if string.sub(msg, 1, 8) == (prefix.."loadpos") then
  5405. lplayer.Character.HumanoidRootPart.CFrame = saved
  5406. end
  5407. if string.sub(msg, 1, 6) == (prefix.."bang ") then
  5408. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  5409. local Anim2 = Instance.new("Animation")
  5410. Anim2.AnimationId = "rbxassetid://148840371"
  5411. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  5412. track2:Play(.1, 1, 1)
  5413. bplrr = v.Name
  5414. banpl = true
  5415. end
  5416. end
  5417. if string.sub(msg, 1, 7) == (prefix.."unbang") then
  5418. banpl = false
  5419. end
  5420. if string.sub(msg, 1, 10) == (prefix.."bringmod ") then
  5421. local function bringmodw()
  5422. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  5423. if obj.Name == (string.sub(msg, 11)) then
  5424. for i,ch in pairs(obj:GetDescendants()) do
  5425. if (ch:IsA("BasePart")) then
  5426. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  5427. ch.CanCollide = false
  5428. ch.Transparency = 0.7
  5429. wait()
  5430. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  5431. wait()
  5432. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  5433. wait()
  5434. ch.CFrame = lplayer.Character["Head"].CFrame
  5435. end
  5436. end
  5437. end
  5438. end
  5439. end
  5440. while wait() do
  5441. bringmodw()
  5442. end
  5443. game:GetService("StarterGui"):SetCore("SendNotification", {
  5444. Title = "BringMod";
  5445. Text = "BringMod enabled.";
  5446. })
  5447. end
  5448. if string.sub(msg, 1, 8) == (prefix.."respawn") then
  5449. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  5450. local hum = Instance.new('Humanoid', mod)
  5451. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  5452. lplayer.Character = mod
  5453. end
  5454. if string.sub(msg, 1, 9) == (prefix.."shutdown") then
  5455. game:GetService'RunService'.Stepped:Connect(function()
  5456. pcall(function()
  5457. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  5458. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  5459. for _,x in pairs(v.Character.Head:GetChildren()) do
  5460. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  5461. end
  5462. end
  5463. end
  5464. end)
  5465. end)
  5466. game:GetService("StarterGui"):SetCore("SendNotification", {
  5467. Title = "Attempting Shutdown";
  5468. Text = "Shutdown Attempt has begun.";
  5469. })
  5470. end
  5471. if string.sub(msg, 1, 8) == (prefix.."delobj ") then
  5472. objtodel = (string.sub(msg, 9))
  5473. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  5474. if v.Name == objtodel then
  5475. v:Destroy()
  5476. end
  5477. end
  5478. end
  5479. if string.sub(msg, 1, 8) == (prefix.."getplrs") then
  5480. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  5481. print(v)
  5482. end
  5483. game:GetService("StarterGui"):SetCore("SendNotification", {
  5484. Title = "Printed";
  5485. Text = "Players have been printed to console. (F9)";
  5486. })
  5487. end
  5488. if string.sub(msg, 1, 9) == (prefix.."deldecal") then
  5489. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  5490. if (v:IsA("Decal")) then
  5491. v:Destroy()
  5492. end
  5493. end
  5494. end
  5495. if string.sub(msg, 1, 11) == (prefix.."opfinality") then
  5496. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  5497. game:GetService("StarterGui"):SetCore("SendNotification", {
  5498. Title = "Success!";
  5499. Text = "OpFinality GUI has loaded.";
  5500. })
  5501. end
  5502. if string.sub(msg, 1, 8) == (prefix.."remotes") then
  5503. remotes = true
  5504. added = true
  5505. game.DescendantAdded:connect(function(rmt)
  5506. if added == true then
  5507. if remotes == true then
  5508. if rmt:IsA("RemoteEvent") then
  5509. print("A RemoteEvent was added!")
  5510. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  5511. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  5512. end end end
  5513. end)
  5514. game.DescendantAdded:connect(function(rmtfnctn)
  5515. if added == true then
  5516. if remotes == true then
  5517. if rmtfnctn:IsA("RemoteFunction") then
  5518. warn("A RemoteFunction was added!")
  5519. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  5520. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  5521. end end end
  5522. end)
  5523.  
  5524. game.DescendantAdded:connect(function(bndfnctn)
  5525. if added == true then
  5526. if binds == true then
  5527. if bndfnctn:IsA("BindableFunction") then
  5528. print("A BindableFunction was added!")
  5529. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  5530. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  5531. end end end
  5532. end)
  5533.  
  5534. game.DescendantAdded:connect(function(bnd)
  5535. if added == true then
  5536. if binds == true then
  5537. if bnd:IsA("BindableEvent") then
  5538. warn("A BindableEvent was added!")
  5539. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  5540. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  5541. end end end
  5542. end)
  5543.  
  5544.  
  5545. if binds == true then
  5546. for i,v in pairs(game:GetDescendants()) do
  5547. if v:IsA("BindableFunction") then
  5548. print(" game." .. v:GetFullName() .. " | BindableFunction")
  5549. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  5550. end end
  5551. for i,v in pairs(game:GetDescendants()) do
  5552. if v:IsA("BindableEvent") then
  5553. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  5554. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  5555. end end
  5556. else
  5557. print("Off")
  5558. end
  5559. if remotes == true then
  5560. for i,v in pairs(game:GetDescendants()) do
  5561. if v:IsA("RemoteFunction") then
  5562. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  5563. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  5564. end end
  5565. wait()
  5566. for i,v in pairs(game:GetDescendants()) do
  5567. if v:IsA("RemoteEvent") then
  5568. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  5569. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  5570. end end
  5571. else
  5572. print("Off")
  5573. end
  5574. game:GetService("StarterGui"):SetCore("SendNotification", {
  5575. Title = "Printing Remotes";
  5576. Text = "Type ;noremotes to disable.";
  5577. })
  5578. end
  5579. if string.sub(msg, 1, 10) == (prefix.."noremotes") then
  5580. remotes = false
  5581. added = false
  5582. game:GetService("StarterGui"):SetCore("SendNotification", {
  5583. Title = "Printing Remotes Disabled";
  5584. Text = "Type ;remotes to enable.";
  5585. })
  5586. end
  5587. if string.sub(msg, 1, 10) == (prefix.."tpdefault") then
  5588. spin = false
  5589. followed = false
  5590. traill = false
  5591. noclip = false
  5592. annoying = false
  5593. hwalk = false
  5594. cbringing = false
  5595. end
  5596. if string.sub(msg, 1, 8) == (prefix.."stopsit") then
  5597. stopsitting = true
  5598. end
  5599. if string.sub(msg, 1, 6) == (prefix.."gosit") then
  5600. stopsitting = false
  5601. end
  5602. if string.sub(msg, 1, 8) == (prefix.."version") then
  5603. print(adminversion)
  5604. game:GetService("StarterGui"):SetCore("SendNotification", {
  5605. Title = "Version";
  5606. Text = adminversion;
  5607. })
  5608. end
  5609. if string.sub(msg, 1, 8) == (prefix.."clicktp") then
  5610. clickgoto = true
  5611. game:GetService("StarterGui"):SetCore("SendNotification", {
  5612. Title = "Click TP";
  5613. Text = "Press E to teleport to mouse position, ;noclicktp to stop";
  5614. })
  5615. end
  5616. if string.sub(msg, 1, 9) == (prefix.."clickdel") then
  5617. clickdel = true
  5618. game:GetService("StarterGui"):SetCore("SendNotification", {
  5619. Title = "Click Delete";
  5620. Text = "Press E to delete part at mouse, ;noclickdel to stop";
  5621. })
  5622. end
  5623. if string.sub(msg, 1, 11) == (prefix.."noclickdel") then
  5624. clickdel = false
  5625. game:GetService("StarterGui"):SetCore("SendNotification", {
  5626. Title = "Click Delete";
  5627. Text = "Click delete has been disabled.";
  5628. })
  5629. end
  5630. if string.sub(msg, 1, 10) == (prefix.."noclicktp") then
  5631. clickgoto = false
  5632. game:GetService("StarterGui"):SetCore("SendNotification", {
  5633. Title = "Click TP";
  5634. Text = "Click TP has been disabled.";
  5635. })
  5636. end
  5637. if string.sub(msg, 1, 8) == (prefix.."toolson") then
  5638. gettingtools = true
  5639. game:GetService("StarterGui"):SetCore("SendNotification", {
  5640. Title = "Tools Enabled";
  5641. Text = "Automatically colleting tools dropped.";
  5642. })
  5643. end
  5644. if string.sub(msg, 1, 9) == (prefix.."toolsoff") then
  5645. gettingtools = false
  5646. game:GetService("StarterGui"):SetCore("SendNotification", {
  5647. Title = "Tools Disabled";
  5648. Text = "Click TP has been disabled.";
  5649. })
  5650. end
  5651. if string.sub(msg, 1, 10) == (prefix.."delcmdbar") then
  5652. ScreenGui:Destroy()
  5653. end
  5654. if string.sub(msg, 1, 6) == (prefix.."reset") then
  5655. lplayer.Character.Head:Destroy()
  5656. end
  5657. if string.sub(msg, 1, 7) == (prefix.."state ") then
  5658. statechosen = string.sub(msg, 8)
  5659. changingstate = true
  5660. end
  5661. if string.sub(msg, 1, 9) == (prefix.."gravity ") then
  5662. game:GetService("Workspace").Gravity = string.sub(msg, 10)
  5663. end
  5664. if string.sub(msg, 1, 10) == (prefix.."looprhats") then
  5665. removingmeshhats = true
  5666. end
  5667. if string.sub(msg, 1, 12) == (prefix.."unlooprhats") then
  5668. removingmeshhats = false
  5669. end
  5670. if string.sub(msg, 1, 10) == (prefix.."looprtool") then
  5671. removingmeshtool = true
  5672. end
  5673. if string.sub(msg, 1, 12) == (prefix.."unlooprtool") then
  5674. removingmeshtool = false
  5675. end
  5676. if string.sub(msg, 1, 10) == (prefix.."givetool ") then
  5677. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  5678. if v:IsA("Tool") then
  5679. for i,player in pairs(GetPlayer(string.sub(msg, 11))) do
  5680. v.Parent = player.Character
  5681. end
  5682. end
  5683. end
  5684. end
  5685. if string.sub(msg, 1, 14) == (prefix.."givealltools ") then
  5686. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  5687. if v:IsA("Tool") then
  5688. v.Parent = lplayer.Character
  5689. wait()
  5690. for i,player in pairs(GetPlayer(string.sub(msg, 15))) do
  5691. v.Parent = player.Character
  5692. end
  5693. end
  5694. end
  5695. end
  5696. if string.sub(msg, 1, 5) == (prefix.."age ") then
  5697. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  5698. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  5699. end
  5700. end
  5701. if string.sub(msg, 1, 4) == (prefix.."id ") then
  5702. for i,player in pairs(GetPlayer(string.sub(msg, 5))) do
  5703. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  5704. end
  5705. end
  5706. if string.sub(msg, 1, 6) == (prefix..".age ") then
  5707. for i,player in pairs(GetPlayer(string.sub(msg, 7))) do
  5708. game:GetService("StarterGui"):SetCore("SendNotification", {
  5709. Title = player.AccountAge.." Days";
  5710. Text = "Account age of "..player.Name;
  5711. })
  5712. end
  5713. end
  5714. if string.sub(msg, 1, 5) == (prefix..".id ") then
  5715. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  5716. game:GetService("StarterGui"):SetCore("SendNotification", {
  5717. Title = player.UserId.." ID";
  5718. Text = "Account ID of "..player.Name;
  5719. })
  5720. end
  5721. end
  5722. if string.sub(msg, 1, 7) == (prefix.."gameid") then
  5723. game:GetService("StarterGui"):SetCore("SendNotification", {
  5724. Title = "Game ID";
  5725. Text = "Game ID: ".. game.GameId;
  5726. })
  5727. end
  5728. if string.sub(msg, 1, 4) == (prefix.."pgs") then
  5729. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  5730. if pgscheck == true then
  5731. game:GetService("StarterGui"):SetCore("SendNotification", {
  5732. Title = "PGSPhysicsSolverEnabled";
  5733. Text = "PGS is Enabled!";
  5734. })
  5735. else
  5736. game:GetService("StarterGui"):SetCore("SendNotification", {
  5737. Title = "PGSPhysicsSolverEnabled";
  5738. Text = "PGS is Disabled!";
  5739. })
  5740. end
  5741. end
  5742. if string.sub(msg, 1, 12) == (prefix.."removeinvis") then
  5743. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  5744. if v:IsA("Part") then
  5745. if v.Transparency == 1 then
  5746. if v.Name ~= "HumanoidRootPart" then
  5747. v:Destroy()
  5748. end
  5749. end
  5750. end
  5751. end
  5752. end
  5753. if string.sub(msg, 1, 10) == (prefix.."removefog") then
  5754. game:GetService("Lighting").FogStart = 0
  5755. game:GetService("Lighting").FogEnd = 9999999999999
  5756. end
  5757. if string.sub(msg, 1, 8) == (prefix.."disable") then
  5758. lplayer.Character.Humanoid.Parent = lplayer
  5759. end
  5760. if string.sub(msg, 1, 7) == (prefix.."enable") then
  5761. lplayer.Humanoid.Parent = lplayer.Character
  5762. end
  5763. if string.sub(msg, 1, 8) == (prefix.."prefix ") then
  5764. prefix = (string.sub(msg, 9, 9))
  5765. wait(0.1)
  5766. change()
  5767. wait(0.1)
  5768. game:GetService("StarterGui"):SetCore("SendNotification", {
  5769. Title = "Prefix changed!";
  5770. Text = "Prefix is now "..prefix..". Use ;resetprefix to reset to ;";
  5771. })
  5772. end
  5773. if string.sub(msg, 1, 12) == (";resetprefix") then
  5774. prefix = ";"
  5775. wait(0.1)
  5776. change()
  5777. wait(0.1)
  5778. game:GetService("StarterGui"):SetCore("SendNotification", {
  5779. Title = "Prefix changed!";
  5780. Text = "Prefix is now "..prefix..". Make sure it's one key!";
  5781. })
  5782. end
  5783. if string.sub(msg, 1, 10) == (prefix.."flyspeed ") then
  5784. speedfly = string.sub(msg, 11)
  5785. wait()
  5786. change()
  5787. end
  5788. if string.sub(msg, 1, 8) == (prefix.."carpet ") then
  5789. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  5790. local Anim3 = Instance.new("Animation")
  5791. Anim3.AnimationId = "rbxassetid://282574440"
  5792. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  5793. track3:Play(.1, 1, 1)
  5794. bplrr = v.Name
  5795. banpl = true
  5796. end
  5797. end
  5798. if string.sub(msg, 1, 9) == (prefix.."uncarpet") then
  5799. banpl = false
  5800. end
  5801. if string.sub(msg, 1, 7) == (prefix.."stare ") then
  5802. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  5803. staring = true
  5804. stareplr = v
  5805. end
  5806. end
  5807. if string.sub(msg, 1, 8) == (prefix.."unstare") then
  5808. staring = false
  5809. end
  5810. if string.sub(msg, 1, 8) == (prefix.."logchat") then
  5811. chatlogs = true
  5812. game:GetService("StarterGui"):SetCore("SendNotification", {
  5813. Title = "LogChat enabled";
  5814. Text = "Now logging all player chat.";
  5815. })
  5816. end
  5817. if string.sub(msg, 1, 10) == (prefix.."unlogchat") then
  5818. chatlogs = false
  5819. game:GetService("StarterGui"):SetCore("SendNotification", {
  5820. Title = "LogChat disabled";
  5821. Text = "Stopped logging all player chat.";
  5822. })
  5823. end
  5824. if string.sub(msg, 1, 7) == (prefix.."fixcam") then
  5825. game:GetService("Workspace").CurrentCamera:Destroy()
  5826. wait(0.1)
  5827. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  5828. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  5829. lplayer.CameraMinZoomDistance = 0.5
  5830. lplayer.CameraMaxZoomDistance = 400
  5831. lplayer.CameraMode = "Classic"
  5832. end
  5833. if string.sub(msg, 1, 8) == (prefix.."unstate") then
  5834. changingstate = false
  5835. end
  5836. end)
  5837.  
  5838. local function tp()
  5839. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  5840. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  5841. if player.Name == brplr then
  5842. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 2
  5843. end
  5844. end
  5845. end
  5846. end
  5847. local function tpall()
  5848. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  5849. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  5850. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 3
  5851. end
  5852. end
  5853. end
  5854. spawn(function()
  5855. while wait(spamdelay) do
  5856. if spamming == true then
  5857. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
  5858. end
  5859. end
  5860. end)
  5861. spawn(function()
  5862. while wait(spamdelay) do
  5863. if spammingpm == true then
  5864. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..pmspammed.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
  5865. end
  5866. end
  5867. end)
  5868. spawn(function()
  5869. while wait() do
  5870. if cbring == true then
  5871. tp()
  5872. end
  5873. end
  5874. end)
  5875. spawn(function()
  5876. while wait() do
  5877. if cbringall == true then
  5878. tpall()
  5879. end
  5880. end
  5881. end)
  5882.  
  5883. Mouse.KeyDown:connect(function(Key)
  5884. if Key == prefix then
  5885. CMDBAR:CaptureFocus()
  5886. end
  5887. end)
  5888.  
  5889. CMDBAR.FocusLost:connect(function(enterPressed)
  5890. if enterPressed then
  5891. if string.sub(CMDBAR.Text, 1, 5) == ("kill ") then
  5892. if string.sub(CMDBAR.Text, 6) == "me" then
  5893. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  5894. else
  5895. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6)))do
  5896. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  5897. lplayer.Character.Humanoid.Name = 1
  5898. local l = lplayer.Character["1"]:Clone()
  5899. l.Parent = lplayer.Character
  5900. l.Name = "Humanoid"
  5901. wait(0.1)
  5902. lplayer.Character["1"]:Destroy()
  5903. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5904. lplayer.Character.Animate.Disabled = true
  5905. wait(0.1)
  5906. lplayer.Character.Animate.Disabled = false
  5907. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5908. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5909. lplayer.Character.Humanoid:EquipTool(v)
  5910. end
  5911. local function tp(player,player2)
  5912. local char1,char2=player.Character,player2.Character
  5913. if char1 and char2 then
  5914. char1:MoveTo(char2.Head.Position)
  5915. end
  5916. end
  5917. wait(0.1)
  5918. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5919. wait(0.2)
  5920. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5921. wait(0.5)
  5922. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  5923. wait(0.7)
  5924. tp(lplayer,game:GetService("Players")[v.Name])
  5925. wait(0.7)
  5926. lplayer.Character.HumanoidRootPart.CFrame = NOW
  5927. game:GetService("StarterGui"):SetCore("SendNotification", {
  5928. Title = "Tools needed!";
  5929. Text = "You need a tool in your backpack for this command!";
  5930. })
  5931. end
  5932. end
  5933. end
  5934. if string.sub(CMDBAR.Text, 1, 6) == ("bring ") then
  5935. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  5936. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  5937. lplayer.Character.Humanoid.Name = 1
  5938. local l = lplayer.Character["1"]:Clone()
  5939. l.Parent = lplayer.Character
  5940. l.Name = "Humanoid"
  5941. wait(0.1)
  5942. lplayer.Character["1"]:Destroy()
  5943. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5944. lplayer.Character.Animate.Disabled = true
  5945. wait(0.1)
  5946. lplayer.Character.Animate.Disabled = false
  5947. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5948. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5949. lplayer.Character.Humanoid:EquipTool(v)
  5950. end
  5951. local function tp(player,player2)
  5952. local char1,char2=player.Character,player2.Character
  5953. if char1 and char2 then
  5954. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  5955. end
  5956. end
  5957. local function getout(player,player2)
  5958. local char1,char2=player.Character,player2.Character
  5959. if char1 and char2 then
  5960. char1:MoveTo(char2.Head.Position)
  5961. end
  5962. end
  5963. tp(game:GetService("Players")[v.Name], lplayer)
  5964. wait(0.2)
  5965. tp(game:GetService("Players")[v.Name], lplayer)
  5966. wait(0.5)
  5967. lplayer.Character.HumanoidRootPart.CFrame = NOW
  5968. wait(0.5)
  5969. getout(lplayer, game:GetService("Players")[v.Name])
  5970. wait(0.3)
  5971. lplayer.Character.HumanoidRootPart.CFrame = NOW
  5972. game:GetService("StarterGui"):SetCore("SendNotification", {
  5973. Title = "Tools needed!";
  5974. Text = "You need a tool in your backpack for this command!";
  5975. })
  5976. end
  5977. end
  5978. if string.sub(CMDBAR.Text, 1, 5) == ("spin ") then
  5979. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  5980. lplayer.Character.Humanoid.Name = 1
  5981. local l = lplayer.Character["1"]:Clone()
  5982. l.Parent = lplayer.Character
  5983. l.Name = "Humanoid"
  5984. wait(0.1)
  5985. lplayer.Character["1"]:Destroy()
  5986. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5987. lplayer.Character.Animate.Disabled = true
  5988. wait(0.1)
  5989. lplayer.Character.Animate.Disabled = false
  5990. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5991. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5992. lplayer.Character.Humanoid:EquipTool(v)
  5993. end
  5994. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  5995. spinplr = v
  5996. wait(0.5)
  5997. spin = true
  5998. game:GetService("StarterGui"):SetCore("SendNotification", {
  5999. Title = "Tools needed!";
  6000. Text = "You need a tool in your backpack for this command!";
  6001. })
  6002. end
  6003. end
  6004. if string.sub(CMDBAR.Text, 1, 6) == ("unspin") then
  6005. spin = false
  6006. end
  6007. if string.sub(CMDBAR.Text, 1, 7) == ("attach ") then
  6008. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6009. lplayer.Character.Humanoid.Name = 1
  6010. local l = lplayer.Character["1"]:Clone()
  6011. l.Parent = lplayer.Character
  6012. l.Name = "Humanoid"
  6013. wait(0.1)
  6014. lplayer.Character["1"]:Destroy()
  6015. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6016. lplayer.Character.Animate.Disabled = true
  6017. wait(0.1)
  6018. lplayer.Character.Animate.Disabled = false
  6019. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6020. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6021. lplayer.Character.Humanoid:EquipTool(v)
  6022. end
  6023. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6024. wait(0.3)
  6025. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6026. attplr = v
  6027. game:GetService("StarterGui"):SetCore("SendNotification", {
  6028. Title = "Tools needed!";
  6029. Text = "You need a tool in your backpack for this command!";
  6030. })
  6031. end
  6032. end
  6033. if string.sub(CMDBAR.Text, 1, 9) == ("unattach ") then
  6034. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  6035. local function getout(player,player2)
  6036. local char1,char2=player.Character,player2.Character
  6037. if char1 and char2 then
  6038. char1:MoveTo(char2.Head.Position)
  6039. end
  6040. end
  6041. getout(lplayer, game:GetService("Players")[v.Name])
  6042. end
  6043. end
  6044. if string.sub(CMDBAR.Text, 1, 7) == ("follow ") then
  6045. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6046. followed = true
  6047. flwplr = v
  6048. end
  6049. end
  6050. if string.sub(CMDBAR.Text, 1, 8) == ("unfollow") then
  6051. followed = false
  6052. end
  6053. if string.sub(CMDBAR.Text, 1, 9) == ("freefall ") then
  6054. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  6055. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  6056. lplayer.Character.Humanoid.Name = 1
  6057. local l = lplayer.Character["1"]:Clone()
  6058. l.Parent = lplayer.Character
  6059. l.Name = "Humanoid"
  6060. wait(0.1)
  6061. lplayer.Character["1"]:Destroy()
  6062. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6063. lplayer.Character.Animate.Disabled = true
  6064. wait(0.1)
  6065. lplayer.Character.Animate.Disabled = false
  6066. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6067. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6068. lplayer.Character.Humanoid:EquipTool(v)
  6069. end
  6070. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6071. wait(0.2)
  6072. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6073. wait(0.6)
  6074. lplayer.Character.HumanoidRootPart.CFrame = NOW
  6075. wait(0.6)
  6076. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  6077. game:GetService("StarterGui"):SetCore("SendNotification", {
  6078. Title = "Tools needed!";
  6079. Text = "You need a tool in your backpack for this command!";
  6080. })
  6081. end
  6082. end
  6083. if string.sub(CMDBAR.Text, 1, 6) == ("trail ") then
  6084. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6085. traill = true
  6086. trlplr = v
  6087. end
  6088. end
  6089. if string.sub(CMDBAR.Text, 1, 7) == ("untrail") then
  6090. traill = false
  6091. end
  6092. if string.sub(CMDBAR.Text, 1, 6) == ("orbit ") then
  6093. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  6094. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  6095. else
  6096. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6097. local o = Instance.new("RocketPropulsion")
  6098. o.Parent = lplayer.Character.HumanoidRootPart
  6099. o.Name = "Orbit"
  6100. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  6101. o:Fire()
  6102. noclip = true
  6103. end
  6104. end
  6105. end
  6106. if string.sub(CMDBAR.Text, 1, 7) == ("unorbit") then
  6107. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  6108. noclip = false
  6109. end
  6110. if string.sub(CMDBAR.Text, 1, 6) == ("fling ") then
  6111. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  6112. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  6113. else
  6114. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6115. local y = Instance.new("RocketPropulsion")
  6116. y.Parent = lplayer.Character.HumanoidRootPart
  6117. y.CartoonFactor = 1
  6118. y.MaxThrust = 800000
  6119. y.MaxSpeed = 1000
  6120. y.ThrustP = 200000
  6121. y.Name = "Fling"
  6122. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  6123. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  6124. y:Fire()
  6125. noclip = true
  6126. end
  6127. end
  6128. end
  6129. if string.sub(CMDBAR.Text, 1, 7) == ("unfling") then
  6130. noclip = false
  6131. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  6132. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  6133. wait(0.4)
  6134. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  6135. end
  6136. if string.sub(CMDBAR.Text, 1, 7) == ("fecheck") then
  6137. if game:GetService("Workspace").FilteringEnabled == true then
  6138. warn("FE is Enabled (Filtering Enabled)")
  6139. game:GetService("StarterGui"):SetCore("SendNotification", {
  6140. Title = "FE is Enabled";
  6141. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  6142. })
  6143. else
  6144. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  6145. game:GetService("StarterGui"):SetCore("SendNotification", {
  6146. Title = "FE is Disabled";
  6147. Text = "Filtering Disabled. Consider using a different admin script.";
  6148. })
  6149. end
  6150. end
  6151. if string.sub(CMDBAR.Text, 1, 5) == ("void ") then
  6152. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6153. lplayer.Character.Humanoid.Name = 1
  6154. local l = lplayer.Character["1"]:Clone()
  6155. l.Parent = lplayer.Character
  6156. l.Name = "Humanoid"
  6157. wait(0.1)
  6158. lplayer.Character["1"]:Destroy()
  6159. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6160. lplayer.Character.Animate.Disabled = true
  6161. wait(0.1)
  6162. lplayer.Character.Animate.Disabled = false
  6163. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6164. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6165. lplayer.Character.Humanoid:EquipTool(v)
  6166. end
  6167. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6168. wait(0.2)
  6169. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6170. wait(0.6)
  6171. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  6172. game:GetService("StarterGui"):SetCore("SendNotification", {
  6173. Title = "Tools needed!";
  6174. Text = "You need a tool in your backpack for this command!";
  6175. })
  6176. end
  6177. end
  6178. if string.sub(CMDBAR.Text, 1, 6) == ("noclip") then
  6179. noclip = true
  6180. game:GetService("StarterGui"):SetCore("SendNotification", {
  6181. Title = "Noclip enabled";
  6182. Text = "Type ;clip to disable";
  6183. })
  6184. end
  6185. if string.sub(CMDBAR.Text, 1, 4) == ("clip") then
  6186. noclip = false
  6187. game:GetService("StarterGui"):SetCore("SendNotification", {
  6188. Title = "Noclip disabled";
  6189. Text = "Type ;noclip to enable";
  6190. })
  6191. end
  6192. if string.sub(CMDBAR.Text, 1, 6) == ("speed ") then
  6193. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 7))
  6194. end
  6195. if string.sub(CMDBAR.Text, 1, 3) == ("ws ") then
  6196. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 4))
  6197. end
  6198. if string.sub(CMDBAR.Text, 1, 10) == ("hipheight ") then
  6199. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 11))
  6200. end
  6201. if string.sub(CMDBAR.Text, 1, 3) == ("hh ") then
  6202. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 4))
  6203. end
  6204. if string.sub(CMDBAR.Text, 1, 10) == ("jumppower ") then
  6205. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 11))
  6206. end
  6207. if string.sub(CMDBAR.Text, 1, 3) == ("jp ") then
  6208. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 4))
  6209. end
  6210. if string.sub(CMDBAR.Text, 1, 7) == ("default") then
  6211. lplayer.Character.Humanoid.JumpPower = 50
  6212. lplayer.Character.Humanoid.WalkSpeed = 16
  6213. lplayer.Character.Humanoid.HipHeight = 0
  6214. end
  6215. if string.sub(CMDBAR.Text, 1, 6) == ("annoy ") then
  6216. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6217. annoying = true
  6218. annplr = v
  6219. end
  6220. end
  6221. if string.sub(CMDBAR.Text, 1, 7) == ("unannoy") then
  6222. annoying = false
  6223. end
  6224. if string.sub(CMDBAR.Text, 1, 9) == ("headwalk ") then
  6225. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  6226. hwalk = true
  6227. hdwplr = v
  6228. end
  6229. end
  6230. if string.sub(CMDBAR.Text, 1, 10) == ("unheadwalk") then
  6231. hwalk = false
  6232. end
  6233. if string.sub(CMDBAR.Text, 1, 7) == ("nolimbs") then
  6234. lplayer.Character["Left Leg"]:Destroy()
  6235. lplayer.Character["Left Arm"]:Destroy()
  6236. lplayer.Character["Right Leg"]:Destroy()
  6237. lplayer.Character["Right Arm"]:Destroy()
  6238. end
  6239. if string.sub(CMDBAR.Text, 1, 3) == ("god") then
  6240. lplayer.Character.Humanoid.Name = 1
  6241. local l = lplayer.Character["1"]:Clone()
  6242. l.Parent = lplayer.Character
  6243. l.Name = "Humanoid"
  6244. wait(0.1)
  6245. lplayer.Character["1"]:Destroy()
  6246. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6247. lplayer.Character.Animate.Disabled = true
  6248. wait(0.1)
  6249. lplayer.Character.Animate.Disabled = false
  6250. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6251. game:GetService("StarterGui"):SetCore("SendNotification", {
  6252. Title = "FE Godmode enabled";
  6253. Text = "Use ;grespawn or ;respawn to remove.";
  6254. })
  6255. end
  6256. if string.sub(CMDBAR.Text, 1, 8) == ("drophats") then
  6257. for i,v in pairs(lplayer.Character:GetChildren()) do
  6258. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  6259. v.Parent = workspace
  6260. end
  6261. end
  6262. end
  6263. if string.sub(CMDBAR.Text, 1, 8) == ("droptool") then
  6264. for i,v in pairs(lplayer.Character:GetChildren()) do
  6265. if (v:IsA("Tool")) then
  6266. v.Parent = workspace
  6267. end
  6268. end
  6269. end
  6270. if string.sub(CMDBAR.Text, 1, 9) == ("loopdhats") then
  6271. droppinghats = true
  6272. game:GetService("StarterGui"):SetCore("SendNotification", {
  6273. Title = "Loop Drop Enabled";
  6274. Text = "Type ;unloopdhats to disable";
  6275. })
  6276. end
  6277. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdhats") then
  6278. droppinghats = false
  6279. game:GetService("StarterGui"):SetCore("SendNotification", {
  6280. Title = "Loop Drop Disabled";
  6281. Text = "Type ;loopdhats to enable.";
  6282. })
  6283. end
  6284. if string.sub(CMDBAR.Text, 1, 9) == ("loopdtool") then
  6285. droppingtools = true
  6286. game:GetService("StarterGui"):SetCore("SendNotification", {
  6287. Title = "Loop Drop Enabled";
  6288. Text = "Type ;unloopdtool to disable";
  6289. })
  6290. end
  6291. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdtool") then
  6292. droppingtools = false
  6293. game:GetService("StarterGui"):SetCore("SendNotification", {
  6294. Title = "Loop Drop Disabled";
  6295. Text = "Type ;loopdtool to enable.";
  6296. })
  6297. end
  6298. if string.sub(CMDBAR.Text, 1, 9) == ("invisible") then -- Credit to Timeless
  6299. Local = game:GetService('Players').LocalPlayer
  6300. Char = Local.Character
  6301. touched,tpdback = false, false
  6302. box = Instance.new('Part',workspace)
  6303. box.Anchored = true
  6304. box.CanCollide = true
  6305. box.Size = Vector3.new(10,1,10)
  6306. box.Position = Vector3.new(0,10000,0)
  6307. box.Touched:connect(function(part)
  6308. if (part.Parent.Name == Local.Name) then
  6309. if touched == false then
  6310. touched = true
  6311. function apply()
  6312. if script.Disabled ~= true then
  6313. no = Char.HumanoidRootPart:Clone()
  6314. wait(.25)
  6315. Char.HumanoidRootPart:Destroy()
  6316. no.Parent = Char
  6317. Char:MoveTo(loc)
  6318. touched = false
  6319. end end
  6320. if Char then
  6321. apply()
  6322. end
  6323. end
  6324. end
  6325. end)
  6326. repeat wait() until Char
  6327. loc = Char.HumanoidRootPart.Position
  6328. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  6329. game:GetService("StarterGui"):SetCore("SendNotification", {
  6330. Title = "Invisibility enabled!";
  6331. Text = "Reset or use ;respawn to remove.";
  6332. })
  6333. end
  6334. if string.sub(CMDBAR.Text, 1, 5) == ("view ") then
  6335. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6336. if game:GetService("Players")[v.Name].Character.Humanoid then
  6337. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  6338. else
  6339. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  6340. end
  6341. end
  6342. end
  6343. if string.sub(CMDBAR.Text, 1, 6) == ("unview") then
  6344. if lplayer.Character.Humanoid then
  6345. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  6346. else
  6347. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  6348. end
  6349. end
  6350. if string.sub(CMDBAR.Text, 1, 5) == ("goto ") then
  6351. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6352. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6353. end
  6354. end
  6355. if string.sub(CMDBAR.Text, 1, 3) == ("fly") then
  6356. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  6357. repeat wait() until Mouse
  6358.  
  6359. local T = lplayer.Character.HumanoidRootPart
  6360. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  6361. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  6362. local SPEED = speedget
  6363.  
  6364. local function fly()
  6365. flying = true
  6366. local BG = Instance.new('BodyGyro', T)
  6367. local BV = Instance.new('BodyVelocity', T)
  6368. BG.P = 9e4
  6369. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  6370. BG.cframe = T.CFrame
  6371. BV.velocity = Vector3.new(0, 0.1, 0)
  6372. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  6373. spawn(function()
  6374. repeat wait()
  6375. lplayer.Character.Humanoid.PlatformStand = true
  6376. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  6377. SPEED = 50
  6378. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  6379. SPEED = 0
  6380. end
  6381. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  6382. 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
  6383. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  6384. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  6385. 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
  6386. else
  6387. BV.velocity = Vector3.new(0, 0.1, 0)
  6388. end
  6389. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  6390. until not flying
  6391. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  6392. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  6393. SPEED = 0
  6394. BG:destroy()
  6395. BV:destroy()
  6396. lplayer.Character.Humanoid.PlatformStand = false
  6397. end)
  6398. end
  6399. Mouse.KeyDown:connect(function(KEY)
  6400. if KEY:lower() == 'w' then
  6401. CONTROL.F = speedfly
  6402. elseif KEY:lower() == 's' then
  6403. CONTROL.B = -speedfly
  6404. elseif KEY:lower() == 'a' then
  6405. CONTROL.L = -speedfly
  6406. elseif KEY:lower() == 'd' then
  6407. CONTROL.R = speedfly
  6408. end
  6409. end)
  6410. Mouse.KeyUp:connect(function(KEY)
  6411. if KEY:lower() == 'w' then
  6412. CONTROL.F = 0
  6413. elseif KEY:lower() == 's' then
  6414. CONTROL.B = 0
  6415. elseif KEY:lower() == 'a' then
  6416. CONTROL.L = 0
  6417. elseif KEY:lower() == 'd' then
  6418. CONTROL.R = 0
  6419. end
  6420. end)
  6421. fly()
  6422. end
  6423. if string.sub(CMDBAR.Text, 1, 5) == ("unfly") then
  6424. flying = false
  6425. lplayer.Character.Humanoid.PlatformStand = false
  6426. end
  6427. if string.sub(CMDBAR.Text, 1, 5) == ("chat ") then
  6428. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(CMDBAR.Text, 6)), "All")
  6429. end
  6430. if string.sub(CMDBAR.Text, 1, 5) == ("spam ") then
  6431. spamtext = (string.sub(CMDBAR.Text, 6))
  6432. spamming = true
  6433. end
  6434. if string.sub(CMDBAR.Text, 1, 6) == ("unspam") then
  6435. spamming = false
  6436. end
  6437. if string.sub(CMDBAR.Text, 1, 9) == ("spamwait ") then
  6438. spamdelay = (string.sub(CMDBAR.Text, 10))
  6439. end
  6440. if string.sub(CMDBAR.Text, 1, 7) == ("pmspam ") then
  6441. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6442. pmspammed = v.Name
  6443. spammingpm = true
  6444. end
  6445. end
  6446. if string.sub(CMDBAR.Text, 1, 8) == ("unpmspam") then
  6447. spammingpm = false
  6448. end
  6449. if string.sub(CMDBAR.Text, 1, 8) == ("cfreeze ") then
  6450. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 9))) do
  6451. v.Character["Left Leg"].Anchored = true
  6452. v.Character["Left Arm"].Anchored = true
  6453. v.Character["Right Leg"].Anchored = true
  6454. v.Character["Right Arm"].Anchored = true
  6455. v.Character.Torso.Anchored = true
  6456. v.Character.Head.Anchored = true
  6457. end
  6458. end
  6459. if string.sub(CMDBAR.Text, 1, 10) == ("uncfreeze ") then
  6460. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 11))) do
  6461. v.Character["Left Leg"].Anchored = false
  6462. v.Character["Left Arm"].Anchored = false
  6463. v.Character["Right Leg"].Anchored = false
  6464. v.Character["Right Arm"].Anchored = false
  6465. v.Character.Torso.Anchored = false
  6466. v.Character.Head.Anchored = false
  6467. end
  6468. end
  6469. if string.sub(CMDBAR.Text, 1, 8) == ("unlockws") then
  6470. local a = game:GetService("Workspace"):getChildren()
  6471. for i = 1, #a do
  6472. if a[i].className == "Part" then
  6473. a[i].Locked = false
  6474. elseif a[i].className == "Model" then
  6475. local r = a[i]:getChildren()
  6476. for i = 1, #r do
  6477. if r[i].className == "Part" then
  6478. r[i].Locked = false
  6479. end
  6480. end
  6481. end
  6482. end
  6483. game:GetService("StarterGui"):SetCore("SendNotification", {
  6484. Title = "Success!";
  6485. Text = "Workspace unlocked. Use ;lockws to lock.";
  6486. })
  6487. end
  6488. if string.sub(CMDBAR.Text, 1, 6) == ("lockws") then
  6489. local a = game:GetService("Workspace"):getChildren()
  6490. for i = 1, #a do
  6491. if a[i].className == "Part" then
  6492. a[i].Locked = true
  6493. elseif a[i].className == "Model" then
  6494. local r = a[i]:getChildren()
  6495. for i = 1, #r do
  6496. if r[i].className == "Part" then
  6497. r[i].Locked = true
  6498. end
  6499. end
  6500. end
  6501. end
  6502. end
  6503. if string.sub(CMDBAR.Text, 1, 6) == ("btools") then
  6504. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  6505. Clone_T.BinType = "Clone"
  6506. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  6507. Destruct.BinType = "Hammer"
  6508. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  6509. Hold_T.BinType = "Grab"
  6510. end
  6511. if string.sub(CMDBAR.Text, 1, 6) == ("pstand") then
  6512. lplayer.Character.Humanoid.PlatformStand = true
  6513. end
  6514. if string.sub(CMDBAR.Text, 1, 8) == ("unpstand") then
  6515. lplayer.Character.Humanoid.PlatformStand = false
  6516. end
  6517. if string.sub(CMDBAR.Text, 1, 9) == ("blockhead") then
  6518. lplayer.Character.Head.Mesh:Destroy()
  6519. end
  6520. if string.sub(CMDBAR.Text, 1, 3) == ("sit") then
  6521. lplayer.Character.Humanoid.Sit = true
  6522. end
  6523. if string.sub(CMDBAR.Text, 1, 9) == ("bringobj ") then
  6524. local function bringobjw()
  6525. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  6526. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  6527. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  6528. obj.CanCollide = false
  6529. obj.Transparency = 0.7
  6530. wait()
  6531. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  6532. wait()
  6533. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  6534. wait()
  6535. obj.CFrame = lplayer.Character["Head"].CFrame
  6536. end
  6537. end
  6538. end
  6539. while wait() do
  6540. bringobjw()
  6541. end
  6542. game:GetService("StarterGui"):SetCore("SendNotification", {
  6543. Title = "BringObj";
  6544. Text = "BringObj enabled.";
  6545. })
  6546. end
  6547. if string.sub(CMDBAR.Text, 1, 6) == ("wsvis ") then
  6548. vis = (string.sub(CMDBAR.Text, 7))
  6549. local a = game:GetService("Workspace"):GetDescendants()
  6550. for i = 1, #a do
  6551. if a[i].className == "Part" then
  6552. a[i].Transparency = vis
  6553. elseif a[i].className == "Model" then
  6554. local r = a[i]:getChildren()
  6555. for i = 1, #r do
  6556. if r[i].className == "Part" then
  6557. r[i].Transparency = vis
  6558. end
  6559. end
  6560. end
  6561. end
  6562. end
  6563. if string.sub(CMDBAR.Text, 1, 10) == ("hypertotal") then
  6564. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  6565. game:GetService("StarterGui"):SetCore("SendNotification", {
  6566. Title = "Success!";
  6567. Text = "HyperTotal GUI Loaded!";
  6568. })
  6569. end
  6570. if string.sub(CMDBAR.Text, 1, 4) == ("cmds") then
  6571. CMDSFRAME.Visible = true
  6572. end
  6573. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshhats") then
  6574. for i,v in pairs(lplayer.Character:GetChildren()) do
  6575. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  6576. v.Handle.Mesh:Destroy()
  6577. end
  6578. end
  6579. end
  6580. if string.sub(CMDBAR.Text, 1, 9) == ("blockhats") then
  6581. for i,v in pairs(lplayer.Character:GetChildren()) do
  6582. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  6583. v.Handle.Mesh:Destroy()
  6584. end
  6585. end
  6586. end
  6587. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshtool") then
  6588. for i,v in pairs(lplayer.Character:GetChildren()) do
  6589. if (v:IsA("Tool")) then
  6590. v.Handle.Mesh:Destroy()
  6591. end
  6592. end
  6593. end
  6594. if string.sub(CMDBAR.Text, 1, 9) == ("blocktool") then
  6595. for i,v in pairs(lplayer.Character:GetChildren()) do
  6596. if (v:IsA("Tool")) then
  6597. v.Handle.Mesh:Destroy()
  6598. end
  6599. end
  6600. end
  6601. if string.sub(CMDBAR.Text, 1, 7) == ("spinner") then
  6602. local p = Instance.new("RocketPropulsion")
  6603. p.Parent = lplayer.Character.HumanoidRootPart
  6604. p.Name = "Spinner"
  6605. p.Target = lplayer.Character["Left Arm"]
  6606. p:Fire()
  6607. game:GetService("StarterGui"):SetCore("SendNotification", {
  6608. Title = "Spinner enabled";
  6609. Text = "Type ;nospinner to disable.";
  6610. })
  6611. end
  6612. if string.sub(CMDBAR.Text, 1, 9) == ("nospinner") then
  6613. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  6614. end
  6615. if string.sub(CMDBAR.Text, 1, 6) == ("reachd") then
  6616. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  6617. if v:isA("Tool") then
  6618. local a = Instance.new("SelectionBox",v.Handle)
  6619. a.Adornee = v.Handle
  6620. v.Handle.Size = Vector3.new(0.5,0.5,60)
  6621. v.GripPos = Vector3.new(0,0,0)
  6622. lplayer.Character.Humanoid:UnequipTools()
  6623. end
  6624. end
  6625. game:GetService("StarterGui"):SetCore("SendNotification", {
  6626. Title = "Reach applied!";
  6627. Text = "Applied to equipped sword. Use ;noreach to disable.";
  6628. })
  6629. end
  6630. if string.sub(CMDBAR.Text, 1, 6) == ("reach ") then
  6631. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  6632. if v:isA("Tool") then
  6633. local a = Instance.new("SelectionBox",v.Handle)
  6634. a.Name = "Reach"
  6635. a.Adornee = v.Handle
  6636. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(CMDBAR.Text, 7)))
  6637. v.GripPos = Vector3.new(0,0,0)
  6638. lplayer.Character.Humanoid:UnequipTools()
  6639. end
  6640. end
  6641. game:GetService("StarterGui"):SetCore("SendNotification", {
  6642. Title = "Reach applied!";
  6643. Text = "Applied to equipped sword. Use ;noreach to disable.";
  6644. })
  6645. end
  6646. if string.sub(CMDBAR.Text, 1, 7) == ("noreach") then
  6647. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  6648. if v:isA("Tool") then
  6649. v.Handle.Reach:Destroy()
  6650. end
  6651. end
  6652. game:GetService("StarterGui"):SetCore("SendNotification", {
  6653. Title = "Reach removed!";
  6654. Text = "Removed reach from equipped sword.";
  6655. })
  6656. end
  6657. if string.sub(CMDBAR.Text, 1, 6) == ("rkill ") then
  6658. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  6659. lplayer.Character.Humanoid.Name = 1
  6660. local l = lplayer.Character["1"]:Clone()
  6661. l.Parent = lplayer.Character
  6662. l.Name = "Humanoid"
  6663. wait(0.1)
  6664. lplayer.Character["1"]:Destroy()
  6665. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6666. lplayer.Character.Animate.Disabled = true
  6667. wait(0.1)
  6668. lplayer.Character.Animate.Disabled = false
  6669. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6670. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6671. lplayer.Character.Humanoid:EquipTool(v)
  6672. end
  6673. wait(0.1)
  6674. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6675. wait(0.2)
  6676. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6677. wait(0.5)
  6678. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  6679. game:GetService("StarterGui"):SetCore("SendNotification", {
  6680. Title = "Tools needed!";
  6681. Text = "You need a tool in your backpack for this command!";
  6682. })
  6683. end
  6684. end
  6685. if string.sub(CMDBAR.Text, 1, 6) == ("tp me ") then
  6686. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6687. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6688. end
  6689. end
  6690. if string.sub(CMDBAR.Text, 1, 7) == ("cbring ") then
  6691. if (string.sub(CMDBAR.Text, 8)) == "all" or (string.sub(CMDBAR.Text, 8)) == "All" or (string.sub(CMDBAR.Text, 8)) == "ALL" then
  6692. cbringall = true
  6693. else
  6694. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6695. brplr = v.Name
  6696. end
  6697. end
  6698. cbring = true
  6699. end
  6700. if string.sub(CMDBAR.Text, 1, 8) == ("uncbring") then
  6701. cbring = false
  6702. cbringall = false
  6703. end
  6704. if string.sub(CMDBAR.Text, 1, 5) == ("swap ") then
  6705. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6706. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6707. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  6708. lplayer.Character.Humanoid.Name = 1
  6709. local l = lplayer.Character["1"]:Clone()
  6710. l.Parent = lplayer.Character
  6711. l.Name = "Humanoid"
  6712. wait(0.1)
  6713. lplayer.Character["1"]:Destroy()
  6714. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6715. lplayer.Character.Animate.Disabled = true
  6716. wait(0.1)
  6717. lplayer.Character.Animate.Disabled = false
  6718. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6719. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6720. lplayer.Character.Humanoid:EquipTool(v)
  6721. end
  6722. local function tp(player,player2)
  6723. local char1,char2=player.Character,player2.Character
  6724. if char1 and char2 then
  6725. char1:MoveTo(char2.Head.Position)
  6726. end
  6727. end
  6728. wait(0.1)
  6729. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6730. wait(0.2)
  6731. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6732. wait(0.5)
  6733. lplayer.Character.HumanoidRootPart.CFrame = NOW
  6734. wait(0.6)
  6735. tp(lplayer, game:GetService("Players")[v.Name])
  6736. wait(0.4)
  6737. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  6738. game:GetService("StarterGui"):SetCore("SendNotification", {
  6739. Title = "Tools needed!";
  6740. Text = "You need a tool in your backpack for this command!";
  6741. })
  6742. end
  6743. end
  6744. if string.sub(CMDBAR.Text, 1, 7) == ("glitch ") then
  6745. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6746. lplayer.Character.Humanoid.Name = 1
  6747. local l = lplayer.Character["1"]:Clone()
  6748. l.Parent = lplayer.Character
  6749. l.Name = "Humanoid"
  6750. wait(0.1)
  6751. lplayer.Character["1"]:Destroy()
  6752. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6753. lplayer.Character.Animate.Disabled = true
  6754. wait(0.1)
  6755. lplayer.Character.Animate.Disabled = false
  6756. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6757. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6758. lplayer.Character.Humanoid:EquipTool(v)
  6759. end
  6760. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6761. wait(0.3)
  6762. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6763. wait(0.4)
  6764. b = Instance.new("BodyForce")
  6765. b.Parent = lplayer.Character.HumanoidRootPart
  6766. b.Name = "Glitch"
  6767. b.Force = Vector3.new(100000000,5000,0)
  6768. game:GetService("StarterGui"):SetCore("SendNotification", {
  6769. Title = "Tools needed!";
  6770. Text = "You need a tool in your backpack for this command!";
  6771. })
  6772. end
  6773. end
  6774. if string.sub(CMDBAR.Text, 1, 8) == ("unglitch") then
  6775. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  6776. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  6777. b = Instance.new("BodyForce")
  6778. b.Parent = lplayer.Character.HumanoidRootPart
  6779. b.Name = "unGlitch"
  6780. b.Force = Vector3.new(0,-5000000,0)
  6781. wait(2)
  6782. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  6783. end
  6784. if string.sub(CMDBAR.Text, 1, 8) == ("grespawn") then
  6785. lplayer.Character.Humanoid.Health = 0
  6786. wait(1)
  6787. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  6788. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  6789. end
  6790. if string.sub(CMDBAR.Text, 1, 8) == ("explorer") then
  6791. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  6792. game:GetService("StarterGui"):SetCore("SendNotification", {
  6793. Title = "Success!";
  6794. Text = "DEX Explorer has loaded.";
  6795. })
  6796. end
  6797. if string.sub(CMDBAR.Text, 1, 5) == ("anim ") then
  6798. local Anim = Instance.new("Animation")
  6799. Anim.AnimationId = "rbxassetid://"..(string.sub(CMDBAR.Text, 6))
  6800. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  6801. track:Play(.1, 1, 1)
  6802. end
  6803. if string.sub(CMDBAR.Text, 1, 7) == ("animgui") then
  6804. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  6805. game:GetService("StarterGui"):SetCore("SendNotification", {
  6806. Title = "Success!";
  6807. Text = "Energize Animations GUI has loaded.";
  6808. })
  6809. end
  6810. if string.sub(CMDBAR.Text, 1, 7) == ("savepos") then
  6811. saved = lplayer.Character.HumanoidRootPart.CFrame
  6812. game:GetService("StarterGui"):SetCore("SendNotification", {
  6813. Title = "Position Saved";
  6814. Text = "Use ;loadpos to return to saved position.";
  6815. })
  6816. end
  6817. if string.sub(CMDBAR.Text, 1, 7) == ("loadpos") then
  6818. lplayer.Character.HumanoidRootPart.CFrame = saved
  6819. end
  6820. if string.sub(CMDBAR.Text, 1, 5) == ("bang ") then
  6821. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6822. local Anim2 = Instance.new("Animation")
  6823. Anim2.AnimationId = "rbxassetid://148840371"
  6824. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  6825. track2:Play(.1, 1, 1)
  6826. bplrr = v.Name
  6827. banpl = true
  6828. end
  6829. end
  6830. if string.sub(CMDBAR.Text, 1, 6) == ("unbang") then
  6831. banpl = false
  6832. end
  6833. if string.sub(CMDBAR.Text, 1, 9) == ("bringmod ") then
  6834. local function bringmodw()
  6835. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  6836. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  6837. for i,ch in pairs(obj:GetDescendants()) do
  6838. if (ch:IsA("BasePart")) then
  6839. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  6840. ch.CanCollide = false
  6841. ch.Transparency = 0.7
  6842. wait()
  6843. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  6844. wait()
  6845. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  6846. wait()
  6847. ch.CFrame = lplayer.Character["Head"].CFrame
  6848. end
  6849. end
  6850. end
  6851. end
  6852. end
  6853. while wait() do
  6854. bringmodw()
  6855. end
  6856. game:GetService("StarterGui"):SetCore("SendNotification", {
  6857. Title = "BringMod";
  6858. Text = "BringMod enabled.";
  6859. })
  6860. end
  6861. if string.sub(CMDBAR.Text, 1, 7) == ("respawn") then
  6862. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  6863. local hum = Instance.new('Humanoid', mod)
  6864. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  6865. lplayer.Character = mod
  6866. end
  6867. if string.sub(CMDBAR.Text, 1, 8) == ("shutdown") then
  6868. game:GetService'RunService'.Stepped:Connect(function()
  6869. pcall(function()
  6870. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  6871. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  6872. for _,x in pairs(v.Character.Head:GetChildren()) do
  6873. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  6874. end
  6875. end
  6876. end
  6877. end)
  6878. end)
  6879. game:GetService("StarterGui"):SetCore("SendNotification", {
  6880. Title = "Attempting Shutdown";
  6881. Text = "Shutdown Attempt has begun.";
  6882. })
  6883. end
  6884. if string.sub(CMDBAR.Text, 1, 7) == ("delobj ") then
  6885. objtodel = (string.sub(CMDBAR.Text, 8))
  6886. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  6887. if v.Name == objtodel then
  6888. v:Destroy()
  6889. end
  6890. end
  6891. end
  6892. if string.sub(CMDBAR.Text, 1, 7) == ("getplrs") then
  6893. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  6894. print(v)
  6895. end
  6896. game:GetService("StarterGui"):SetCore("SendNotification", {
  6897. Title = "Printed";
  6898. Text = "Players have been printed to console. (F9)";
  6899. })
  6900. end
  6901. if string.sub(CMDBAR.Text, 1, 8) == ("deldecal") then
  6902. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  6903. if (v:IsA("Decal")) then
  6904. v:Destroy()
  6905. end
  6906. end
  6907. end
  6908. if string.sub(CMDBAR.Text, 1, 10) == ("opfinality") then
  6909. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  6910. game:GetService("StarterGui"):SetCore("SendNotification", {
  6911. Title = "Success!";
  6912. Text = "OpFinality GUI has loaded.";
  6913. })
  6914. end
  6915. if string.sub(CMDBAR.Text, 1, 7) == ("remotes") then
  6916. remotes = true
  6917. added = true
  6918. game.DescendantAdded:connect(function(rmt)
  6919. if added == true then
  6920. if remotes == true then
  6921. if rmt:IsA("RemoteEvent") then
  6922. print("A RemoteEvent was added!")
  6923. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  6924. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  6925. end end end
  6926. end)
  6927. game.DescendantAdded:connect(function(rmtfnctn)
  6928. if added == true then
  6929. if remotes == true then
  6930. if rmtfnctn:IsA("RemoteFunction") then
  6931. warn("A RemoteFunction was added!")
  6932. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  6933. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  6934. end end end
  6935. end)
  6936.  
  6937. game.DescendantAdded:connect(function(bndfnctn)
  6938. if added == true then
  6939. if binds == true then
  6940. if bndfnctn:IsA("BindableFunction") then
  6941. print("A BindableFunction was added!")
  6942. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  6943. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  6944. end end end
  6945. end)
  6946.  
  6947. game.DescendantAdded:connect(function(bnd)
  6948. if added == true then
  6949. if binds == true then
  6950. if bnd:IsA("BindableEvent") then
  6951. warn("A BindableEvent was added!")
  6952. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  6953. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  6954. end end end
  6955. end)
  6956.  
  6957.  
  6958. if binds == true then
  6959. for i,v in pairs(game:GetDescendants()) do
  6960. if v:IsA("BindableFunction") then
  6961. print(" game." .. v:GetFullName() .. " | BindableFunction")
  6962. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  6963. end end
  6964. for i,v in pairs(game:GetDescendants()) do
  6965. if v:IsA("BindableEvent") then
  6966. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  6967. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  6968. end end
  6969. else
  6970. print("Off")
  6971. end
  6972. if remotes == true then
  6973. for i,v in pairs(game:GetDescendants()) do
  6974. if v:IsA("RemoteFunction") then
  6975. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  6976. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  6977. end end
  6978. wait()
  6979. for i,v in pairs(game:GetDescendants()) do
  6980. if v:IsA("RemoteEvent") then
  6981. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  6982. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  6983. end end
  6984. else
  6985. print("Off")
  6986. end
  6987. game:GetService("StarterGui"):SetCore("SendNotification", {
  6988. Title = "Printing Remotes";
  6989. Text = "Type ;noremotes to disable.";
  6990. })
  6991. end
  6992. if string.sub(CMDBAR.Text, 1, 9) == ("noremotes") then
  6993. remotes = false
  6994. added = false
  6995. game:GetService("StarterGui"):SetCore("SendNotification", {
  6996. Title = "Printing Remotes Disabled";
  6997. Text = "Type ;remotes to enable.";
  6998. })
  6999. end
  7000. if string.sub(CMDBAR.Text, 1, 9) == ("tpdefault") then
  7001. spin = false
  7002. followed = false
  7003. traill = false
  7004. noclip = false
  7005. annoying = false
  7006. hwalk = false
  7007. cbringing = false
  7008. end
  7009. if string.sub(CMDBAR.Text, 1, 7) == ("stopsit") then
  7010. stopsitting = true
  7011. end
  7012. if string.sub(CMDBAR.Text, 1, 5) == ("gosit") then
  7013. stopsitting = false
  7014. end
  7015. if string.sub(CMDBAR.Text, 1, 7) == ("version") then
  7016. print(adminversion)
  7017. game:GetService("StarterGui"):SetCore("SendNotification", {
  7018. Title = "Version";
  7019. Text = adminversion;
  7020. })
  7021. end
  7022. if string.sub(CMDBAR.Text, 1, 7) == ("clicktp") then
  7023. clickgoto = true
  7024. game:GetService("StarterGui"):SetCore("SendNotification", {
  7025. Title = "Click TP";
  7026. Text = "Press E to teleport to mouse position";
  7027. })
  7028. end
  7029. if string.sub(CMDBAR.Text, 1, 9) == ("noclicktp") then
  7030. clickgoto = false
  7031. game:GetService("StarterGui"):SetCore("SendNotification", {
  7032. Title = "Click TP";
  7033. Text = "Click TP has been disabled.";
  7034. })
  7035. end
  7036. if string.sub(CMDBAR.Text, 1, 7) == ("toolson") then
  7037. gettingtools = true
  7038. game:GetService("StarterGui"):SetCore("SendNotification", {
  7039. Title = "Tools Enabled";
  7040. Text = "Automatically colleting tools dropped.";
  7041. })
  7042. end
  7043. if string.sub(CMDBAR.Text, 1, 8) == ("toolsoff") then
  7044. gettingtools = false
  7045. game:GetService("StarterGui"):SetCore("SendNotification", {
  7046. Title = "Tools Disabled";
  7047. Text = "Click TP has been disabled.";
  7048. })
  7049. end
  7050. if string.sub(CMDBAR.Text, 1, 9) == ("delcmdbar") then
  7051. ScreenGui:Destroy()
  7052. end
  7053. if string.sub(CMDBAR.Text, 1, 5) == ("reset") then
  7054. lplayer.Character.Head:Destroy()
  7055. end
  7056. if string.sub(CMDBAR.Text, 1, 6) == ("state ") then
  7057. statechosen = string.sub(CMDBAR.Text, 7)
  7058. changingstate = true
  7059. end
  7060. if string.sub(CMDBAR.Text, 1, 8) == ("gravity ") then
  7061. game:GetService("Workspace").Gravity = string.sub(CMDBAR.Text, 9)
  7062. end
  7063. if string.sub(CMDBAR.Text, 1, 9) == ("looprhats") then
  7064. removingmeshhats = true
  7065. end
  7066. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprhats") then
  7067. removingmeshhats = false
  7068. end
  7069. if string.sub(CMDBAR.Text, 1, 9) == ("looprtool") then
  7070. removingmeshtool = true
  7071. end
  7072. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprtool") then
  7073. removingmeshtool = false
  7074. end
  7075. if string.sub(CMDBAR.Text, 1, 9) == ("givetool ") then
  7076. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  7077. if v:IsA("Tool") then
  7078. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  7079. v.Parent = player.Character
  7080. end
  7081. end
  7082. end
  7083. end
  7084. if string.sub(CMDBAR.Text, 1, 4) == ("age ") then
  7085. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  7086. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  7087. end
  7088. end
  7089. if string.sub(CMDBAR.Text, 1, 3) == ("id ") then
  7090. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 4))) do
  7091. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  7092. end
  7093. end
  7094. if string.sub(CMDBAR.Text, 1, 5) == (".age ") then
  7095. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  7096. game:GetService("StarterGui"):SetCore("SendNotification", {
  7097. Title = player.AccountAge.." Days";
  7098. Text = "Account age of "..player.Name;
  7099. })
  7100. end
  7101. end
  7102. if string.sub(CMDBAR.Text, 1, 4) == (".id ") then
  7103. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  7104. game:GetService("StarterGui"):SetCore("SendNotification", {
  7105. Title = player.UserId.." ID";
  7106. Text = "Account ID of "..player.Name;
  7107. })
  7108. end
  7109. end
  7110. if string.sub(CMDBAR.Text, 1, 6) == ("gameid") then
  7111. game:GetService("StarterGui"):SetCore("SendNotification", {
  7112. Title = "Game ID";
  7113. Text = "Game ID: ".. game.GameId;
  7114. })
  7115. end
  7116. if string.sub(CMDBAR.Text, 1, 3) == ("pgs") then
  7117. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  7118. if pgscheck == true then
  7119. game:GetService("StarterGui"):SetCore("SendNotification", {
  7120. Title = "PGSPhysicsSolverEnabled";
  7121. Text = "PGS is Enabled!";
  7122. })
  7123. else
  7124. game:GetService("StarterGui"):SetCore("SendNotification", {
  7125. Title = "PGSPhysicsSolverEnabled";
  7126. Text = "PGS is Disabled!";
  7127. })
  7128. end
  7129. end
  7130. if string.sub(CMDBAR.Text, 1, 11) == ("removeinvis") then
  7131. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  7132. if v:IsA("Part") then
  7133. if v.Transparency == 1 then
  7134. if v.Name ~= "HumanoidRootPart" then
  7135. v:Destroy()
  7136. end
  7137. end
  7138. end
  7139. end
  7140. end
  7141. if string.sub(CMDBAR.Text, 1, 9) == ("removefog") then
  7142. game:GetService("Lighting").FogStart = 0
  7143. game:GetService("Lighting").FogEnd = 9999999999999
  7144. end
  7145. if string.sub(CMDBAR.Text, 1, 7) == ("disable") then
  7146. lplayer.Character.Humanoid.Parent = lplayer
  7147. end
  7148. if string.sub(CMDBAR.Text, 1, 6) == ("enable") then
  7149. lplayer.Humanoid.Parent = lplayer.Character
  7150. end
  7151. if string.sub(CMDBAR.Text, 1, 13) == ("givealltools ") then
  7152. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  7153. if v:IsA("Tool") then
  7154. v.Parent = lplayer.Character
  7155. wait()
  7156. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 14))) do
  7157. v.Parent = player.Character
  7158. end
  7159. end
  7160. end
  7161. end
  7162. if string.sub(CMDBAR.Text, 1, 9) == ("flyspeed ") then
  7163. speedfly = string.sub(CMDBAR.Text, 10)
  7164. wait()
  7165. change()
  7166. end
  7167. if string.sub(CMDBAR.Text, 1, 7) == ("carpet ") then
  7168. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  7169. local Anim3 = Instance.new("Animation")
  7170. Anim3.AnimationId = "rbxassetid://282574440"
  7171. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  7172. track3:Play(.1, 1, 1)
  7173. bplrr = v.Name
  7174. banpl = true
  7175. end
  7176. end
  7177. if string.sub(CMDBAR.Text, 1, 8) == ("uncarpet") then
  7178. banpl = false
  7179. end
  7180. if string.sub(CMDBAR.Text, 1, 6) == ("stare ") then
  7181. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  7182. staring = true
  7183. stareplr = v
  7184. end
  7185. end
  7186. if string.sub(CMDBAR.Text, 1, 7) == ("unstare") then
  7187. staring = false
  7188. end
  7189. if string.sub(CMDBAR.Text, 1, 7) == ("logchat") then
  7190. chatlogs = true
  7191. game:GetService("StarterGui"):SetCore("SendNotification", {
  7192. Title = "LogChat enabled";
  7193. Text = "Now logging all player chat.";
  7194. })
  7195. end
  7196. if string.sub(CMDBAR.Text, 1, 9) == ("unlogchat") then
  7197. chatlogs = false
  7198. game:GetService("StarterGui"):SetCore("SendNotification", {
  7199. Title = "LogChat disabled";
  7200. Text = "Stopped logging all player chat.";
  7201. })
  7202. end
  7203. if string.sub(CMDBAR.Text, 1, 6) == ("fixcam") then
  7204. game:GetService("Workspace").CurrentCamera:Destroy()
  7205. wait(0.1)
  7206. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  7207. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  7208. lplayer.CameraMinZoomDistance = 0.5
  7209. lplayer.CameraMaxZoomDistance = 400
  7210. lplayer.CameraMode = "Classic"
  7211. end
  7212. if string.sub(CMDBAR.Text, 1, 7) == ("unstate") then
  7213. changingstate = false
  7214. end
  7215. CMDBAR.Text = ""
  7216. end
  7217. end)
  7218.  
  7219. wait(0.3)
  7220. game:GetService("StarterGui"):SetCore("SendNotification", {
  7221. Title = "Loaded successfully!";
  7222. Text = "Reviz Admin V2 by illremember";
  7223. })
  7224. wait(0.1)
  7225. print("Reviz Admin V2 loaded!")
  7226. if game:GetService("Workspace").FilteringEnabled == true then
  7227. warn("FE is Enabled (Filtering Enabled)")
  7228. game:GetService("StarterGui"):SetCore("SendNotification", {
  7229. Title = "FE is Enabled";
  7230. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  7231. })
  7232. else
  7233. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  7234. game:GetService("StarterGui"):SetCore("SendNotification", {
  7235. Title = "FE is Disabled";
  7236. Text = "Filtering Disabled. Consider using a different admin script.";
  7237. })
  7238. end
  7239.  
  7240. local intro = Instance.new("ScreenGui")
  7241. local Frame = Instance.new("Frame")
  7242. local ImageLabel = Instance.new("ImageLabel")
  7243. intro.Parent = game:GetService("CoreGui")
  7244. Frame.Parent = intro
  7245. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  7246. Frame.BackgroundTransparency = 1
  7247. Frame.Size = UDim2.new(1, 0, 0, 300)
  7248. Frame.Position = UDim2.new(0, 0, -0.4, 0)
  7249. ImageLabel.Parent = Frame
  7250. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  7251. ImageLabel.BackgroundTransparency = 1
  7252. ImageLabel.Position = UDim2.new(0, 0, 0, 0)
  7253. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  7254. ImageLabel.Image = "http://www.roblox.com/asset/?id=1542162618"
  7255. Frame:TweenPosition(UDim2.new(0, 0, 0.2, 0), "Out", "Elastic", 3)
  7256. wait(3.01)
  7257. Frame:TweenPosition(UDim2.new(0, 0, 1.5, 0), "Out", "Elastic", 5)
  7258. wait(5.01)
  7259. intro:Destroy()
  7260. end)
  7261.  
  7262. JoJoHub.Name = "JoJoHub"
  7263. JoJoHub.Parent = Frame
  7264. JoJoHub.BackgroundColor3 = Color3.new(1, 1, 1)
  7265. JoJoHub.Position = UDim2.new(0, 0, 3.76803946, 0)
  7266. JoJoHub.Size = UDim2.new(0, 200, 0, 50)
  7267. JoJoHub.Font = Enum.Font.SourceSans
  7268. JoJoHub.Text = "JoJohub"
  7269. JoJoHub.TextColor3 = Color3.new(0, 0, 0)
  7270. JoJoHub.TextScaled = true
  7271. JoJoHub.TextSize = 14
  7272. JoJoHub.TextWrapped = true
  7273. JoJoHub.MouseButton1Down:connect(function()
  7274. loadstring(game:HttpGet("https://pastebin.com/raw/LmnGXWup", true))()
  7275. end)
  7276.  
  7277. PrisionLife.Name = "PrisionLife"
  7278. PrisionLife.Parent = Frame
  7279. PrisionLife.BackgroundColor3 = Color3.new(1, 1, 1)
  7280. PrisionLife.Position = UDim2.new(0.366609275, 0, 3.76803946, 0)
  7281. PrisionLife.Size = UDim2.new(0, 154, 0, 50)
  7282. PrisionLife.Font = Enum.Font.SourceSans
  7283. PrisionLife.Text = "Prision life"
  7284. PrisionLife.TextColor3 = Color3.new(0, 0, 0)
  7285. PrisionLife.TextScaled = true
  7286. PrisionLife.TextSize = 14
  7287. PrisionLife.TextWrapped = true
  7288. PrisionLife.MouseButton1Down:connect(function()
  7289. local PrisonBreakerv13 = Instance.new("ScreenGui")
  7290. local main = Instance.new("Frame")
  7291. local title = Instance.new("TextLabel")
  7292. local credits = Instance.new("TextLabel")
  7293. local police = Instance.new("TextButton")
  7294. local inmate = Instance.new("TextButton")
  7295. local neutral = Instance.new("TextButton")
  7296. local arrestcrims = Instance.new("TextButton")
  7297. local invis = Instance.new("TextButton")
  7298. local superpunch = Instance.new("TextButton")
  7299. local guns = Instance.new("TextButton")
  7300. local taserbypass = Instance.new("TextButton")
  7301. local fling = Instance.new("TextButton")
  7302. local reviz = Instance.new("TextButton")
  7303. local arrest = Instance.new("TextButton")
  7304. local attach = Instance.new("TextButton")
  7305. local fastrem = Instance.new("TextButton")
  7306. local fastm9 = Instance.new("TextButton")
  7307. local fasttaze = Instance.new("TextButton")
  7308. local fastak = Instance.new("TextButton")
  7309. local killothers = Instance.new("TextButton")
  7310. local btools = Instance.new("TextButton")
  7311. local speed = Instance.new("TextButton")
  7312. local escape = Instance.new("TextButton")
  7313. local label = Instance.new("TextLabel")
  7314. local prison = Instance.new("TextButton")
  7315. local yard = Instance.new("TextButton")
  7316. local crimbase = Instance.new("TextButton")
  7317. local aimbot = Instance.new("TextButton")
  7318. local respawn = Instance.new("TextButton")
  7319. local lag = Instance.new("TextButton")
  7320. --Properties:
  7321. PrisonBreakerv13.Name = "PrisonBreaker v1.3"
  7322. PrisonBreakerv13.Parent = game.CoreGui
  7323.  
  7324. main.Name = "main"
  7325. main.Parent = PrisonBreakerv13
  7326. main.BackgroundColor3 = Color3.new(0, 1, 0)
  7327. main.Position = UDim2.new(0.00947120413, 0, 0.311656445, 0)
  7328. main.Size = UDim2.new(0, 383, 0, 538)
  7329. main.Active = true
  7330. main.Draggable = true
  7331.  
  7332. title.Name = "title"
  7333. title.Parent = main
  7334. title.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  7335. title.Size = UDim2.new(0, 381, 0, 50)
  7336. title.Font = Enum.Font.ArialBold
  7337. title.Text = "PrisonBreaker V1.3"
  7338. title.TextColor3 = Color3.new(0, 0, 0)
  7339. title.TextSize = 14
  7340.  
  7341. credits.Name = "credits"
  7342. credits.Parent = main
  7343. credits.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  7344. credits.Position = UDim2.new(0, 0, 0.925650537, 0)
  7345. credits.Size = UDim2.new(0, 381, 0, 40)
  7346. credits.Font = Enum.Font.Highway
  7347. credits.Text = "Made By JAKE11PRICE on YouTube"
  7348. credits.TextColor3 = Color3.new(0, 0, 0)
  7349. credits.TextSize = 14
  7350.  
  7351. police.Name = "police"
  7352. police.Parent = main
  7353. police.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  7354. police.Position = UDim2.new(0.0203045681, 0, 0.115241639, 0)
  7355. police.Size = UDim2.new(0, 111, 0, 32)
  7356. police.Font = Enum.Font.GothamBold
  7357. police.Text = "Team Police"
  7358. police.TextColor3 = Color3.new(0, 0, 0)
  7359. police.TextSize = 14
  7360. police.MouseButton1Down:connect(function()
  7361. workspace.Remote.TeamEvent:FireServer("Bright blue")
  7362. end)
  7363.  
  7364. inmate.Name = "inmate"
  7365. inmate.Parent = main
  7366. inmate.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  7367. inmate.Position = UDim2.new(0.3350254, 0, 0.115241639, 0)
  7368. inmate.Size = UDim2.new(0, 111, 0, 32)
  7369. inmate.Font = Enum.Font.GothamBold
  7370. inmate.Text = "Team Inmate"
  7371. inmate.TextColor3 = Color3.new(0, 0, 0)
  7372. inmate.TextSize = 14
  7373. inmate.MouseButton1Down:connect(function()
  7374. workspace.Remote.TeamEvent:FireServer("Bright orange")
  7375. end)
  7376.  
  7377. neutral.Name = "neutral"
  7378. neutral.Parent = main
  7379. neutral.BackgroundColor3 = Color3.new(0.772549, 0.74902, 0.784314)
  7380. neutral.Position = UDim2.new(0.657360375, 0, 0.115241639, 0)
  7381. neutral.Size = UDim2.new(0, 111, 0, 32)
  7382. neutral.Font = Enum.Font.GothamBold
  7383. neutral.Text = "Team Neutral"
  7384. neutral.TextColor3 = Color3.new(0, 0, 0)
  7385. neutral.TextSize = 14
  7386. neutral.MouseButton1Down:connect(function()
  7387. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  7388. end)
  7389.  
  7390. arrestcrims.Name = "arrestcrims"
  7391. arrestcrims.Parent = main
  7392. arrestcrims.BackgroundColor3 = Color3.new(1, 0, 0)
  7393. arrestcrims.Position = UDim2.new(0.0203045681, 0, 0.18959108, 0)
  7394. arrestcrims.Size = UDim2.new(0, 111, 0, 31)
  7395. arrestcrims.Font = Enum.Font.GothamBold
  7396. arrestcrims.Text = "Arrest Crims"
  7397. arrestcrims.TextColor3 = Color3.new(0, 0, 0)
  7398. arrestcrims.TextSize = 14
  7399. arrestcrims.MouseButton1Down:connect(function()
  7400. local Player = game.Players.LocalPlayer
  7401. local cpos = Player.Character.HumanoidRootPart.CFrame
  7402. for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
  7403. if v.Name ~= Player.Name then
  7404. local i = 10
  7405. repeat
  7406. wait()
  7407. i = i-1
  7408. game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
  7409. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  7410. until i == 0
  7411. end
  7412. end
  7413. Player.Character.HumanoidRootPart.CFrame = cpos
  7414. Notify("Success", "Arrested all of the n00bs", "Cool!")
  7415. end)
  7416.  
  7417. invis.Name = "invis"
  7418. invis.Parent = main
  7419. invis.BackgroundColor3 = Color3.new(1, 0, 0)
  7420. invis.Position = UDim2.new(0.332487345, 0, 0.18959108, 0)
  7421. invis.Size = UDim2.new(0, 111, 0, 31)
  7422. invis.Font = Enum.Font.GothamBold
  7423. invis.Text = "Invisible"
  7424. invis.TextColor3 = Color3.new(0, 0, 0)
  7425. invis.TextSize = 14
  7426. invis.MouseButton1Down:connect(function()
  7427. local player = game.Players.LocalPlayer
  7428. position = player.Character.HumanoidRootPart.Position
  7429. wait(0.1)
  7430. player.Character:MoveTo(position + Vector3.new(0, 1000000, 0))
  7431. wait(0.1)
  7432. humanoidrootpart = player.Character.HumanoidRootPart:clone()
  7433. wait(0.1)
  7434. player.Character.HumanoidRootPart:Destroy()
  7435. humanoidrootpart.Parent = player.Character
  7436. player.Character:MoveTo(position)
  7437. wait()
  7438. end)
  7439.  
  7440. superpunch.Name = "superpunch"
  7441. superpunch.Parent = main
  7442. superpunch.BackgroundColor3 = Color3.new(1, 0, 0)
  7443. superpunch.Position = UDim2.new(0.657360375, 0, 0.18959108, 0)
  7444. superpunch.Size = UDim2.new(0, 111, 0, 31)
  7445. superpunch.Font = Enum.Font.GothamBold
  7446. superpunch.Text = "SuperPunch"
  7447. superpunch.TextColor3 = Color3.new(0, 0, 0)
  7448. superpunch.TextSize = 14
  7449. superpunch.MouseButton1Down:connect(function()
  7450. mainRemotes = game.ReplicatedStorage meleeRemote = mainRemotes['meleeEvent'] mouse = game.Players.LocalPlayer:GetMouse() punching = false cooldown = false function punch() cooldown = true local part = Instance.new("Part", game.Players.LocalPlayer.Character) part.Transparency = 1 part.Size = Vector3.new(5, 2, 3) part.CanCollide = false local w1 = Instance.new("Weld", part) w1.Part0 = game.Players.LocalPlayer.Character.Torso w1.Part1 = part w1.C1 = CFrame.new(0,0,2) part.Touched:connect(function(hit) if game.Players:FindFirstChild(hit.Parent.Name) then local plr = game.Players:FindFirstChild(hit.Parent.Name) if plr.Name ~= game.Players.LocalPlayer.Name then part:Destroy() for i = 1,100 do meleeRemote:FireServer(plr) end end end end) wait(1) cooldown = false part:Destroy() end mouse.KeyDown:connect(function(key) if cooldown == false then if key:lower() == "f" then punch() end end end)
  7451. end)
  7452.  
  7453. guns.Name = "guns"
  7454. guns.Parent = main
  7455. guns.BackgroundColor3 = Color3.new(1, 0, 0)
  7456. guns.Position = UDim2.new(0.0203045681, 0, 0.262081772, 0)
  7457. guns.Size = UDim2.new(0, 111, 0, 32)
  7458. guns.Font = Enum.Font.GothamBlack
  7459. guns.Text = "Guns"
  7460. guns.TextColor3 = Color3.new(0, 0, 0)
  7461. guns.TextSize = 14
  7462. guns.MouseButton1Down:connect(function()
  7463. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  7464.  
  7465. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  7466. print(lol)
  7467. end
  7468. end)
  7469.  
  7470. taserbypass.Name = "taserbypass"
  7471. taserbypass.Parent = main
  7472. taserbypass.BackgroundColor3 = Color3.new(1, 0, 0)
  7473. taserbypass.Position = UDim2.new(0.33502537, 0, 0.262081772, 0)
  7474. taserbypass.Size = UDim2.new(0, 111, 0, 32)
  7475. taserbypass.Font = Enum.Font.GothamBold
  7476. taserbypass.Text = "Taser Bypass"
  7477. taserbypass.TextColor3 = Color3.new(0, 0, 0)
  7478. taserbypass.TextSize = 14
  7479. taserbypass.MouseButton1Down:connect(function()
  7480. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  7481. game.Players.LocalPlayer.CharacterAdded:connect(function()
  7482. game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
  7483. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  7484. end)
  7485. local message = Instance.new("Message",game.Workspace)
  7486. message.Text = 'Made By Jake11price'
  7487. wait(2)
  7488. message:Destroy()
  7489. end)
  7490.  
  7491. fling.Name = "fling"
  7492. fling.Parent = main
  7493. fling.BackgroundColor3 = Color3.new(1, 0, 0)
  7494. fling.Position = UDim2.new(0.657360375, 0, 0.262081772, 0)
  7495. fling.Size = UDim2.new(0, 111, 0, 32)
  7496. fling.Font = Enum.Font.GothamBold
  7497. fling.Text = "Fling"
  7498. fling.TextColor3 = Color3.new(0, 0, 0)
  7499. fling.TextSize = 14
  7500. fling.MouseButton1Down:connect(function()
  7501. --fe fling script, modified by CDrom202 for R6
  7502.  
  7503. power = 300 -- change this to make it more or less powerful
  7504.  
  7505. game:GetService('RunService').Stepped:connect(function()
  7506. game.Players.LocalPlayer.Character.Head.CanCollide = false
  7507. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  7508. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  7509. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  7510. end)
  7511.  
  7512. wait(.1)
  7513. local bambam = Instance.new("BodyThrust")
  7514. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  7515. bambam.Force = Vector3.new(power,0,power)
  7516. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  7517. end)
  7518.  
  7519. reviz.Name = "reviz"
  7520. reviz.Parent = main
  7521. reviz.BackgroundColor3 = Color3.new(1, 0, 0)
  7522. reviz.Position = UDim2.new(0.0183727033, 0, 0.332713753, 0)
  7523. reviz.Size = UDim2.new(0, 111, 0, 32)
  7524. reviz.Font = Enum.Font.GothamBold
  7525. reviz.Text = "Reviz Admin"
  7526. reviz.TextColor3 = Color3.new(0, 0, 0)
  7527. reviz.TextSize = 14
  7528. reviz.MouseButton1Down:connect(function()
  7529. -- Creator: illremember#3799
  7530.  
  7531. -- Credits to infinite yield, harkinian, dex creators
  7532.  
  7533. prefix = ";"
  7534. wait(0.3)
  7535. Commands = {
  7536. '[-] cmdbar is shown when ; is pressed.',
  7537. '[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player',
  7538. '[2] bring [plr] -- You need a tool! Will bring player to you',
  7539. '[3] spin [plr] -- You need a tool! Makes you and the player spin crazy',
  7540. '[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting',
  7541. '[5] attach [plr] -- You need a tool! Attaches you to player',
  7542. '[6] unattach [plr] -- Attempts to unattach you from a player',
  7543. '[7] follow [plr] -- Makes you follow behind the player',
  7544. '[8] unfollow',
  7545. '[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air',
  7546. '[10] trail [plr] -- The opposite of follow, you stay infront of player',
  7547. '[11] untrail',
  7548. '[12] orbit [plr] -- Makes you orbit the player',
  7549. '[13] unorbit',
  7550. '[14] fling [plr] -- Makes you fling the player',
  7551. '[15] unfling',
  7552. '[16] fecheck -- Checks if the game is FE or not',
  7553. '[17] void [plr] -- Teleports player to the void',
  7554. '[18] noclip -- Gives you noclip to walk through walls',
  7555. '[19] clip -- Removes noclip',
  7556. '[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default',
  7557. '[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default',
  7558. '[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default',
  7559. '[23] default -- Changes your speed, jumppower and hipheight to default values',
  7560. '[24] annoy [plr] -- Loop teleports you to the player',
  7561. '[25] unannoy',
  7562. '[26] headwalk [plr] -- Loop teleports you to the player head',
  7563. '[27] unheadwalk',
  7564. '[28] nolimbs -- Removes your arms and legs',
  7565. '[29] god -- Gives you FE Godmode',
  7566. '[30] drophats -- Drops your accessories',
  7567. '[31] droptool -- Drops any tool you have equipped',
  7568. '[32] loopdhats -- Loop drops your accessories',
  7569. '[33] unloopdhats',
  7570. '[34] loopdtool -- Loop drops any tools you have equipped',
  7571. '[35] unloopdtool',
  7572. '[36] invisible -- Gives you invisibility CREDIT TO TIMELESS',
  7573. '[37] view [plr] -- Changes your camera to the player character',
  7574. '[38] unview',
  7575. '[39] goto [plr] -- Teleports you to player',
  7576. '[40] fly -- Allows you to fly, credit to Infinite Yield',
  7577. '[41] unfly',
  7578. '[42] chat [msg] -- Makes you chat a message',
  7579. '[43] spam [msg] -- Spams a message',
  7580. '[44] unspam',
  7581. '[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second',
  7582. '[46] pmspam [plr] -- Spams a player in private message',
  7583. '[47] unpmspam',
  7584. '[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you',
  7585. '[49] uncfreeze [plr]',
  7586. '[50] unlockws -- Unlocks the workspace',
  7587. '[51] lockws -- Locks the workspace',
  7588. '[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you',
  7589. '[53] pstand -- Enables platform stand',
  7590. '[54] unpstand -- Disables platform stand',
  7591. '[55] blockhead -- Removes your head mesh',
  7592. '[56] sit',
  7593. '[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',
  7594. '[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided',
  7595. '[59] hypertotal -- Loads in my FE GUI Hypertotal',
  7596. '[60] cmds -- Prints all commands',
  7597. '[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats',
  7598. '[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool',
  7599. '[63] spinner -- Makes you spin',
  7600. '[64] nospinner',
  7601. '[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom',
  7602. '[66] noreach -- Removes reach, must have tool equipped',
  7603. '[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying',
  7604. '[68] tp me [plr] -- Alternative to goto',
  7605. '[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player',
  7606. '[70] uncbring',
  7607. '[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players',
  7608. '[72] givetool [plr] -- Gives the tool you have equipped to the player',
  7609. '[73] glitch [plr] -- Glitches you and the player, looks very cool',
  7610. '[74] unglitch -- Unglitches you',
  7611. '[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode',
  7612. '[76] explorer -- Loads up DEX',
  7613. '[77] reset -- Resets your character.',
  7614. '[78] anim [id] -- Applies an animation on you, must be created by ROBLOX',
  7615. '[79] animgui -- Loads up Energize animations GUI',
  7616. '[80] savepos -- Saves your current position',
  7617. '[81] loadpos -- Teleports you to your saved position',
  7618. '[82] bang [plr] -- 18+ will not work if you have FE Godmode on',
  7619. '[83] unbang',
  7620. '[84] delcmdbar -- Removes the command bar completely',
  7621. '[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model',
  7622. '[86] shutdown -- Uses harkinians script to shutdown server',
  7623. '[87] respawn -- If grespawn doesnt work you can use respawn',
  7624. '[88] delobj [obj] -- Deletes a certain brick in workspace, client sided',
  7625. '[89] getplrs -- Prints all players in game',
  7626. '[90] deldecal -- Deletes all decals client sided',
  7627. '[91] opfinality -- Loads in my FE GUI Opfinality',
  7628. '[92] remotes -- Prints all remotes in the game in the console when added',
  7629. '[93] noremotes -- Stops printing remotes',
  7630. '[94] tpdefault -- Stops all loop teleports to a player',
  7631. '[95] stopsit -- Will not allow you to sit',
  7632. '[96] gosit -- Allows you to sit',
  7633. '[97] clicktp -- Enables click tp',
  7634. '[98] noclicktp -- Disables click tp',
  7635. '[99] toolson -- If any tools are dropped in the workspace you will automatically get them',
  7636. '[100] toolsoff -- Stops ;toolson',
  7637. '[101] version -- Gets the admin version',
  7638. '[102] state [num] -- Changes your humanoid state, ;unstate to stop.',
  7639. '[103] gravity [num] -- Changes workspace gravity default is 196.2',
  7640. '[104] pgs -- Checks if the game has PGSPhysicsSolverEnabled enabled',
  7641. '[105] clickdel -- Delete any block you press q on, client sided',
  7642. '[106] noclickdel -- Stops clickdel',
  7643. '[107] looprhats -- Loop removes mesh of your hats/loop block hats',
  7644. '[108] unlooprhats -- Stops loop removing mesh',
  7645. '[109] looprtool -- Loop removes mesh of your tool/loop block tools',
  7646. '[110] unlooprtool -- Stops loop removing mesh',
  7647. '[111] givealltools [plr] -- Gives all the tools you have in your backpack to the player',
  7648. '[112] age [plr] -- Makes you chat the account age of the player',
  7649. '[113] id [plr] -- Makes you chat the account ID of the player',
  7650. '[114] .age [plr] -- Privately shows you the account age of the player',
  7651. '[115] .id [plr] -- Privately shows you the account ID of the player',
  7652. '[116] gameid -- Shows the game ID',
  7653. '[117] removeinvis -- Removes all invisible walls/parts, client sided',
  7654. '[118] removefog -- Removes fog, client sided',
  7655. '[119] disable -- Disables your character by removing humanoid',
  7656. '[120] enable -- Enables your character by adding humanoid',
  7657. '[121] prefix [key] -- Changes the prefix used, default is ;',
  7658. '[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.',
  7659. '[123] flyspeed [num] -- Change your fly speed, default is 1',
  7660. '[124] carpet [plr] -- Makes you a carpet for a player, will not work if FE Godmode is on',
  7661. '[125] uncarpet -- Stops carpet player',
  7662. '[126] stare [plr] -- Turns your character to stare at another player',
  7663. '[127] unstare -- Stops stare player',
  7664. '[128] logchat -- Logs all chat (including /e and whispers) of all players',
  7665. '[129] unlogchat -- Disables logchat',
  7666. '[130] fixcam -- Fixes/resets your camera',
  7667. '[131] unstate -- Stops changing state',
  7668. }
  7669. speedget = 1
  7670.  
  7671. lplayer = game:GetService("Players").LocalPlayer
  7672.  
  7673. lplayer.CharacterAdded:Connect(function(character)
  7674. spin = false
  7675. flying = false
  7676. staring = false
  7677. banpl = false
  7678. end)
  7679.  
  7680. function change()
  7681. prefix = prefix
  7682. speedfly = speedfly
  7683. end
  7684.  
  7685. function GetPlayer(String) -- Credit to Timeless/xFunnieuss
  7686. local Found = {}
  7687. local strl = String:lower()
  7688. if strl == "all" then
  7689. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  7690. table.insert(Found,v)
  7691. end
  7692. elseif strl == "others" then
  7693. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  7694. if v.Name ~= lplayer.Name then
  7695. table.insert(Found,v)
  7696. end
  7697. end
  7698. elseif strl == "me" then
  7699. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  7700. if v.Name == lplayer.Name then
  7701. table.insert(Found,v)
  7702. end
  7703. end
  7704. else
  7705. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  7706. if v.Name:lower():sub(1, #String) == String:lower() then
  7707. table.insert(Found,v)
  7708. end
  7709. end
  7710. end
  7711. return Found
  7712. end
  7713.  
  7714. local Mouse = lplayer:GetMouse()
  7715.  
  7716. spin = false
  7717. followed = false
  7718. traill = false
  7719. noclip = false
  7720. annoying = false
  7721. hwalk = false
  7722. droppinghats = false
  7723. droppingtools = false
  7724. flying = false
  7725. spamdelay = 1
  7726. spamming = false
  7727. spammingpm = false
  7728. cbringing = false
  7729. remotes = true
  7730. added = true
  7731. binds = false
  7732. stopsitting = false
  7733. clickgoto = false
  7734. gettingtools = false
  7735. removingmeshhats = false
  7736. removingmeshtool = false
  7737. clickdel = false
  7738. staring = false
  7739. chatlogs = false
  7740. banpl = false
  7741. changingstate = false
  7742. statechosen = 0
  7743.  
  7744. adminversion = "Reviz Admin by illremember, Version 2.0"
  7745.  
  7746. flying = false
  7747. speedfly = 1
  7748.  
  7749. function plrchat(plr, chat)
  7750. print(plr.Name..": "..tick().."\n"..chat)
  7751. end
  7752.  
  7753. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  7754. v.Chatted:connect(function(chat)
  7755. if chatlogs then
  7756. plrchat(v, chat)
  7757. end
  7758. end)
  7759. end
  7760. game:GetService("Players").PlayerAdded:connect(function(plr)
  7761. plr.Chatted:connect(function(chat)
  7762. if chatlogs then
  7763. plrchat(plr, chat)
  7764. end
  7765. end)
  7766. end)
  7767.  
  7768.  
  7769. local ScreenGui = Instance.new("ScreenGui")
  7770. local Frame = Instance.new("Frame")
  7771. local CMDBAR = Instance.new("TextBox")
  7772. ScreenGui.Parent = game:GetService("CoreGui")
  7773. Frame.Parent = ScreenGui
  7774. Frame.BackgroundColor3 = Color3.new(0.3, 0.1, 0.1)
  7775. Frame.BackgroundTransparency = 0.3
  7776. Frame.Position = UDim2.new(0.5, 0, 0, 10)
  7777. Frame.Size = UDim2.new(0, 200, 0, 40)
  7778. Frame.Active = true
  7779. Frame.Draggable = true
  7780. CMDBAR.Name = "CMDBAR"
  7781. CMDBAR.Parent = Frame
  7782. CMDBAR.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  7783. CMDBAR.BackgroundTransparency = 0.20000000298023
  7784. CMDBAR.Size = UDim2.new(0, 180, 0, 20)
  7785. CMDBAR.Position = UDim2.new(0.05, 0, 0.25, 0)
  7786. CMDBAR.Font = Enum.Font.SourceSansLight
  7787. CMDBAR.FontSize = Enum.FontSize.Size14
  7788. CMDBAR.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  7789. CMDBAR.TextScaled = true
  7790. CMDBAR.TextSize = 14
  7791. CMDBAR.TextWrapped = true
  7792. CMDBAR.Text = "Press ; to type, Enter to execute"
  7793.  
  7794. local CMDS = Instance.new("ScreenGui")
  7795. local CMDSFRAME = Instance.new("Frame")
  7796. local ScrollingFrame = Instance.new("ScrollingFrame")
  7797. local TextLabel = Instance.new("TextLabel")
  7798. local closegui = Instance.new("TextButton")
  7799. CMDS.Name = "CMDS"
  7800. CMDS.Parent = game:GetService("CoreGui")
  7801. CMDSFRAME.Name = "CMDSFRAME"
  7802. CMDSFRAME.Parent = CMDS
  7803. CMDSFRAME.Active = true
  7804. CMDSFRAME.BackgroundColor3 = Color3.new(0.223529, 0.231373, 0.309804)
  7805. CMDSFRAME.BorderSizePixel = 0
  7806. CMDSFRAME.Draggable = true
  7807. CMDSFRAME.Position = UDim2.new(0, 315, 0, 100)
  7808. CMDSFRAME.Size = UDim2.new(0, 275, 0, 275)
  7809. CMDSFRAME.Visible = false
  7810. ScrollingFrame.Parent = CMDSFRAME
  7811. ScrollingFrame.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.203922)
  7812. ScrollingFrame.BorderSizePixel = 0
  7813. ScrollingFrame.Position = UDim2.new(0, 0, 0.0729999989, 0)
  7814. ScrollingFrame.Size = UDim2.new(1.04999995, 0, 0.92900002, 0)
  7815. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
  7816. TextLabel.Parent = ScrollingFrame
  7817. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  7818. TextLabel.BackgroundTransparency = 1
  7819. TextLabel.Size = UDim2.new(0.930000007, 0, 1, 0)
  7820. TextLabel.Font = Enum.Font.SourceSans
  7821. TextLabel.FontSize = Enum.FontSize.Size18
  7822. 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."
  7823. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  7824. TextLabel.TextSize = 15
  7825. TextLabel.TextWrapped = true
  7826. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  7827. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  7828. closegui.Name = "closegui"
  7829. closegui.Parent = CMDSFRAME
  7830. closegui.BackgroundColor3 = Color3.new(0.890196, 0.223529, 0.0588235)
  7831. closegui.BorderSizePixel = 0
  7832. closegui.Position = UDim2.new(0.995000005, 0, 0, 0)
  7833. closegui.Size = UDim2.new(0.0545952693, 0, 0.0728644878, 0)
  7834. closegui.Font = Enum.Font.SourceSansBold
  7835. closegui.FontSize = Enum.FontSize.Size24
  7836. closegui.Text = "X"
  7837. closegui.TextColor3 = Color3.new(1, 1, 1)
  7838. closegui.TextSize = 20
  7839.  
  7840. closegui.MouseButton1Click:connect(function()
  7841. CMDSFRAME.Visible = false
  7842. end)
  7843.  
  7844. game:GetService('RunService').Stepped:connect(function()
  7845. if spin then
  7846. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[spinplr.Name].Character.HumanoidRootPart.CFrame
  7847. end
  7848. if followed then
  7849. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * -5
  7850. end
  7851. if traill then
  7852. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * 5
  7853. end
  7854. if annoying then
  7855. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[annplr.Name].Character.HumanoidRootPart.CFrame
  7856. end
  7857. if hwalk then
  7858. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[hdwplr.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0, 4, 0)
  7859. end
  7860. if staring then
  7861. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(lplayer.Character.Torso.Position, game:GetService("Players")[stareplr.Name].Character.Torso.Position)
  7862. end
  7863. end)
  7864. game:GetService('RunService').Stepped:connect(function()
  7865. if noclip then
  7866. if lplayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  7867. lplayer.Character.Head.CanCollide = false
  7868. lplayer.Character.Torso.CanCollide = false
  7869. lplayer.Character["Left Leg"].CanCollide = false
  7870. lplayer.Character["Right Leg"].CanCollide = false
  7871. else
  7872. lplayer.Character.Humanoid:ChangeState(11)
  7873. end
  7874. end
  7875. if changingstate then
  7876. lplayer.Character.Humanoid:ChangeState(statechosen)
  7877. end
  7878. end)
  7879. game:GetService('RunService').Stepped:connect(function()
  7880. if droppinghats then
  7881. for i,v in pairs(lplayer.Character:GetChildren()) do
  7882. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  7883. v.Parent = workspace
  7884. end
  7885. end
  7886. end
  7887. if droppingtools then
  7888. for i,v in pairs(lplayer.Character:GetChildren()) do
  7889. if (v:IsA("Tool")) then
  7890. v.Parent = workspace
  7891. end
  7892. end
  7893. end
  7894. if removingmeshhats then
  7895. for i,v in pairs(lplayer.Character:GetChildren()) do
  7896. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  7897. v.Handle.Mesh:Destroy()
  7898. end
  7899. end
  7900. end
  7901. if removingmeshtool then
  7902. for i,v in pairs(lplayer.Character:GetChildren()) do
  7903. if (v:IsA("Tool")) then
  7904. v.Handle.Mesh:Destroy()
  7905. end
  7906. end
  7907. end
  7908. end)
  7909. game:GetService('RunService').Stepped:connect(function()
  7910. if banpl then
  7911. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[bplrr].Character.HumanoidRootPart.CFrame
  7912. end
  7913. end)
  7914. game:GetService('RunService').Stepped:connect(function()
  7915. if stopsitting then
  7916. lplayer.Character.Humanoid.Sit = false
  7917. end
  7918. end)
  7919.  
  7920. plr = lplayer
  7921. hum = plr.Character.HumanoidRootPart
  7922. mouse = plr:GetMouse()
  7923. mouse.KeyDown:connect(function(key)
  7924. if key == "e" then
  7925. if mouse.Target then
  7926. if clickgoto then
  7927. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  7928. elseif clickdel then
  7929. mouse.Target:Destroy()
  7930. end
  7931. end
  7932. end
  7933. end)
  7934.  
  7935. game:GetService("Workspace").ChildAdded:connect(function(part)
  7936. if gettingtools then
  7937. if part:IsA("Tool") then
  7938. part.Handle.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  7939. end
  7940. end
  7941. end)
  7942.  
  7943. lplayer.Chatted:Connect(function(msg)
  7944. if string.sub(msg, 1, 6) == (prefix.."kill ") then
  7945. if string.sub(msg, 7) == "me" then
  7946. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  7947. else
  7948. for i,v in pairs(GetPlayer(string.sub(msg, 7)))do
  7949. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  7950. lplayer.Character.Humanoid.Name = 1
  7951. local l = lplayer.Character["1"]:Clone()
  7952. l.Parent = lplayer.Character
  7953. l.Name = "Humanoid"
  7954. wait(0.1)
  7955. lplayer.Character["1"]:Destroy()
  7956. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  7957. lplayer.Character.Animate.Disabled = true
  7958. wait(0.1)
  7959. lplayer.Character.Animate.Disabled = false
  7960. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  7961. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  7962. lplayer.Character.Humanoid:EquipTool(v)
  7963. end
  7964. local function tp(player,player2)
  7965. local char1,char2=player.Character,player2.Character
  7966. if char1 and char2 then
  7967. char1:MoveTo(char2.Head.Position)
  7968. end
  7969. end
  7970. wait(0.1)
  7971. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  7972. wait(0.2)
  7973. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  7974. wait(0.5)
  7975. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  7976. wait(0.7)
  7977. tp(lplayer,game:GetService("Players")[v.Name])
  7978. wait(0.7)
  7979. lplayer.Character.HumanoidRootPart.CFrame = NOW
  7980. game:GetService("StarterGui"):SetCore("SendNotification", {
  7981. Title = "Tools needed!";
  7982. Text = "You need a tool in your backpack for this command!";
  7983. })
  7984. end
  7985. end
  7986. end
  7987. if string.sub(msg, 1, 7) == (prefix.."bring ") then
  7988. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  7989. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  7990. lplayer.Character.Humanoid.Name = 1
  7991. local l = lplayer.Character["1"]:Clone()
  7992. l.Parent = lplayer.Character
  7993. l.Name = "Humanoid"
  7994. wait(0.1)
  7995. lplayer.Character["1"]:Destroy()
  7996. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  7997. lplayer.Character.Animate.Disabled = true
  7998. wait(0.1)
  7999. lplayer.Character.Animate.Disabled = false
  8000. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8001. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  8002. lplayer.Character.Humanoid:EquipTool(v)
  8003. end
  8004. local function tp(player,player2)
  8005. local char1,char2=player.Character,player2.Character
  8006. if char1 and char2 then
  8007. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  8008. end
  8009. end
  8010. local function getout(player,player2)
  8011. local char1,char2=player.Character,player2.Character
  8012. if char1 and char2 then
  8013. char1:MoveTo(char2.Head.Position)
  8014. end
  8015. end
  8016. tp(game:GetService("Players")[v.Name], lplayer)
  8017. wait(0.2)
  8018. tp(game:GetService("Players")[v.Name], lplayer)
  8019. wait(0.5)
  8020. lplayer.Character.HumanoidRootPart.CFrame = NOW
  8021. wait(0.5)
  8022. getout(lplayer, game:GetService("Players")[v.Name])
  8023. wait(0.3)
  8024. lplayer.Character.HumanoidRootPart.CFrame = NOW
  8025. game:GetService("StarterGui"):SetCore("SendNotification", {
  8026. Title = "Tools needed!";
  8027. Text = "You need a tool in your backpack for this command!";
  8028. })
  8029. end
  8030. end
  8031. if string.sub(msg, 1, 6) == (prefix.."spin ") then
  8032. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  8033. lplayer.Character.Humanoid.Name = 1
  8034. local l = lplayer.Character["1"]:Clone()
  8035. l.Parent = lplayer.Character
  8036. l.Name = "Humanoid"
  8037. wait(0.1)
  8038. lplayer.Character["1"]:Destroy()
  8039. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  8040. lplayer.Character.Animate.Disabled = true
  8041. wait(0.1)
  8042. lplayer.Character.Animate.Disabled = false
  8043. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8044. lplayer.Character.Animate.Disabled = false
  8045. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  8046. lplayer.Character.Humanoid:EquipTool(v)
  8047. end
  8048. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  8049. spinplr = v
  8050. wait(0.5)
  8051. spin = true
  8052. game:GetService("StarterGui"):SetCore("SendNotification", {
  8053. Title = "Tools needed!";
  8054. Text = "You need a tool in your backpack for this command!";
  8055. })
  8056. end
  8057. end
  8058. if string.sub(msg, 1, 7) == (prefix.."unspin") then
  8059. spin = false
  8060. end
  8061. if string.sub(msg, 1, 8) == (prefix.."attach ") then
  8062. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  8063. lplayer.Character.Humanoid.Name = 1
  8064. local l = lplayer.Character["1"]:Clone()
  8065. l.Parent = lplayer.Character
  8066. l.Name = "Humanoid"
  8067. wait(0.1)
  8068. lplayer.Character["1"]:Destroy()
  8069. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  8070. lplayer.Character.Animate.Disabled = true
  8071. wait(0.1)
  8072. lplayer.Character.Animate.Disabled = false
  8073. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8074. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  8075. lplayer.Character.Humanoid:EquipTool(v)
  8076. end
  8077. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  8078. wait(0.3)
  8079. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  8080. attplr = v
  8081. game:GetService("StarterGui"):SetCore("SendNotification", {
  8082. Title = "Tools needed!";
  8083. Text = "You need a tool in your backpack for this command!";
  8084. })
  8085. end
  8086. end
  8087. if string.sub(msg, 1, 10) == (prefix.."unattach ") then
  8088. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  8089. local function getout(player,player2)
  8090. local char1,char2=player.Character,player2.Character
  8091. if char1 and char2 then
  8092. char1:MoveTo(char2.Head.Position)
  8093. end
  8094. end
  8095. getout(lplayer, game:GetService("Players")[v.Name])
  8096. end
  8097. end
  8098. if string.sub(msg, 1, 8) == (prefix.."follow ") then
  8099. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  8100. followed = true
  8101. flwplr = v
  8102. end
  8103. end
  8104. if string.sub(msg, 1, 9) == (prefix.."unfollow") then
  8105. followed = false
  8106. end
  8107. if string.sub(msg, 1, 10) == (prefix.."freefall ") then
  8108. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  8109. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  8110. lplayer.Character.Humanoid.Name = 1
  8111. local l = lplayer.Character["1"]:Clone()
  8112. l.Parent = lplayer.Character
  8113. l.Name = "Humanoid"
  8114. wait(0.1)
  8115. lplayer.Character["1"]:Destroy()
  8116. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  8117. lplayer.Character.Animate.Disabled = true
  8118. wait(0.1)
  8119. lplayer.Character.Animate.Disabled = false
  8120. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8121. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  8122. lplayer.Character.Humanoid:EquipTool(v)
  8123. end
  8124. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8125. wait(0.2)
  8126. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8127. wait(0.6)
  8128. lplayer.Character.HumanoidRootPart.CFrame = NOW
  8129. wait(0.6)
  8130. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  8131. game:GetService("StarterGui"):SetCore("SendNotification", {
  8132. Title = "Tools needed!";
  8133. Text = "You need a tool in your backpack for this command!";
  8134. })
  8135. end
  8136. end
  8137. if string.sub(msg, 1, 7) == (prefix.."trail ") then
  8138. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  8139. traill = true
  8140. trlplr = v
  8141. end
  8142. end
  8143. if string.sub(msg, 1, 8) == (prefix.."untrail") then
  8144. traill = false
  8145. end
  8146. if string.sub(msg, 1, 7) == (prefix.."orbit ") then
  8147. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  8148. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  8149. else
  8150. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  8151. local o = Instance.new("RocketPropulsion")
  8152. o.Parent = lplayer.Character.HumanoidRootPart
  8153. o.Name = "Orbit"
  8154. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  8155. o:Fire()
  8156. noclip = true
  8157. end
  8158. end
  8159. end
  8160. if string.sub(msg, 1, 8) == (prefix.."unorbit") then
  8161. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  8162. noclip = false
  8163. end
  8164. if string.sub(msg, 1, 7) == (prefix.."fling ") then
  8165. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  8166. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  8167. else
  8168. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  8169. local y = Instance.new("RocketPropulsion")
  8170. y.Parent = lplayer.Character.HumanoidRootPart
  8171. y.CartoonFactor = 1
  8172. y.MaxThrust = 800000
  8173. y.MaxSpeed = 1000
  8174. y.ThrustP = 200000
  8175. y.Name = "Fling"
  8176. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  8177. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  8178. y:Fire()
  8179. noclip = true
  8180. end
  8181. end
  8182. end
  8183. if string.sub(msg, 1, 8) == (prefix.."unfling") then
  8184. noclip = false
  8185. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  8186. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  8187. wait(0.4)
  8188. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  8189. end
  8190. if string.sub(msg, 1, 8) == (prefix.."fecheck") then
  8191. if game:GetService("Workspace").FilteringEnabled == true then
  8192. warn("FE is Enabled (Filtering Enabled)")
  8193. game:GetService("StarterGui"):SetCore("SendNotification", {
  8194. Title = "FE is Enabled";
  8195. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  8196. })
  8197. else
  8198. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  8199. game:GetService("StarterGui"):SetCore("SendNotification", {
  8200. Title = "FE is Disabled";
  8201. Text = "Filtering Disabled. Consider using a different admin script.";
  8202. })
  8203. end
  8204. end
  8205. if string.sub(msg, 1, 6) == (prefix.."void ") then
  8206. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  8207. lplayer.Character.Humanoid.Name = 1
  8208. local l = lplayer.Character["1"]:Clone()
  8209. l.Parent = lplayer.Character
  8210. l.Name = "Humanoid"
  8211. wait(0.1)
  8212. lplayer.Character["1"]:Destroy()
  8213. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  8214. lplayer.Character.Animate.Disabled = true
  8215. wait(0.1)
  8216. lplayer.Character.Animate.Disabled = false
  8217. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8218. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  8219. lplayer.Character.Humanoid:EquipTool(v)
  8220. end
  8221. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8222. wait(0.2)
  8223. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8224. wait(0.6)
  8225. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  8226. game:GetService("StarterGui"):SetCore("SendNotification", {
  8227. Title = "Tools needed!";
  8228. Text = "You need a tool in your backpack for this command!";
  8229. })
  8230. end
  8231. end
  8232. if string.sub(msg, 1, 7) == (prefix.."noclip") then
  8233. noclip = true
  8234. game:GetService("StarterGui"):SetCore("SendNotification", {
  8235. Title = "Noclip enabled";
  8236. Text = "Type ;clip to disable";
  8237. })
  8238. end
  8239. if string.sub(msg, 1, 5) == (prefix.."clip") then
  8240. noclip = false
  8241. game:GetService("StarterGui"):SetCore("SendNotification", {
  8242. Title = "Noclip disabled";
  8243. Text = "Type ;noclip to enable";
  8244. })
  8245. end
  8246. if string.sub(msg, 1, 7) == (prefix.."speed ") then
  8247. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 8))
  8248. end
  8249. if string.sub(msg, 1, 4) == (prefix.."ws ") then
  8250. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 5))
  8251. end
  8252. if string.sub(msg, 1, 11) == (prefix.."hipheight ") then
  8253. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 12))
  8254. end
  8255. if string.sub(msg, 1, 4) == (prefix.."hh ") then
  8256. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 5))
  8257. end
  8258. if string.sub(msg, 1, 11) == (prefix.."jumppower ") then
  8259. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 12))
  8260. end
  8261. if string.sub(msg, 1, 4) == (prefix.."jp ") then
  8262. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 5))
  8263. end
  8264. if string.sub(msg, 1, 8) == (prefix.."default") then
  8265. lplayer.Character.Humanoid.JumpPower = 50
  8266. lplayer.Character.Humanoid.WalkSpeed = 16
  8267. lplayer.Character.Humanoid.HipHeight = 0
  8268. end
  8269. if string.sub(msg, 1, 7) == (prefix.."annoy ") then
  8270. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  8271. annoying = true
  8272. annplr = v
  8273. end
  8274. end
  8275. if string.sub(msg, 1, 8) == (prefix.."unannoy") then
  8276. annoying = false
  8277. end
  8278. if string.sub(msg, 1, 10) == (prefix.."headwalk ") then
  8279. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  8280. hwalk = true
  8281. hdwplr = v
  8282. end
  8283. end
  8284. if string.sub(msg, 1, 11) == (prefix.."unheadwalk") then
  8285. hwalk = false
  8286. end
  8287. if string.sub(msg, 1, 8) == (prefix.."nolimbs") then
  8288. lplayer.Character["Left Leg"]:Destroy()
  8289. lplayer.Character["Left Arm"]:Destroy()
  8290. lplayer.Character["Right Leg"]:Destroy()
  8291. lplayer.Character["Right Arm"]:Destroy()
  8292. end
  8293. if string.sub(msg, 1, 4) == (prefix.."god") then
  8294. lplayer.Character.Humanoid.Name = 1
  8295. local l = lplayer.Character["1"]:Clone()
  8296. l.Parent = lplayer.Character
  8297. l.Name = "Humanoid"
  8298. wait(0.1)
  8299. lplayer.Character["1"]:Destroy()
  8300. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  8301. lplayer.Character.Animate.Disabled = true
  8302. wait(0.1)
  8303. lplayer.Character.Animate.Disabled = false
  8304. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8305. game:GetService("StarterGui"):SetCore("SendNotification", {
  8306. Title = "FE Godmode enabled";
  8307. Text = "Use ;grespawn or ;respawn to remove";
  8308. })
  8309. end
  8310. if string.sub(msg, 1, 9) == (prefix.."drophats") then
  8311. for i,v in pairs(lplayer.Character:GetChildren()) do
  8312. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  8313. v.Parent = workspace
  8314. end
  8315. end
  8316. end
  8317. if string.sub(msg, 1, 9) == (prefix.."droptool") then
  8318. for i,v in pairs(lplayer.Character:GetChildren()) do
  8319. if (v:IsA("Tool")) then
  8320. v.Parent = workspace
  8321. end
  8322. end
  8323. end
  8324. if string.sub(msg, 1, 10) == (prefix.."loopdhats") then
  8325. droppinghats = true
  8326. game:GetService("StarterGui"):SetCore("SendNotification", {
  8327. Title = "Loop Drop Enabled";
  8328. Text = "Type ;unloopdhats to disable";
  8329. })
  8330. end
  8331. if string.sub(msg, 1, 12) == (prefix.."unloopdhats") then
  8332. droppinghats = false
  8333. game:GetService("StarterGui"):SetCore("SendNotification", {
  8334. Title = "Loop Drop Disabled";
  8335. Text = "Type ;loopdhats to enable.";
  8336. })
  8337. end
  8338. if string.sub(msg, 1, 10) == (prefix.."loopdtool") then
  8339. droppingtools = true
  8340. game:GetService("StarterGui"):SetCore("SendNotification", {
  8341. Title = "Loop Drop Enabled";
  8342. Text = "Type ;unloopdtool to disable";
  8343. })
  8344. end
  8345. if string.sub(msg, 1, 12) == (prefix.."unloopdtool") then
  8346. droppingtools = false
  8347. game:GetService("StarterGui"):SetCore("SendNotification", {
  8348. Title = "Loop Drop Disabled";
  8349. Text = "Type ;loopdtool to enable.";
  8350. })
  8351. end
  8352. if string.sub(msg, 1, 10) == (prefix.."invisible") then -- Credit to Timeless
  8353. Local = game:GetService('Players').LocalPlayer
  8354. Char = Local.Character
  8355. touched,tpdback = false, false
  8356. box = Instance.new('Part',workspace)
  8357. box.Anchored = true
  8358. box.CanCollide = true
  8359. box.Size = Vector3.new(10,1,10)
  8360. box.Position = Vector3.new(0,10000,0)
  8361. box.Touched:connect(function(part)
  8362. if (part.Parent.Name == Local.Name) then
  8363. if touched == false then
  8364. touched = true
  8365. function apply()
  8366. if script.Disabled ~= true then
  8367. no = Char.HumanoidRootPart:Clone()
  8368. wait(.25)
  8369. Char.HumanoidRootPart:Destroy()
  8370. no.Parent = Char
  8371. Char:MoveTo(loc)
  8372. touched = false
  8373. end end
  8374. if Char then
  8375. apply()
  8376. end
  8377. end
  8378. end
  8379. end)
  8380. repeat wait() until Char
  8381. loc = Char.HumanoidRootPart.Position
  8382. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  8383. game:GetService("StarterGui"):SetCore("SendNotification", {
  8384. Title = "Invisibility enabled!";
  8385. Text = "Reset or use ;respawn to remove.";
  8386. })
  8387. end
  8388. if string.sub(msg, 1, 6) == (prefix.."view ") then
  8389. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  8390. if game:GetService("Players")[v.Name].Character.Humanoid then
  8391. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  8392. else
  8393. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  8394. end
  8395. end
  8396. end
  8397. if string.sub(msg, 1, 7) == (prefix.."unview") then
  8398. if lplayer.Character.Humanoid then
  8399. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  8400. else
  8401. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  8402. end
  8403. end
  8404. if string.sub(msg, 1, 6) == (prefix.."goto ") then
  8405. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  8406. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8407. end
  8408. end
  8409. if string.sub(msg, 1, 4) == (prefix.."fly") then
  8410. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  8411. repeat wait() until Mouse
  8412.  
  8413. local T = lplayer.Character.HumanoidRootPart
  8414. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  8415. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  8416. local SPEED = speedget
  8417.  
  8418. local function fly()
  8419. flying = true
  8420. local BG = Instance.new('BodyGyro', T)
  8421. local BV = Instance.new('BodyVelocity', T)
  8422. BG.P = 9e4
  8423. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  8424. BG.cframe = T.CFrame
  8425. BV.velocity = Vector3.new(0, 0.1, 0)
  8426. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  8427. spawn(function()
  8428. repeat wait()
  8429. lplayer.Character.Humanoid.PlatformStand = true
  8430. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  8431. SPEED = 50
  8432. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  8433. SPEED = 0
  8434. end
  8435. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  8436. 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
  8437. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  8438. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  8439. 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
  8440. else
  8441. BV.velocity = Vector3.new(0, 0.1, 0)
  8442. end
  8443. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  8444. until not flying
  8445. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  8446. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  8447. SPEED = 0
  8448. BG:destroy()
  8449. BV:destroy()
  8450. lplayer.Character.Humanoid.PlatformStand = false
  8451. end)
  8452. end
  8453. Mouse.KeyDown:connect(function(KEY)
  8454. if KEY:lower() == 'w' then
  8455. CONTROL.F = speedfly
  8456. elseif KEY:lower() == 's' then
  8457. CONTROL.B = -speedfly
  8458. elseif KEY:lower() == 'a' then
  8459. CONTROL.L = -speedfly
  8460. elseif KEY:lower() == 'd' then
  8461. CONTROL.R = speedfly
  8462. end
  8463. end)
  8464. Mouse.KeyUp:connect(function(KEY)
  8465. if KEY:lower() == 'w' then
  8466. CONTROL.F = 0
  8467. elseif KEY:lower() == 's' then
  8468. CONTROL.B = 0
  8469. elseif KEY:lower() == 'a' then
  8470. CONTROL.L = 0
  8471. elseif KEY:lower() == 'd' then
  8472. CONTROL.R = 0
  8473. end
  8474. end)
  8475. fly()
  8476. end
  8477. if string.sub(msg, 1, 6) == (prefix.."unfly") then
  8478. flying = false
  8479. lplayer.Character.Humanoid.PlatformStand = false
  8480. end
  8481. if string.sub(msg, 1, 6) == (prefix.."chat ") then
  8482. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(msg, 7)), "All")
  8483. end
  8484. if string.sub(msg, 1, 6) == (prefix.."spam ") then
  8485. spamtext = (string.sub(msg, 7))
  8486. spamming = true
  8487. end
  8488. if string.sub(msg, 1, 7) == (prefix.."unspam") then
  8489. spamming = false
  8490. end
  8491. if string.sub(msg, 1, 10) == (prefix.."spamwait ") then
  8492. spamdelay = (string.sub(msg, 11))
  8493. end
  8494. if string.sub(msg, 1, 8) == (prefix.."pmspam ") then
  8495. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  8496. pmspammed = v.Name
  8497. spammingpm = true
  8498. end
  8499. end
  8500. if string.sub(msg, 1, 9) == (prefix.."unpmspam") then
  8501. spammingpm = false
  8502. end
  8503. if string.sub(msg, 1, 9) == (prefix.."cfreeze ") then
  8504. for i,v in pairs(GetPlayer(string.sub(msg, 10))) do
  8505. v.Character["Left Leg"].Anchored = true
  8506. v.Character["Left Arm"].Anchored = true
  8507. v.Character["Right Leg"].Anchored = true
  8508. v.Character["Right Arm"].Anchored = true
  8509. v.Character.Torso.Anchored = true
  8510. v.Character.Head.Anchored = true
  8511. end
  8512. end
  8513. if string.sub(msg, 1, 11) == (prefix.."uncfreeze ") then
  8514. for i,v in pairs(GetPlayer(string.sub(msg, 12))) do
  8515. v.Character["Left Leg"].Anchored = false
  8516. v.Character["Left Arm"].Anchored = false
  8517. v.Character["Right Leg"].Anchored = false
  8518. v.Character["Right Arm"].Anchored = false
  8519. v.Character.Torso.Anchored = false
  8520. v.Character.Head.Anchored = false
  8521. end
  8522. end
  8523. if string.sub(msg, 1, 9) == (prefix.."unlockws") then
  8524. local a = game:GetService("Workspace"):getChildren()
  8525. for i = 1, #a do
  8526. if a[i].className == "Part" then
  8527. a[i].Locked = false
  8528. elseif a[i].className == "Model" then
  8529. local r = a[i]:getChildren()
  8530. for i = 1, #r do
  8531. if r[i].className == "Part" then
  8532. r[i].Locked = false
  8533. end
  8534. end
  8535. end
  8536. end
  8537. game:GetService("StarterGui"):SetCore("SendNotification", {
  8538. Title = "Success!";
  8539. Text = "Workspace unlocked. Use ;lockws to lock.";
  8540. })
  8541. end
  8542. if string.sub(msg, 1, 7) == (prefix.."lockws") then
  8543. local a = game:GetService("Workspace"):getChildren()
  8544. for i = 1, #a do
  8545. if a[i].className == "Part" then
  8546. a[i].Locked = true
  8547. elseif a[i].className == "Model" then
  8548. local r = a[i]:getChildren()
  8549. for i = 1, #r do
  8550. if r[i].className == "Part" then
  8551. r[i].Locked = true
  8552. end
  8553. end
  8554. end
  8555. end
  8556. end
  8557. if string.sub(msg, 1, 7) == (prefix.."btools") then
  8558. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  8559. Clone_T.BinType = "Clone"
  8560. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  8561. Destruct.BinType = "Hammer"
  8562. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  8563. Hold_T.BinType = "Grab"
  8564. end
  8565. if string.sub(msg, 1, 7) == (prefix.."pstand") then
  8566. lplayer.Character.Humanoid.PlatformStand = true
  8567. end
  8568. if string.sub(msg, 1, 9) == (prefix.."unpstand") then
  8569. lplayer.Character.Humanoid.PlatformStand = false
  8570. end
  8571. if string.sub(msg, 1, 10) == (prefix.."blockhead") then
  8572. lplayer.Character.Head.Mesh:Destroy()
  8573. end
  8574. if string.sub(msg, 1, 4) == (prefix.."sit") then
  8575. lplayer.Character.Humanoid.Sit = true
  8576. end
  8577. if string.sub(msg, 1, 10) == (prefix.."bringobj ") then
  8578. local function bringobjw()
  8579. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  8580. if obj.Name == (string.sub(msg, 11)) then
  8581. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  8582. obj.CanCollide = false
  8583. obj.Transparency = 0.7
  8584. wait()
  8585. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  8586. wait()
  8587. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  8588. wait()
  8589. obj.CFrame = lplayer.Character["Head"].CFrame
  8590. end
  8591. end
  8592. end
  8593. while wait() do
  8594. bringobjw()
  8595. end
  8596. game:GetService("StarterGui"):SetCore("SendNotification", {
  8597. Title = "BringObj";
  8598. Text = "BringObj enabled.";
  8599. })
  8600. end
  8601. if string.sub(msg, 1, 7) == (prefix.."wsvis ") then
  8602. vis = (string.sub(msg, 8))
  8603. local a = game:GetService("Workspace"):GetDescendants()
  8604. for i = 1, #a do
  8605. if a[i].className == "Part" then
  8606. a[i].Transparency = vis
  8607. elseif a[i].className == "Model" then
  8608. local r = a[i]:getChildren()
  8609. for i = 1, #r do
  8610. if r[i].className == "Part" then
  8611. r[i].Transparency = vis
  8612. end
  8613. end
  8614. end
  8615. end
  8616. end
  8617. if string.sub(msg, 1, 11) == (prefix.."hypertotal") then
  8618. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  8619. game:GetService("StarterGui"):SetCore("SendNotification", {
  8620. Title = "Success!";
  8621. Text = "HyperTotal GUI Loaded!";
  8622. })
  8623. end
  8624. if string.sub(msg, 1, 5) == (prefix.."cmds") then
  8625. CMDSFRAME.Visible = true
  8626. end
  8627. if string.sub(msg, 1, 10) == (prefix.."rmeshhats") then
  8628. for i,v in pairs(lplayer.Character:GetChildren()) do
  8629. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  8630. v.Handle.Mesh:Destroy()
  8631. end
  8632. end
  8633. end
  8634. if string.sub(msg, 1, 10) == (prefix.."blockhats") then
  8635. for i,v in pairs(lplayer.Character:GetChildren()) do
  8636. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  8637. v.Handle.Mesh:Destroy()
  8638. end
  8639. end
  8640. end
  8641. if string.sub(msg, 1, 10) == (prefix.."rmeshtool") then
  8642. for i,v in pairs(lplayer.Character:GetChildren()) do
  8643. if (v:IsA("Tool")) then
  8644. v.Handle.Mesh:Destroy()
  8645. end
  8646. end
  8647. end
  8648. if string.sub(msg, 1, 10) == (prefix.."blocktool") then
  8649. for i,v in pairs(lplayer.Character:GetChildren()) do
  8650. if (v:IsA("Tool")) then
  8651. v.Handle.Mesh:Destroy()
  8652. end
  8653. end
  8654. end
  8655. if string.sub(msg, 1, 8) == (prefix.."spinner") then
  8656. local p = Instance.new("RocketPropulsion")
  8657. p.Parent = lplayer.Character.HumanoidRootPart
  8658. p.Name = "Spinner"
  8659. p.Target = lplayer.Character["Left Arm"]
  8660. p:Fire()
  8661. game:GetService("StarterGui"):SetCore("SendNotification", {
  8662. Title = "Spinner enabled";
  8663. Text = "Type ;nospinner to disable.";
  8664. })
  8665. end
  8666. if string.sub(msg, 1, 10) == (prefix.."nospinner") then
  8667. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  8668. end
  8669. if string.sub(msg, 1, 7) == (prefix.."reachd") then
  8670. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  8671. if v:isA("Tool") then
  8672. local a = Instance.new("SelectionBox",v.Handle)
  8673. a.Adornee = v.Handle
  8674. v.Handle.Size = Vector3.new(0.5,0.5,60)
  8675. v.GripPos = Vector3.new(0,0,0)
  8676. lplayer.Character.Humanoid:UnequipTools()
  8677. end
  8678. end
  8679. game:GetService("StarterGui"):SetCore("SendNotification", {
  8680. Title = "Reach applied!";
  8681. Text = "Applied to equipped sword. Use ;noreach to disable.";
  8682. })
  8683. end
  8684. if string.sub(msg, 1, 7) == (prefix.."reach ") then
  8685. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  8686. if v:isA("Tool") then
  8687. handleSize = v.Handle.Size
  8688. wait()
  8689. local a = Instance.new("SelectionBox",v.Handle)
  8690. a.Name = "a"
  8691. a.Adornee = v.Handle
  8692. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(msg, 8)))
  8693. v.GripPos = Vector3.new(0,0,0)
  8694. lplayer.Character.Humanoid:UnequipTools()
  8695. end
  8696. end
  8697. game:GetService("StarterGui"):SetCore("SendNotification", {
  8698. Title = "Reach applied!";
  8699. Text = "Applied to equipped sword. Use ;noreach to disable.";
  8700. })
  8701. end
  8702. if string.sub(msg, 1, 8) == (prefix.."noreach") then
  8703. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  8704. if v:isA("Tool") then
  8705. v.Handle.a:Destroy()
  8706. v.Handle.Size = handleSize
  8707. end
  8708. end
  8709. game:GetService("StarterGui"):SetCore("SendNotification", {
  8710. Title = "Reach removed!";
  8711. Text = "Removed reach from equipped sword.";
  8712. })
  8713. end
  8714. if string.sub(msg, 1, 7) == (prefix.."rkill ") then
  8715. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  8716. lplayer.Character.Humanoid.Name = 1
  8717. local l = lplayer.Character["1"]:Clone()
  8718. l.Parent = lplayer.Character
  8719. l.Name = "Humanoid"
  8720. wait(0.1)
  8721. lplayer.Character["1"]:Destroy()
  8722. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  8723. lplayer.Character.Animate.Disabled = true
  8724. wait(0.1)
  8725. lplayer.Character.Animate.Disabled = false
  8726. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8727. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  8728. lplayer.Character.Humanoid:EquipTool(v)
  8729. end
  8730. wait(0.1)
  8731. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8732. wait(0.2)
  8733. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8734. wait(0.5)
  8735. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  8736. game:GetService("StarterGui"):SetCore("SendNotification", {
  8737. Title = "Tools needed!";
  8738. Text = "You need a tool in your backpack for this command!";
  8739. })
  8740. end
  8741. end
  8742. if string.sub(msg, 1, 7) == (prefix.."tp me ") then
  8743. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  8744. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8745. end
  8746. end
  8747. if string.sub(msg, 1, 8) == (prefix.."cbring ") then
  8748. if (string.sub(msg, 9)) == "all" or (string.sub(msg, 9)) == "All" or (string.sub(msg, 9)) == "ALL" then
  8749. cbringall = true
  8750. else
  8751. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  8752. brplr = v.Name
  8753. end
  8754. end
  8755. cbring = true
  8756. end
  8757. if string.sub(msg, 1, 9) == (prefix.."uncbring") then
  8758. cbring = false
  8759. cbringall = false
  8760. end
  8761. if string.sub(msg, 1, 6) == (prefix.."swap ") then
  8762. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  8763. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8764. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  8765. lplayer.Character.Humanoid.Name = 1
  8766. local l = lplayer.Character["1"]:Clone()
  8767. l.Parent = lplayer.Character
  8768. l.Name = "Humanoid"
  8769. wait(0.1)
  8770. lplayer.Character["1"]:Destroy()
  8771. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  8772. lplayer.Character.Animate.Disabled = true
  8773. wait(0.1)
  8774. lplayer.Character.Animate.Disabled = false
  8775. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8776. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  8777. lplayer.Character.Humanoid:EquipTool(v)
  8778. end
  8779. local function tp(player,player2)
  8780. local char1,char2=player.Character,player2.Character
  8781. if char1 and char2 then
  8782. char1:MoveTo(char2.Head.Position)
  8783. end
  8784. end
  8785. wait(0.1)
  8786. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8787. wait(0.2)
  8788. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  8789. wait(0.5)
  8790. lplayer.Character.HumanoidRootPart.CFrame = NOW
  8791. wait(0.6)
  8792. tp(lplayer, game:GetService("Players")[v.Name])
  8793. wait(0.4)
  8794. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  8795. game:GetService("StarterGui"):SetCore("SendNotification", {
  8796. Title = "Tools needed!";
  8797. Text = "You need a tool in your backpack for this command!";
  8798. })
  8799. end
  8800. end
  8801. if string.sub(msg, 1, 8) == (prefix.."glitch ") then
  8802. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  8803. lplayer.Character.Humanoid.Name = 1
  8804. local l = lplayer.Character["1"]:Clone()
  8805. l.Parent = lplayer.Character
  8806. l.Name = "Humanoid"
  8807. wait(0.1)
  8808. lplayer.Character["1"]:Destroy()
  8809. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  8810. lplayer.Character.Animate.Disabled = true
  8811. wait(0.1)
  8812. lplayer.Character.Animate.Disabled = false
  8813. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  8814. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  8815. lplayer.Character.Humanoid:EquipTool(v)
  8816. end
  8817. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  8818. wait(0.3)
  8819. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  8820. wait(0.4)
  8821. b = Instance.new("BodyForce")
  8822. b.Parent = lplayer.Character.HumanoidRootPart
  8823. b.Name = "Glitch"
  8824. b.Force = Vector3.new(100000000,5000,0)
  8825. game:GetService("StarterGui"):SetCore("SendNotification", {
  8826. Title = "Tools needed!";
  8827. Text = "You need a tool in your backpack for this command!";
  8828. })
  8829. end
  8830. end
  8831. if string.sub(msg, 1, 9) == (prefix.."unglitch") then
  8832. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  8833. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  8834. b = Instance.new("BodyForce")
  8835. b.Parent = lplayer.Character.HumanoidRootPart
  8836. b.Name = "unGlitch"
  8837. b.Force = Vector3.new(0,-5000000,0)
  8838. wait(2)
  8839. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  8840. end
  8841. if string.sub(msg, 1, 9) == (prefix.."grespawn") then
  8842. lplayer.Character.Humanoid.Health = 0
  8843. wait(1)
  8844. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  8845. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  8846. end
  8847. if string.sub(msg, 1, 9) == (prefix.."explorer") then
  8848. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  8849. game:GetService("StarterGui"):SetCore("SendNotification", {
  8850. Title = "Success!";
  8851. Text = "DEX Explorer has loaded.";
  8852. })
  8853. end
  8854. if string.sub(msg, 1, 6) == (prefix.."anim ") then
  8855. local Anim = Instance.new("Animation")
  8856. Anim.AnimationId = "rbxassetid://"..(string.sub(msg, 7))
  8857. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  8858. track:Play(.1, 1, 1)
  8859. end
  8860. if string.sub(msg, 1, 8) == (prefix.."animgui") then
  8861. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  8862. game:GetService("StarterGui"):SetCore("SendNotification", {
  8863. Title = "Success!";
  8864. Text = "Energize Animations GUI has loaded.";
  8865. })
  8866. end
  8867. if string.sub(msg, 1, 8) == (prefix.."savepos") then
  8868. saved = lplayer.Character.HumanoidRootPart.CFrame
  8869. game:GetService("StarterGui"):SetCore("SendNotification", {
  8870. Title = "Position Saved";
  8871. Text = "Use ;loadpos to return to saved position.";
  8872. })
  8873. end
  8874. if string.sub(msg, 1, 8) == (prefix.."loadpos") then
  8875. lplayer.Character.HumanoidRootPart.CFrame = saved
  8876. end
  8877. if string.sub(msg, 1, 6) == (prefix.."bang ") then
  8878. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  8879. local Anim2 = Instance.new("Animation")
  8880. Anim2.AnimationId = "rbxassetid://148840371"
  8881. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  8882. track2:Play(.1, 1, 1)
  8883. bplrr = v.Name
  8884. banpl = true
  8885. end
  8886. end
  8887. if string.sub(msg, 1, 7) == (prefix.."unbang") then
  8888. banpl = false
  8889. end
  8890. if string.sub(msg, 1, 10) == (prefix.."bringmod ") then
  8891. local function bringmodw()
  8892. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  8893. if obj.Name == (string.sub(msg, 11)) then
  8894. for i,ch in pairs(obj:GetDescendants()) do
  8895. if (ch:IsA("BasePart")) then
  8896. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  8897. ch.CanCollide = false
  8898. ch.Transparency = 0.7
  8899. wait()
  8900. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  8901. wait()
  8902. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  8903. wait()
  8904. ch.CFrame = lplayer.Character["Head"].CFrame
  8905. end
  8906. end
  8907. end
  8908. end
  8909. end
  8910. while wait() do
  8911. bringmodw()
  8912. end
  8913. game:GetService("StarterGui"):SetCore("SendNotification", {
  8914. Title = "BringMod";
  8915. Text = "BringMod enabled.";
  8916. })
  8917. end
  8918. if string.sub(msg, 1, 8) == (prefix.."respawn") then
  8919. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  8920. local hum = Instance.new('Humanoid', mod)
  8921. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  8922. lplayer.Character = mod
  8923. end
  8924. if string.sub(msg, 1, 9) == (prefix.."shutdown") then
  8925. game:GetService'RunService'.Stepped:Connect(function()
  8926. pcall(function()
  8927. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  8928. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  8929. for _,x in pairs(v.Character.Head:GetChildren()) do
  8930. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  8931. end
  8932. end
  8933. end
  8934. end)
  8935. end)
  8936. game:GetService("StarterGui"):SetCore("SendNotification", {
  8937. Title = "Attempting Shutdown";
  8938. Text = "Shutdown Attempt has begun.";
  8939. })
  8940. end
  8941. if string.sub(msg, 1, 8) == (prefix.."delobj ") then
  8942. objtodel = (string.sub(msg, 9))
  8943. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  8944. if v.Name == objtodel then
  8945. v:Destroy()
  8946. end
  8947. end
  8948. end
  8949. if string.sub(msg, 1, 8) == (prefix.."getplrs") then
  8950. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  8951. print(v)
  8952. end
  8953. game:GetService("StarterGui"):SetCore("SendNotification", {
  8954. Title = "Printed";
  8955. Text = "Players have been printed to console. (F9)";
  8956. })
  8957. end
  8958. if string.sub(msg, 1, 9) == (prefix.."deldecal") then
  8959. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  8960. if (v:IsA("Decal")) then
  8961. v:Destroy()
  8962. end
  8963. end
  8964. end
  8965. if string.sub(msg, 1, 11) == (prefix.."opfinality") then
  8966. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  8967. game:GetService("StarterGui"):SetCore("SendNotification", {
  8968. Title = "Success!";
  8969. Text = "OpFinality GUI has loaded.";
  8970. })
  8971. end
  8972. if string.sub(msg, 1, 8) == (prefix.."remotes") then
  8973. remotes = true
  8974. added = true
  8975. game.DescendantAdded:connect(function(rmt)
  8976. if added == true then
  8977. if remotes == true then
  8978. if rmt:IsA("RemoteEvent") then
  8979. print("A RemoteEvent was added!")
  8980. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  8981. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  8982. end end end
  8983. end)
  8984. game.DescendantAdded:connect(function(rmtfnctn)
  8985. if added == true then
  8986. if remotes == true then
  8987. if rmtfnctn:IsA("RemoteFunction") then
  8988. warn("A RemoteFunction was added!")
  8989. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  8990. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  8991. end end end
  8992. end)
  8993.  
  8994. game.DescendantAdded:connect(function(bndfnctn)
  8995. if added == true then
  8996. if binds == true then
  8997. if bndfnctn:IsA("BindableFunction") then
  8998. print("A BindableFunction was added!")
  8999. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  9000. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  9001. end end end
  9002. end)
  9003.  
  9004. game.DescendantAdded:connect(function(bnd)
  9005. if added == true then
  9006. if binds == true then
  9007. if bnd:IsA("BindableEvent") then
  9008. warn("A BindableEvent was added!")
  9009. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  9010. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  9011. end end end
  9012. end)
  9013.  
  9014.  
  9015. if binds == true then
  9016. for i,v in pairs(game:GetDescendants()) do
  9017. if v:IsA("BindableFunction") then
  9018. print(" game." .. v:GetFullName() .. " | BindableFunction")
  9019. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  9020. end end
  9021. for i,v in pairs(game:GetDescendants()) do
  9022. if v:IsA("BindableEvent") then
  9023. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  9024. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  9025. end end
  9026. else
  9027. print("Off")
  9028. end
  9029. if remotes == true then
  9030. for i,v in pairs(game:GetDescendants()) do
  9031. if v:IsA("RemoteFunction") then
  9032. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  9033. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  9034. end end
  9035. wait()
  9036. for i,v in pairs(game:GetDescendants()) do
  9037. if v:IsA("RemoteEvent") then
  9038. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  9039. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  9040. end end
  9041. else
  9042. print("Off")
  9043. end
  9044. game:GetService("StarterGui"):SetCore("SendNotification", {
  9045. Title = "Printing Remotes";
  9046. Text = "Type ;noremotes to disable.";
  9047. })
  9048. end
  9049. if string.sub(msg, 1, 10) == (prefix.."noremotes") then
  9050. remotes = false
  9051. added = false
  9052. game:GetService("StarterGui"):SetCore("SendNotification", {
  9053. Title = "Printing Remotes Disabled";
  9054. Text = "Type ;remotes to enable.";
  9055. })
  9056. end
  9057. if string.sub(msg, 1, 10) == (prefix.."tpdefault") then
  9058. spin = false
  9059. followed = false
  9060. traill = false
  9061. noclip = false
  9062. annoying = false
  9063. hwalk = false
  9064. cbringing = false
  9065. end
  9066. if string.sub(msg, 1, 8) == (prefix.."stopsit") then
  9067. stopsitting = true
  9068. end
  9069. if string.sub(msg, 1, 6) == (prefix.."gosit") then
  9070. stopsitting = false
  9071. end
  9072. if string.sub(msg, 1, 8) == (prefix.."version") then
  9073. print(adminversion)
  9074. game:GetService("StarterGui"):SetCore("SendNotification", {
  9075. Title = "Version";
  9076. Text = adminversion;
  9077. })
  9078. end
  9079. if string.sub(msg, 1, 8) == (prefix.."clicktp") then
  9080. clickgoto = true
  9081. game:GetService("StarterGui"):SetCore("SendNotification", {
  9082. Title = "Click TP";
  9083. Text = "Press E to teleport to mouse position, ;noclicktp to stop";
  9084. })
  9085. end
  9086. if string.sub(msg, 1, 9) == (prefix.."clickdel") then
  9087. clickdel = true
  9088. game:GetService("StarterGui"):SetCore("SendNotification", {
  9089. Title = "Click Delete";
  9090. Text = "Press E to delete part at mouse, ;noclickdel to stop";
  9091. })
  9092. end
  9093. if string.sub(msg, 1, 11) == (prefix.."noclickdel") then
  9094. clickdel = false
  9095. game:GetService("StarterGui"):SetCore("SendNotification", {
  9096. Title = "Click Delete";
  9097. Text = "Click delete has been disabled.";
  9098. })
  9099. end
  9100. if string.sub(msg, 1, 10) == (prefix.."noclicktp") then
  9101. clickgoto = false
  9102. game:GetService("StarterGui"):SetCore("SendNotification", {
  9103. Title = "Click TP";
  9104. Text = "Click TP has been disabled.";
  9105. })
  9106. end
  9107. if string.sub(msg, 1, 8) == (prefix.."toolson") then
  9108. gettingtools = true
  9109. game:GetService("StarterGui"):SetCore("SendNotification", {
  9110. Title = "Tools Enabled";
  9111. Text = "Automatically colleting tools dropped.";
  9112. })
  9113. end
  9114. if string.sub(msg, 1, 9) == (prefix.."toolsoff") then
  9115. gettingtools = false
  9116. game:GetService("StarterGui"):SetCore("SendNotification", {
  9117. Title = "Tools Disabled";
  9118. Text = "Click TP has been disabled.";
  9119. })
  9120. end
  9121. if string.sub(msg, 1, 10) == (prefix.."delcmdbar") then
  9122. ScreenGui:Destroy()
  9123. end
  9124. if string.sub(msg, 1, 6) == (prefix.."reset") then
  9125. lplayer.Character.Head:Destroy()
  9126. end
  9127. if string.sub(msg, 1, 7) == (prefix.."state ") then
  9128. statechosen = string.sub(msg, 8)
  9129. changingstate = true
  9130. end
  9131. if string.sub(msg, 1, 9) == (prefix.."gravity ") then
  9132. game:GetService("Workspace").Gravity = string.sub(msg, 10)
  9133. end
  9134. if string.sub(msg, 1, 10) == (prefix.."looprhats") then
  9135. removingmeshhats = true
  9136. end
  9137. if string.sub(msg, 1, 12) == (prefix.."unlooprhats") then
  9138. removingmeshhats = false
  9139. end
  9140. if string.sub(msg, 1, 10) == (prefix.."looprtool") then
  9141. removingmeshtool = true
  9142. end
  9143. if string.sub(msg, 1, 12) == (prefix.."unlooprtool") then
  9144. removingmeshtool = false
  9145. end
  9146. if string.sub(msg, 1, 10) == (prefix.."givetool ") then
  9147. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  9148. if v:IsA("Tool") then
  9149. for i,player in pairs(GetPlayer(string.sub(msg, 11))) do
  9150. v.Parent = player.Character
  9151. end
  9152. end
  9153. end
  9154. end
  9155. if string.sub(msg, 1, 14) == (prefix.."givealltools ") then
  9156. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  9157. if v:IsA("Tool") then
  9158. v.Parent = lplayer.Character
  9159. wait()
  9160. for i,player in pairs(GetPlayer(string.sub(msg, 15))) do
  9161. v.Parent = player.Character
  9162. end
  9163. end
  9164. end
  9165. end
  9166. if string.sub(msg, 1, 5) == (prefix.."age ") then
  9167. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  9168. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  9169. end
  9170. end
  9171. if string.sub(msg, 1, 4) == (prefix.."id ") then
  9172. for i,player in pairs(GetPlayer(string.sub(msg, 5))) do
  9173. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  9174. end
  9175. end
  9176. if string.sub(msg, 1, 6) == (prefix..".age ") then
  9177. for i,player in pairs(GetPlayer(string.sub(msg, 7))) do
  9178. game:GetService("StarterGui"):SetCore("SendNotification", {
  9179. Title = player.AccountAge.." Days";
  9180. Text = "Account age of "..player.Name;
  9181. })
  9182. end
  9183. end
  9184. if string.sub(msg, 1, 5) == (prefix..".id ") then
  9185. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  9186. game:GetService("StarterGui"):SetCore("SendNotification", {
  9187. Title = player.UserId.." ID";
  9188. Text = "Account ID of "..player.Name;
  9189. })
  9190. end
  9191. end
  9192. if string.sub(msg, 1, 7) == (prefix.."gameid") then
  9193. game:GetService("StarterGui"):SetCore("SendNotification", {
  9194. Title = "Game ID";
  9195. Text = "Game ID: ".. game.GameId;
  9196. })
  9197. end
  9198. if string.sub(msg, 1, 4) == (prefix.."pgs") then
  9199. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  9200. if pgscheck == true then
  9201. game:GetService("StarterGui"):SetCore("SendNotification", {
  9202. Title = "PGSPhysicsSolverEnabled";
  9203. Text = "PGS is Enabled!";
  9204. })
  9205. else
  9206. game:GetService("StarterGui"):SetCore("SendNotification", {
  9207. Title = "PGSPhysicsSolverEnabled";
  9208. Text = "PGS is Disabled!";
  9209. })
  9210. end
  9211. end
  9212. if string.sub(msg, 1, 12) == (prefix.."removeinvis") then
  9213. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  9214. if v:IsA("Part") then
  9215. if v.Transparency == 1 then
  9216. if v.Name ~= "HumanoidRootPart" then
  9217. v:Destroy()
  9218. end
  9219. end
  9220. end
  9221. end
  9222. end
  9223. if string.sub(msg, 1, 10) == (prefix.."removefog") then
  9224. game:GetService("Lighting").FogStart = 0
  9225. game:GetService("Lighting").FogEnd = 9999999999999
  9226. end
  9227. if string.sub(msg, 1, 8) == (prefix.."disable") then
  9228. lplayer.Character.Humanoid.Parent = lplayer
  9229. end
  9230. if string.sub(msg, 1, 7) == (prefix.."enable") then
  9231. lplayer.Humanoid.Parent = lplayer.Character
  9232. end
  9233. if string.sub(msg, 1, 8) == (prefix.."prefix ") then
  9234. prefix = (string.sub(msg, 9, 9))
  9235. wait(0.1)
  9236. change()
  9237. wait(0.1)
  9238. game:GetService("StarterGui"):SetCore("SendNotification", {
  9239. Title = "Prefix changed!";
  9240. Text = "Prefix is now "..prefix..". Use ;resetprefix to reset to ;";
  9241. })
  9242. end
  9243. if string.sub(msg, 1, 12) == (";resetprefix") then
  9244. prefix = ";"
  9245. wait(0.1)
  9246. change()
  9247. wait(0.1)
  9248. game:GetService("StarterGui"):SetCore("SendNotification", {
  9249. Title = "Prefix changed!";
  9250. Text = "Prefix is now "..prefix..". Make sure it's one key!";
  9251. })
  9252. end
  9253. if string.sub(msg, 1, 10) == (prefix.."flyspeed ") then
  9254. speedfly = string.sub(msg, 11)
  9255. wait()
  9256. change()
  9257. end
  9258. if string.sub(msg, 1, 8) == (prefix.."carpet ") then
  9259. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  9260. local Anim3 = Instance.new("Animation")
  9261. Anim3.AnimationId = "rbxassetid://282574440"
  9262. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  9263. track3:Play(.1, 1, 1)
  9264. bplrr = v.Name
  9265. banpl = true
  9266. end
  9267. end
  9268. if string.sub(msg, 1, 9) == (prefix.."uncarpet") then
  9269. banpl = false
  9270. end
  9271. if string.sub(msg, 1, 7) == (prefix.."stare ") then
  9272. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  9273. staring = true
  9274. stareplr = v
  9275. end
  9276. end
  9277. if string.sub(msg, 1, 8) == (prefix.."unstare") then
  9278. staring = false
  9279. end
  9280. if string.sub(msg, 1, 8) == (prefix.."logchat") then
  9281. chatlogs = true
  9282. game:GetService("StarterGui"):SetCore("SendNotification", {
  9283. Title = "LogChat enabled";
  9284. Text = "Now logging all player chat.";
  9285. })
  9286. end
  9287. if string.sub(msg, 1, 10) == (prefix.."unlogchat") then
  9288. chatlogs = false
  9289. game:GetService("StarterGui"):SetCore("SendNotification", {
  9290. Title = "LogChat disabled";
  9291. Text = "Stopped logging all player chat.";
  9292. })
  9293. end
  9294. if string.sub(msg, 1, 7) == (prefix.."fixcam") then
  9295. game:GetService("Workspace").CurrentCamera:Destroy()
  9296. wait(0.1)
  9297. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  9298. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  9299. lplayer.CameraMinZoomDistance = 0.5
  9300. lplayer.CameraMaxZoomDistance = 400
  9301. lplayer.CameraMode = "Classic"
  9302. end
  9303. if string.sub(msg, 1, 8) == (prefix.."unstate") then
  9304. changingstate = false
  9305. end
  9306. end)
  9307.  
  9308. local function tp()
  9309. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  9310. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  9311. if player.Name == brplr then
  9312. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 2
  9313. end
  9314. end
  9315. end
  9316. end
  9317. local function tpall()
  9318. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  9319. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  9320. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 3
  9321. end
  9322. end
  9323. end
  9324. spawn(function()
  9325. while wait(spamdelay) do
  9326. if spamming == true then
  9327. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
  9328. end
  9329. end
  9330. end)
  9331. spawn(function()
  9332. while wait(spamdelay) do
  9333. if spammingpm == true then
  9334. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..pmspammed.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
  9335. end
  9336. end
  9337. end)
  9338. spawn(function()
  9339. while wait() do
  9340. if cbring == true then
  9341. tp()
  9342. end
  9343. end
  9344. end)
  9345. spawn(function()
  9346. while wait() do
  9347. if cbringall == true then
  9348. tpall()
  9349. end
  9350. end
  9351. end)
  9352.  
  9353. Mouse.KeyDown:connect(function(Key)
  9354. if Key == prefix then
  9355. CMDBAR:CaptureFocus()
  9356. end
  9357. end)
  9358.  
  9359. CMDBAR.FocusLost:connect(function(enterPressed)
  9360. if enterPressed then
  9361. if string.sub(CMDBAR.Text, 1, 5) == ("kill ") then
  9362. if string.sub(CMDBAR.Text, 6) == "me" then
  9363. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  9364. else
  9365. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6)))do
  9366. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  9367. lplayer.Character.Humanoid.Name = 1
  9368. local l = lplayer.Character["1"]:Clone()
  9369. l.Parent = lplayer.Character
  9370. l.Name = "Humanoid"
  9371. wait(0.1)
  9372. lplayer.Character["1"]:Destroy()
  9373. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  9374. lplayer.Character.Animate.Disabled = true
  9375. wait(0.1)
  9376. lplayer.Character.Animate.Disabled = false
  9377. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  9378. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  9379. lplayer.Character.Humanoid:EquipTool(v)
  9380. end
  9381. local function tp(player,player2)
  9382. local char1,char2=player.Character,player2.Character
  9383. if char1 and char2 then
  9384. char1:MoveTo(char2.Head.Position)
  9385. end
  9386. end
  9387. wait(0.1)
  9388. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  9389. wait(0.2)
  9390. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  9391. wait(0.5)
  9392. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  9393. wait(0.7)
  9394. tp(lplayer,game:GetService("Players")[v.Name])
  9395. wait(0.7)
  9396. lplayer.Character.HumanoidRootPart.CFrame = NOW
  9397. game:GetService("StarterGui"):SetCore("SendNotification", {
  9398. Title = "Tools needed!";
  9399. Text = "You need a tool in your backpack for this command!";
  9400. })
  9401. end
  9402. end
  9403. end
  9404. if string.sub(CMDBAR.Text, 1, 6) == ("bring ") then
  9405. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  9406. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  9407. lplayer.Character.Humanoid.Name = 1
  9408. local l = lplayer.Character["1"]:Clone()
  9409. l.Parent = lplayer.Character
  9410. l.Name = "Humanoid"
  9411. wait(0.1)
  9412. lplayer.Character["1"]:Destroy()
  9413. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  9414. lplayer.Character.Animate.Disabled = true
  9415. wait(0.1)
  9416. lplayer.Character.Animate.Disabled = false
  9417. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  9418. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  9419. lplayer.Character.Humanoid:EquipTool(v)
  9420. end
  9421. local function tp(player,player2)
  9422. local char1,char2=player.Character,player2.Character
  9423. if char1 and char2 then
  9424. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  9425. end
  9426. end
  9427. local function getout(player,player2)
  9428. local char1,char2=player.Character,player2.Character
  9429. if char1 and char2 then
  9430. char1:MoveTo(char2.Head.Position)
  9431. end
  9432. end
  9433. tp(game:GetService("Players")[v.Name], lplayer)
  9434. wait(0.2)
  9435. tp(game:GetService("Players")[v.Name], lplayer)
  9436. wait(0.5)
  9437. lplayer.Character.HumanoidRootPart.CFrame = NOW
  9438. wait(0.5)
  9439. getout(lplayer, game:GetService("Players")[v.Name])
  9440. wait(0.3)
  9441. lplayer.Character.HumanoidRootPart.CFrame = NOW
  9442. game:GetService("StarterGui"):SetCore("SendNotification", {
  9443. Title = "Tools needed!";
  9444. Text = "You need a tool in your backpack for this command!";
  9445. })
  9446. end
  9447. end
  9448. if string.sub(CMDBAR.Text, 1, 5) == ("spin ") then
  9449. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  9450. lplayer.Character.Humanoid.Name = 1
  9451. local l = lplayer.Character["1"]:Clone()
  9452. l.Parent = lplayer.Character
  9453. l.Name = "Humanoid"
  9454. wait(0.1)
  9455. lplayer.Character["1"]:Destroy()
  9456. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  9457. lplayer.Character.Animate.Disabled = true
  9458. wait(0.1)
  9459. lplayer.Character.Animate.Disabled = false
  9460. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  9461. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  9462. lplayer.Character.Humanoid:EquipTool(v)
  9463. end
  9464. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  9465. spinplr = v
  9466. wait(0.5)
  9467. spin = true
  9468. game:GetService("StarterGui"):SetCore("SendNotification", {
  9469. Title = "Tools needed!";
  9470. Text = "You need a tool in your backpack for this command!";
  9471. })
  9472. end
  9473. end
  9474. if string.sub(CMDBAR.Text, 1, 6) == ("unspin") then
  9475. spin = false
  9476. end
  9477. if string.sub(CMDBAR.Text, 1, 7) == ("attach ") then
  9478. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  9479. lplayer.Character.Humanoid.Name = 1
  9480. local l = lplayer.Character["1"]:Clone()
  9481. l.Parent = lplayer.Character
  9482. l.Name = "Humanoid"
  9483. wait(0.1)
  9484. lplayer.Character["1"]:Destroy()
  9485. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  9486. lplayer.Character.Animate.Disabled = true
  9487. wait(0.1)
  9488. lplayer.Character.Animate.Disabled = false
  9489. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  9490. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  9491. lplayer.Character.Humanoid:EquipTool(v)
  9492. end
  9493. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  9494. wait(0.3)
  9495. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  9496. attplr = v
  9497. game:GetService("StarterGui"):SetCore("SendNotification", {
  9498. Title = "Tools needed!";
  9499. Text = "You need a tool in your backpack for this command!";
  9500. })
  9501. end
  9502. end
  9503. if string.sub(CMDBAR.Text, 1, 9) == ("unattach ") then
  9504. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  9505. local function getout(player,player2)
  9506. local char1,char2=player.Character,player2.Character
  9507. if char1 and char2 then
  9508. char1:MoveTo(char2.Head.Position)
  9509. end
  9510. end
  9511. getout(lplayer, game:GetService("Players")[v.Name])
  9512. end
  9513. end
  9514. if string.sub(CMDBAR.Text, 1, 7) == ("follow ") then
  9515. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  9516. followed = true
  9517. flwplr = v
  9518. end
  9519. end
  9520. if string.sub(CMDBAR.Text, 1, 8) == ("unfollow") then
  9521. followed = false
  9522. end
  9523. if string.sub(CMDBAR.Text, 1, 9) == ("freefall ") then
  9524. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  9525. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  9526. lplayer.Character.Humanoid.Name = 1
  9527. local l = lplayer.Character["1"]:Clone()
  9528. l.Parent = lplayer.Character
  9529. l.Name = "Humanoid"
  9530. wait(0.1)
  9531. lplayer.Character["1"]:Destroy()
  9532. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  9533. lplayer.Character.Animate.Disabled = true
  9534. wait(0.1)
  9535. lplayer.Character.Animate.Disabled = false
  9536. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  9537. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  9538. lplayer.Character.Humanoid:EquipTool(v)
  9539. end
  9540. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  9541. wait(0.2)
  9542. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  9543. wait(0.6)
  9544. lplayer.Character.HumanoidRootPart.CFrame = NOW
  9545. wait(0.6)
  9546. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  9547. game:GetService("StarterGui"):SetCore("SendNotification", {
  9548. Title = "Tools needed!";
  9549. Text = "You need a tool in your backpack for this command!";
  9550. })
  9551. end
  9552. end
  9553. if string.sub(CMDBAR.Text, 1, 6) == ("trail ") then
  9554. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  9555. traill = true
  9556. trlplr = v
  9557. end
  9558. end
  9559. if string.sub(CMDBAR.Text, 1, 7) == ("untrail") then
  9560. traill = false
  9561. end
  9562. if string.sub(CMDBAR.Text, 1, 6) == ("orbit ") then
  9563. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  9564. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  9565. else
  9566. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  9567. local o = Instance.new("RocketPropulsion")
  9568. o.Parent = lplayer.Character.HumanoidRootPart
  9569. o.Name = "Orbit"
  9570. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  9571. o:Fire()
  9572. noclip = true
  9573. end
  9574. end
  9575. end
  9576. if string.sub(CMDBAR.Text, 1, 7) == ("unorbit") then
  9577. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  9578. noclip = false
  9579. end
  9580. if string.sub(CMDBAR.Text, 1, 6) == ("fling ") then
  9581. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  9582. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  9583. else
  9584. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  9585. local y = Instance.new("RocketPropulsion")
  9586. y.Parent = lplayer.Character.HumanoidRootPart
  9587. y.CartoonFactor = 1
  9588. y.MaxThrust = 800000
  9589. y.MaxSpeed = 1000
  9590. y.ThrustP = 200000
  9591. y.Name = "Fling"
  9592. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  9593. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  9594. y:Fire()
  9595. noclip = true
  9596. end
  9597. end
  9598. end
  9599. if string.sub(CMDBAR.Text, 1, 7) == ("unfling") then
  9600. noclip = false
  9601. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  9602. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  9603. wait(0.4)
  9604. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  9605. end
  9606. if string.sub(CMDBAR.Text, 1, 7) == ("fecheck") then
  9607. if game:GetService("Workspace").FilteringEnabled == true then
  9608. warn("FE is Enabled (Filtering Enabled)")
  9609. game:GetService("StarterGui"):SetCore("SendNotification", {
  9610. Title = "FE is Enabled";
  9611. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  9612. })
  9613. else
  9614. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  9615. game:GetService("StarterGui"):SetCore("SendNotification", {
  9616. Title = "FE is Disabled";
  9617. Text = "Filtering Disabled. Consider using a different admin script.";
  9618. })
  9619. end
  9620. end
  9621. if string.sub(CMDBAR.Text, 1, 5) == ("void ") then
  9622. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  9623. lplayer.Character.Humanoid.Name = 1
  9624. local l = lplayer.Character["1"]:Clone()
  9625. l.Parent = lplayer.Character
  9626. l.Name = "Humanoid"
  9627. wait(0.1)
  9628. lplayer.Character["1"]:Destroy()
  9629. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  9630. lplayer.Character.Animate.Disabled = true
  9631. wait(0.1)
  9632. lplayer.Character.Animate.Disabled = false
  9633. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  9634. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  9635. lplayer.Character.Humanoid:EquipTool(v)
  9636. end
  9637. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  9638. wait(0.2)
  9639. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  9640. wait(0.6)
  9641. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  9642. game:GetService("StarterGui"):SetCore("SendNotification", {
  9643. Title = "Tools needed!";
  9644. Text = "You need a tool in your backpack for this command!";
  9645. })
  9646. end
  9647. end
  9648. if string.sub(CMDBAR.Text, 1, 6) == ("noclip") then
  9649. noclip = true
  9650. game:GetService("StarterGui"):SetCore("SendNotification", {
  9651. Title = "Noclip enabled";
  9652. Text = "Type ;clip to disable";
  9653. })
  9654. end
  9655. if string.sub(CMDBAR.Text, 1, 4) == ("clip") then
  9656. noclip = false
  9657. game:GetService("StarterGui"):SetCore("SendNotification", {
  9658. Title = "Noclip disabled";
  9659. Text = "Type ;noclip to enable";
  9660. })
  9661. end
  9662. if string.sub(CMDBAR.Text, 1, 6) == ("speed ") then
  9663. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 7))
  9664. end
  9665. if string.sub(CMDBAR.Text, 1, 3) == ("ws ") then
  9666. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 4))
  9667. end
  9668. if string.sub(CMDBAR.Text, 1, 10) == ("hipheight ") then
  9669. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 11))
  9670. end
  9671. if string.sub(CMDBAR.Text, 1, 3) == ("hh ") then
  9672. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 4))
  9673. end
  9674. if string.sub(CMDBAR.Text, 1, 10) == ("jumppower ") then
  9675. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 11))
  9676. end
  9677. if string.sub(CMDBAR.Text, 1, 3) == ("jp ") then
  9678. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 4))
  9679. end
  9680. if string.sub(CMDBAR.Text, 1, 7) == ("default") then
  9681. lplayer.Character.Humanoid.JumpPower = 50
  9682. lplayer.Character.Humanoid.WalkSpeed = 16
  9683. lplayer.Character.Humanoid.HipHeight = 0
  9684. end
  9685. if string.sub(CMDBAR.Text, 1, 6) == ("annoy ") then
  9686. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  9687. annoying = true
  9688. annplr = v
  9689. end
  9690. end
  9691. if string.sub(CMDBAR.Text, 1, 7) == ("unannoy") then
  9692. annoying = false
  9693. end
  9694. if string.sub(CMDBAR.Text, 1, 9) == ("headwalk ") then
  9695. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  9696. hwalk = true
  9697. hdwplr = v
  9698. end
  9699. end
  9700. if string.sub(CMDBAR.Text, 1, 10) == ("unheadwalk") then
  9701. hwalk = false
  9702. end
  9703. if string.sub(CMDBAR.Text, 1, 7) == ("nolimbs") then
  9704. lplayer.Character["Left Leg"]:Destroy()
  9705. lplayer.Character["Left Arm"]:Destroy()
  9706. lplayer.Character["Right Leg"]:Destroy()
  9707. lplayer.Character["Right Arm"]:Destroy()
  9708. end
  9709. if string.sub(CMDBAR.Text, 1, 3) == ("god") then
  9710. lplayer.Character.Humanoid.Name = 1
  9711. local l = lplayer.Character["1"]:Clone()
  9712. l.Parent = lplayer.Character
  9713. l.Name = "Humanoid"
  9714. wait(0.1)
  9715. lplayer.Character["1"]:Destroy()
  9716. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  9717. lplayer.Character.Animate.Disabled = true
  9718. wait(0.1)
  9719. lplayer.Character.Animate.Disabled = false
  9720. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  9721. game:GetService("StarterGui"):SetCore("SendNotification", {
  9722. Title = "FE Godmode enabled";
  9723. Text = "Use ;grespawn or ;respawn to remove.";
  9724. })
  9725. end
  9726. if string.sub(CMDBAR.Text, 1, 8) == ("drophats") then
  9727. for i,v in pairs(lplayer.Character:GetChildren()) do
  9728. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  9729. v.Parent = workspace
  9730. end
  9731. end
  9732. end
  9733. if string.sub(CMDBAR.Text, 1, 8) == ("droptool") then
  9734. for i,v in pairs(lplayer.Character:GetChildren()) do
  9735. if (v:IsA("Tool")) then
  9736. v.Parent = workspace
  9737. end
  9738. end
  9739. end
  9740. if string.sub(CMDBAR.Text, 1, 9) == ("loopdhats") then
  9741. droppinghats = true
  9742. game:GetService("StarterGui"):SetCore("SendNotification", {
  9743. Title = "Loop Drop Enabled";
  9744. Text = "Type ;unloopdhats to disable";
  9745. })
  9746. end
  9747. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdhats") then
  9748. droppinghats = false
  9749. game:GetService("StarterGui"):SetCore("SendNotification", {
  9750. Title = "Loop Drop Disabled";
  9751. Text = "Type ;loopdhats to enable.";
  9752. })
  9753. end
  9754. if string.sub(CMDBAR.Text, 1, 9) == ("loopdtool") then
  9755. droppingtools = true
  9756. game:GetService("StarterGui"):SetCore("SendNotification", {
  9757. Title = "Loop Drop Enabled";
  9758. Text = "Type ;unloopdtool to disable";
  9759. })
  9760. end
  9761. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdtool") then
  9762. droppingtools = false
  9763. game:GetService("StarterGui"):SetCore("SendNotification", {
  9764. Title = "Loop Drop Disabled";
  9765. Text = "Type ;loopdtool to enable.";
  9766. })
  9767. end
  9768. if string.sub(CMDBAR.Text, 1, 9) == ("invisible") then -- Credit to Timeless
  9769. Local = game:GetService('Players').LocalPlayer
  9770. Char = Local.Character
  9771. touched,tpdback = false, false
  9772. box = Instance.new('Part',workspace)
  9773. box.Anchored = true
  9774. box.CanCollide = true
  9775. box.Size = Vector3.new(10,1,10)
  9776. box.Position = Vector3.new(0,10000,0)
  9777. box.Touched:connect(function(part)
  9778. if (part.Parent.Name == Local.Name) then
  9779. if touched == false then
  9780. touched = true
  9781. function apply()
  9782. if script.Disabled ~= true then
  9783. no = Char.HumanoidRootPart:Clone()
  9784. wait(.25)
  9785. Char.HumanoidRootPart:Destroy()
  9786. no.Parent = Char
  9787. Char:MoveTo(loc)
  9788. touched = false
  9789. end end
  9790. if Char then
  9791. apply()
  9792. end
  9793. end
  9794. end
  9795. end)
  9796. repeat wait() until Char
  9797. loc = Char.HumanoidRootPart.Position
  9798. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  9799. game:GetService("StarterGui"):SetCore("SendNotification", {
  9800. Title = "Invisibility enabled!";
  9801. Text = "Reset or use ;respawn to remove.";
  9802. })
  9803. end
  9804. if string.sub(CMDBAR.Text, 1, 5) == ("view ") then
  9805. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  9806. if game:GetService("Players")[v.Name].Character.Humanoid then
  9807. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  9808. else
  9809. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  9810. end
  9811. end
  9812. end
  9813. if string.sub(CMDBAR.Text, 1, 6) == ("unview") then
  9814. if lplayer.Character.Humanoid then
  9815. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  9816. else
  9817. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  9818. end
  9819. end
  9820. if string.sub(CMDBAR.Text, 1, 5) == ("goto ") then
  9821. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  9822. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  9823. end
  9824. end
  9825. if string.sub(CMDBAR.Text, 1, 3) == ("fly") then
  9826. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  9827. repeat wait() until Mouse
  9828.  
  9829. local T = lplayer.Character.HumanoidRootPart
  9830. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  9831. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  9832. local SPEED = speedget
  9833.  
  9834. local function fly()
  9835. flying = true
  9836. local BG = Instance.new('BodyGyro', T)
  9837. local BV = Instance.new('BodyVelocity', T)
  9838. BG.P = 9e4
  9839. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  9840. BG.cframe = T.CFrame
  9841. BV.velocity = Vector3.new(0, 0.1, 0)
  9842. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  9843. spawn(function()
  9844. repeat wait()
  9845. lplayer.Character.Humanoid.PlatformStand = true
  9846. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  9847. SPEED = 50
  9848. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  9849. SPEED = 0
  9850. end
  9851. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  9852. 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
  9853. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  9854. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  9855. 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
  9856. else
  9857. BV.velocity = Vector3.new(0, 0.1, 0)
  9858. end
  9859. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  9860. until not flying
  9861. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  9862. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  9863. SPEED = 0
  9864. BG:destroy()
  9865. BV:destroy()
  9866. lplayer.Character.Humanoid.PlatformStand = false
  9867. end)
  9868. end
  9869. Mouse.KeyDown:connect(function(KEY)
  9870. if KEY:lower() == 'w' then
  9871. CONTROL.F = speedfly
  9872. elseif KEY:lower() == 's' then
  9873. CONTROL.B = -speedfly
  9874. elseif KEY:lower() == 'a' then
  9875. CONTROL.L = -speedfly
  9876. elseif KEY:lower() == 'd' then
  9877. CONTROL.R = speedfly
  9878. end
  9879. end)
  9880. Mouse.KeyUp:connect(function(KEY)
  9881. if KEY:lower() == 'w' then
  9882. CONTROL.F = 0
  9883. elseif KEY:lower() == 's' then
  9884. CONTROL.B = 0
  9885. elseif KEY:lower() == 'a' then
  9886. CONTROL.L = 0
  9887. elseif KEY:lower() == 'd' then
  9888. CONTROL.R = 0
  9889. end
  9890. end)
  9891. fly()
  9892. end
  9893. if string.sub(CMDBAR.Text, 1, 5) == ("unfly") then
  9894. flying = false
  9895. lplayer.Character.Humanoid.PlatformStand = false
  9896. end
  9897. if string.sub(CMDBAR.Text, 1, 5) == ("chat ") then
  9898. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(CMDBAR.Text, 6)), "All")
  9899. end
  9900. if string.sub(CMDBAR.Text, 1, 5) == ("spam ") then
  9901. spamtext = (string.sub(CMDBAR.Text, 6))
  9902. spamming = true
  9903. end
  9904. if string.sub(CMDBAR.Text, 1, 6) == ("unspam") then
  9905. spamming = false
  9906. end
  9907. if string.sub(CMDBAR.Text, 1, 9) == ("spamwait ") then
  9908. spamdelay = (string.sub(CMDBAR.Text, 10))
  9909. end
  9910. if string.sub(CMDBAR.Text, 1, 7) == ("pmspam ") then
  9911. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  9912. pmspammed = v.Name
  9913. spammingpm = true
  9914. end
  9915. end
  9916. if string.sub(CMDBAR.Text, 1, 8) == ("unpmspam") then
  9917. spammingpm = false
  9918. end
  9919. if string.sub(CMDBAR.Text, 1, 8) == ("cfreeze ") then
  9920. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 9))) do
  9921. v.Character["Left Leg"].Anchored = true
  9922. v.Character["Left Arm"].Anchored = true
  9923. v.Character["Right Leg"].Anchored = true
  9924. v.Character["Right Arm"].Anchored = true
  9925. v.Character.Torso.Anchored = true
  9926. v.Character.Head.Anchored = true
  9927. end
  9928. end
  9929. if string.sub(CMDBAR.Text, 1, 10) == ("uncfreeze ") then
  9930. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 11))) do
  9931. v.Character["Left Leg"].Anchored = false
  9932. v.Character["Left Arm"].Anchored = false
  9933. v.Character["Right Leg"].Anchored = false
  9934. v.Character["Right Arm"].Anchored = false
  9935. v.Character.Torso.Anchored = false
  9936. v.Character.Head.Anchored = false
  9937. end
  9938. end
  9939. if string.sub(CMDBAR.Text, 1, 8) == ("unlockws") then
  9940. local a = game:GetService("Workspace"):getChildren()
  9941. for i = 1, #a do
  9942. if a[i].className == "Part" then
  9943. a[i].Locked = false
  9944. elseif a[i].className == "Model" then
  9945. local r = a[i]:getChildren()
  9946. for i = 1, #r do
  9947. if r[i].className == "Part" then
  9948. r[i].Locked = false
  9949. end
  9950. end
  9951. end
  9952. end
  9953. game:GetService("StarterGui"):SetCore("SendNotification", {
  9954. Title = "Success!";
  9955. Text = "Workspace unlocked. Use ;lockws to lock.";
  9956. })
  9957. end
  9958. if string.sub(CMDBAR.Text, 1, 6) == ("lockws") then
  9959. local a = game:GetService("Workspace"):getChildren()
  9960. for i = 1, #a do
  9961. if a[i].className == "Part" then
  9962. a[i].Locked = true
  9963. elseif a[i].className == "Model" then
  9964. local r = a[i]:getChildren()
  9965. for i = 1, #r do
  9966. if r[i].className == "Part" then
  9967. r[i].Locked = true
  9968. end
  9969. end
  9970. end
  9971. end
  9972. end
  9973. if string.sub(CMDBAR.Text, 1, 6) == ("btools") then
  9974. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  9975. Clone_T.BinType = "Clone"
  9976. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  9977. Destruct.BinType = "Hammer"
  9978. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  9979. Hold_T.BinType = "Grab"
  9980. end
  9981. if string.sub(CMDBAR.Text, 1, 6) == ("pstand") then
  9982. lplayer.Character.Humanoid.PlatformStand = true
  9983. end
  9984. if string.sub(CMDBAR.Text, 1, 8) == ("unpstand") then
  9985. lplayer.Character.Humanoid.PlatformStand = false
  9986. end
  9987. if string.sub(CMDBAR.Text, 1, 9) == ("blockhead") then
  9988. lplayer.Character.Head.Mesh:Destroy()
  9989. end
  9990. if string.sub(CMDBAR.Text, 1, 3) == ("sit") then
  9991. lplayer.Character.Humanoid.Sit = true
  9992. end
  9993. if string.sub(CMDBAR.Text, 1, 9) == ("bringobj ") then
  9994. local function bringobjw()
  9995. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  9996. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  9997. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  9998. obj.CanCollide = false
  9999. obj.Transparency = 0.7
  10000. wait()
  10001. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  10002. wait()
  10003. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  10004. wait()
  10005. obj.CFrame = lplayer.Character["Head"].CFrame
  10006. end
  10007. end
  10008. end
  10009. while wait() do
  10010. bringobjw()
  10011. end
  10012. game:GetService("StarterGui"):SetCore("SendNotification", {
  10013. Title = "BringObj";
  10014. Text = "BringObj enabled.";
  10015. })
  10016. end
  10017. if string.sub(CMDBAR.Text, 1, 6) == ("wsvis ") then
  10018. vis = (string.sub(CMDBAR.Text, 7))
  10019. local a = game:GetService("Workspace"):GetDescendants()
  10020. for i = 1, #a do
  10021. if a[i].className == "Part" then
  10022. a[i].Transparency = vis
  10023. elseif a[i].className == "Model" then
  10024. local r = a[i]:getChildren()
  10025. for i = 1, #r do
  10026. if r[i].className == "Part" then
  10027. r[i].Transparency = vis
  10028. end
  10029. end
  10030. end
  10031. end
  10032. end
  10033. if string.sub(CMDBAR.Text, 1, 10) == ("hypertotal") then
  10034. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  10035. game:GetService("StarterGui"):SetCore("SendNotification", {
  10036. Title = "Success!";
  10037. Text = "HyperTotal GUI Loaded!";
  10038. })
  10039. end
  10040. if string.sub(CMDBAR.Text, 1, 4) == ("cmds") then
  10041. CMDSFRAME.Visible = true
  10042. end
  10043. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshhats") then
  10044. for i,v in pairs(lplayer.Character:GetChildren()) do
  10045. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  10046. v.Handle.Mesh:Destroy()
  10047. end
  10048. end
  10049. end
  10050. if string.sub(CMDBAR.Text, 1, 9) == ("blockhats") then
  10051. for i,v in pairs(lplayer.Character:GetChildren()) do
  10052. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  10053. v.Handle.Mesh:Destroy()
  10054. end
  10055. end
  10056. end
  10057. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshtool") then
  10058. for i,v in pairs(lplayer.Character:GetChildren()) do
  10059. if (v:IsA("Tool")) then
  10060. v.Handle.Mesh:Destroy()
  10061. end
  10062. end
  10063. end
  10064. if string.sub(CMDBAR.Text, 1, 9) == ("blocktool") then
  10065. for i,v in pairs(lplayer.Character:GetChildren()) do
  10066. if (v:IsA("Tool")) then
  10067. v.Handle.Mesh:Destroy()
  10068. end
  10069. end
  10070. end
  10071. if string.sub(CMDBAR.Text, 1, 7) == ("spinner") then
  10072. local p = Instance.new("RocketPropulsion")
  10073. p.Parent = lplayer.Character.HumanoidRootPart
  10074. p.Name = "Spinner"
  10075. p.Target = lplayer.Character["Left Arm"]
  10076. p:Fire()
  10077. game:GetService("StarterGui"):SetCore("SendNotification", {
  10078. Title = "Spinner enabled";
  10079. Text = "Type ;nospinner to disable.";
  10080. })
  10081. end
  10082. if string.sub(CMDBAR.Text, 1, 9) == ("nospinner") then
  10083. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  10084. end
  10085. if string.sub(CMDBAR.Text, 1, 6) == ("reachd") then
  10086. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  10087. if v:isA("Tool") then
  10088. local a = Instance.new("SelectionBox",v.Handle)
  10089. a.Adornee = v.Handle
  10090. v.Handle.Size = Vector3.new(0.5,0.5,60)
  10091. v.GripPos = Vector3.new(0,0,0)
  10092. lplayer.Character.Humanoid:UnequipTools()
  10093. end
  10094. end
  10095. game:GetService("StarterGui"):SetCore("SendNotification", {
  10096. Title = "Reach applied!";
  10097. Text = "Applied to equipped sword. Use ;noreach to disable.";
  10098. })
  10099. end
  10100. if string.sub(CMDBAR.Text, 1, 6) == ("reach ") then
  10101. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  10102. if v:isA("Tool") then
  10103. local a = Instance.new("SelectionBox",v.Handle)
  10104. a.Name = "Reach"
  10105. a.Adornee = v.Handle
  10106. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(CMDBAR.Text, 7)))
  10107. v.GripPos = Vector3.new(0,0,0)
  10108. lplayer.Character.Humanoid:UnequipTools()
  10109. end
  10110. end
  10111. game:GetService("StarterGui"):SetCore("SendNotification", {
  10112. Title = "Reach applied!";
  10113. Text = "Applied to equipped sword. Use ;noreach to disable.";
  10114. })
  10115. end
  10116. if string.sub(CMDBAR.Text, 1, 7) == ("noreach") then
  10117. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  10118. if v:isA("Tool") then
  10119. v.Handle.Reach:Destroy()
  10120. end
  10121. end
  10122. game:GetService("StarterGui"):SetCore("SendNotification", {
  10123. Title = "Reach removed!";
  10124. Text = "Removed reach from equipped sword.";
  10125. })
  10126. end
  10127. if string.sub(CMDBAR.Text, 1, 6) == ("rkill ") then
  10128. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  10129. lplayer.Character.Humanoid.Name = 1
  10130. local l = lplayer.Character["1"]:Clone()
  10131. l.Parent = lplayer.Character
  10132. l.Name = "Humanoid"
  10133. wait(0.1)
  10134. lplayer.Character["1"]:Destroy()
  10135. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  10136. lplayer.Character.Animate.Disabled = true
  10137. wait(0.1)
  10138. lplayer.Character.Animate.Disabled = false
  10139. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  10140. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  10141. lplayer.Character.Humanoid:EquipTool(v)
  10142. end
  10143. wait(0.1)
  10144. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  10145. wait(0.2)
  10146. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  10147. wait(0.5)
  10148. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  10149. game:GetService("StarterGui"):SetCore("SendNotification", {
  10150. Title = "Tools needed!";
  10151. Text = "You need a tool in your backpack for this command!";
  10152. })
  10153. end
  10154. end
  10155. if string.sub(CMDBAR.Text, 1, 6) == ("tp me ") then
  10156. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  10157. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  10158. end
  10159. end
  10160. if string.sub(CMDBAR.Text, 1, 7) == ("cbring ") then
  10161. if (string.sub(CMDBAR.Text, 8)) == "all" or (string.sub(CMDBAR.Text, 8)) == "All" or (string.sub(CMDBAR.Text, 8)) == "ALL" then
  10162. cbringall = true
  10163. else
  10164. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  10165. brplr = v.Name
  10166. end
  10167. end
  10168. cbring = true
  10169. end
  10170. if string.sub(CMDBAR.Text, 1, 8) == ("uncbring") then
  10171. cbring = false
  10172. cbringall = false
  10173. end
  10174. if string.sub(CMDBAR.Text, 1, 5) == ("swap ") then
  10175. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  10176. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  10177. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  10178. lplayer.Character.Humanoid.Name = 1
  10179. local l = lplayer.Character["1"]:Clone()
  10180. l.Parent = lplayer.Character
  10181. l.Name = "Humanoid"
  10182. wait(0.1)
  10183. lplayer.Character["1"]:Destroy()
  10184. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  10185. lplayer.Character.Animate.Disabled = true
  10186. wait(0.1)
  10187. lplayer.Character.Animate.Disabled = false
  10188. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  10189. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  10190. lplayer.Character.Humanoid:EquipTool(v)
  10191. end
  10192. local function tp(player,player2)
  10193. local char1,char2=player.Character,player2.Character
  10194. if char1 and char2 then
  10195. char1:MoveTo(char2.Head.Position)
  10196. end
  10197. end
  10198. wait(0.1)
  10199. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  10200. wait(0.2)
  10201. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  10202. wait(0.5)
  10203. lplayer.Character.HumanoidRootPart.CFrame = NOW
  10204. wait(0.6)
  10205. tp(lplayer, game:GetService("Players")[v.Name])
  10206. wait(0.4)
  10207. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  10208. game:GetService("StarterGui"):SetCore("SendNotification", {
  10209. Title = "Tools needed!";
  10210. Text = "You need a tool in your backpack for this command!";
  10211. })
  10212. end
  10213. end
  10214. if string.sub(CMDBAR.Text, 1, 7) == ("glitch ") then
  10215. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  10216. lplayer.Character.Humanoid.Name = 1
  10217. local l = lplayer.Character["1"]:Clone()
  10218. l.Parent = lplayer.Character
  10219. l.Name = "Humanoid"
  10220. wait(0.1)
  10221. lplayer.Character["1"]:Destroy()
  10222. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  10223. lplayer.Character.Animate.Disabled = true
  10224. wait(0.1)
  10225. lplayer.Character.Animate.Disabled = false
  10226. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  10227. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  10228. lplayer.Character.Humanoid:EquipTool(v)
  10229. end
  10230. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  10231. wait(0.3)
  10232. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  10233. wait(0.4)
  10234. b = Instance.new("BodyForce")
  10235. b.Parent = lplayer.Character.HumanoidRootPart
  10236. b.Name = "Glitch"
  10237. b.Force = Vector3.new(100000000,5000,0)
  10238. game:GetService("StarterGui"):SetCore("SendNotification", {
  10239. Title = "Tools needed!";
  10240. Text = "You need a tool in your backpack for this command!";
  10241. })
  10242. end
  10243. end
  10244. if string.sub(CMDBAR.Text, 1, 8) == ("unglitch") then
  10245. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  10246. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  10247. b = Instance.new("BodyForce")
  10248. b.Parent = lplayer.Character.HumanoidRootPart
  10249. b.Name = "unGlitch"
  10250. b.Force = Vector3.new(0,-5000000,0)
  10251. wait(2)
  10252. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  10253. end
  10254. if string.sub(CMDBAR.Text, 1, 8) == ("grespawn") then
  10255. lplayer.Character.Humanoid.Health = 0
  10256. wait(1)
  10257. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  10258. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  10259. end
  10260. if string.sub(CMDBAR.Text, 1, 8) == ("explorer") then
  10261. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  10262. game:GetService("StarterGui"):SetCore("SendNotification", {
  10263. Title = "Success!";
  10264. Text = "DEX Explorer has loaded.";
  10265. })
  10266. end
  10267. if string.sub(CMDBAR.Text, 1, 5) == ("anim ") then
  10268. local Anim = Instance.new("Animation")
  10269. Anim.AnimationId = "rbxassetid://"..(string.sub(CMDBAR.Text, 6))
  10270. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  10271. track:Play(.1, 1, 1)
  10272. end
  10273. if string.sub(CMDBAR.Text, 1, 7) == ("animgui") then
  10274. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  10275. game:GetService("StarterGui"):SetCore("SendNotification", {
  10276. Title = "Success!";
  10277. Text = "Energize Animations GUI has loaded.";
  10278. })
  10279. end
  10280. if string.sub(CMDBAR.Text, 1, 7) == ("savepos") then
  10281. saved = lplayer.Character.HumanoidRootPart.CFrame
  10282. game:GetService("StarterGui"):SetCore("SendNotification", {
  10283. Title = "Position Saved";
  10284. Text = "Use ;loadpos to return to saved position.";
  10285. })
  10286. end
  10287. if string.sub(CMDBAR.Text, 1, 7) == ("loadpos") then
  10288. lplayer.Character.HumanoidRootPart.CFrame = saved
  10289. end
  10290. if string.sub(CMDBAR.Text, 1, 5) == ("bang ") then
  10291. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  10292. local Anim2 = Instance.new("Animation")
  10293. Anim2.AnimationId = "rbxassetid://148840371"
  10294. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  10295. track2:Play(.1, 1, 1)
  10296. bplrr = v.Name
  10297. banpl = true
  10298. end
  10299. end
  10300. if string.sub(CMDBAR.Text, 1, 6) == ("unbang") then
  10301. banpl = false
  10302. end
  10303. if string.sub(CMDBAR.Text, 1, 9) == ("bringmod ") then
  10304. local function bringmodw()
  10305. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  10306. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  10307. for i,ch in pairs(obj:GetDescendants()) do
  10308. if (ch:IsA("BasePart")) then
  10309. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  10310. ch.CanCollide = false
  10311. ch.Transparency = 0.7
  10312. wait()
  10313. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  10314. wait()
  10315. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  10316. wait()
  10317. ch.CFrame = lplayer.Character["Head"].CFrame
  10318. end
  10319. end
  10320. end
  10321. end
  10322. end
  10323. while wait() do
  10324. bringmodw()
  10325. end
  10326. game:GetService("StarterGui"):SetCore("SendNotification", {
  10327. Title = "BringMod";
  10328. Text = "BringMod enabled.";
  10329. })
  10330. end
  10331. if string.sub(CMDBAR.Text, 1, 7) == ("respawn") then
  10332. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  10333. local hum = Instance.new('Humanoid', mod)
  10334. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  10335. lplayer.Character = mod
  10336. end
  10337. if string.sub(CMDBAR.Text, 1, 8) == ("shutdown") then
  10338. game:GetService'RunService'.Stepped:Connect(function()
  10339. pcall(function()
  10340. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  10341. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  10342. for _,x in pairs(v.Character.Head:GetChildren()) do
  10343. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  10344. end
  10345. end
  10346. end
  10347. end)
  10348. end)
  10349. game:GetService("StarterGui"):SetCore("SendNotification", {
  10350. Title = "Attempting Shutdown";
  10351. Text = "Shutdown Attempt has begun.";
  10352. })
  10353. end
  10354. if string.sub(CMDBAR.Text, 1, 7) == ("delobj ") then
  10355. objtodel = (string.sub(CMDBAR.Text, 8))
  10356. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  10357. if v.Name == objtodel then
  10358. v:Destroy()
  10359. end
  10360. end
  10361. end
  10362. if string.sub(CMDBAR.Text, 1, 7) == ("getplrs") then
  10363. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  10364. print(v)
  10365. end
  10366. game:GetService("StarterGui"):SetCore("SendNotification", {
  10367. Title = "Printed";
  10368. Text = "Players have been printed to console. (F9)";
  10369. })
  10370. end
  10371. if string.sub(CMDBAR.Text, 1, 8) == ("deldecal") then
  10372. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  10373. if (v:IsA("Decal")) then
  10374. v:Destroy()
  10375. end
  10376. end
  10377. end
  10378. if string.sub(CMDBAR.Text, 1, 10) == ("opfinality") then
  10379. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  10380. game:GetService("StarterGui"):SetCore("SendNotification", {
  10381. Title = "Success!";
  10382. Text = "OpFinality GUI has loaded.";
  10383. })
  10384. end
  10385. if string.sub(CMDBAR.Text, 1, 7) == ("remotes") then
  10386. remotes = true
  10387. added = true
  10388. game.DescendantAdded:connect(function(rmt)
  10389. if added == true then
  10390. if remotes == true then
  10391. if rmt:IsA("RemoteEvent") then
  10392. print("A RemoteEvent was added!")
  10393. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  10394. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  10395. end end end
  10396. end)
  10397. game.DescendantAdded:connect(function(rmtfnctn)
  10398. if added == true then
  10399. if remotes == true then
  10400. if rmtfnctn:IsA("RemoteFunction") then
  10401. warn("A RemoteFunction was added!")
  10402. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  10403. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  10404. end end end
  10405. end)
  10406.  
  10407. game.DescendantAdded:connect(function(bndfnctn)
  10408. if added == true then
  10409. if binds == true then
  10410. if bndfnctn:IsA("BindableFunction") then
  10411. print("A BindableFunction was added!")
  10412. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  10413. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  10414. end end end
  10415. end)
  10416.  
  10417. game.DescendantAdded:connect(function(bnd)
  10418. if added == true then
  10419. if binds == true then
  10420. if bnd:IsA("BindableEvent") then
  10421. warn("A BindableEvent was added!")
  10422. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  10423. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  10424. end end end
  10425. end)
  10426.  
  10427.  
  10428. if binds == true then
  10429. for i,v in pairs(game:GetDescendants()) do
  10430. if v:IsA("BindableFunction") then
  10431. print(" game." .. v:GetFullName() .. " | BindableFunction")
  10432. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  10433. end end
  10434. for i,v in pairs(game:GetDescendants()) do
  10435. if v:IsA("BindableEvent") then
  10436. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  10437. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  10438. end end
  10439. else
  10440. print("Off")
  10441. end
  10442. if remotes == true then
  10443. for i,v in pairs(game:GetDescendants()) do
  10444. if v:IsA("RemoteFunction") then
  10445. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  10446. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  10447. end end
  10448. wait()
  10449. for i,v in pairs(game:GetDescendants()) do
  10450. if v:IsA("RemoteEvent") then
  10451. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  10452. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  10453. end end
  10454. else
  10455. print("Off")
  10456. end
  10457. game:GetService("StarterGui"):SetCore("SendNotification", {
  10458. Title = "Printing Remotes";
  10459. Text = "Type ;noremotes to disable.";
  10460. })
  10461. end
  10462. if string.sub(CMDBAR.Text, 1, 9) == ("noremotes") then
  10463. remotes = false
  10464. added = false
  10465. game:GetService("StarterGui"):SetCore("SendNotification", {
  10466. Title = "Printing Remotes Disabled";
  10467. Text = "Type ;remotes to enable.";
  10468. })
  10469. end
  10470. if string.sub(CMDBAR.Text, 1, 9) == ("tpdefault") then
  10471. spin = false
  10472. followed = false
  10473. traill = false
  10474. noclip = false
  10475. annoying = false
  10476. hwalk = false
  10477. cbringing = false
  10478. end
  10479. if string.sub(CMDBAR.Text, 1, 7) == ("stopsit") then
  10480. stopsitting = true
  10481. end
  10482. if string.sub(CMDBAR.Text, 1, 5) == ("gosit") then
  10483. stopsitting = false
  10484. end
  10485. if string.sub(CMDBAR.Text, 1, 7) == ("version") then
  10486. print(adminversion)
  10487. game:GetService("StarterGui"):SetCore("SendNotification", {
  10488. Title = "Version";
  10489. Text = adminversion;
  10490. })
  10491. end
  10492. if string.sub(CMDBAR.Text, 1, 7) == ("clicktp") then
  10493. clickgoto = true
  10494. game:GetService("StarterGui"):SetCore("SendNotification", {
  10495. Title = "Click TP";
  10496. Text = "Press E to teleport to mouse position";
  10497. })
  10498. end
  10499. if string.sub(CMDBAR.Text, 1, 9) == ("noclicktp") then
  10500. clickgoto = false
  10501. game:GetService("StarterGui"):SetCore("SendNotification", {
  10502. Title = "Click TP";
  10503. Text = "Click TP has been disabled.";
  10504. })
  10505. end
  10506. if string.sub(CMDBAR.Text, 1, 7) == ("toolson") then
  10507. gettingtools = true
  10508. game:GetService("StarterGui"):SetCore("SendNotification", {
  10509. Title = "Tools Enabled";
  10510. Text = "Automatically colleting tools dropped.";
  10511. })
  10512. end
  10513. if string.sub(CMDBAR.Text, 1, 8) == ("toolsoff") then
  10514. gettingtools = false
  10515. game:GetService("StarterGui"):SetCore("SendNotification", {
  10516. Title = "Tools Disabled";
  10517. Text = "Click TP has been disabled.";
  10518. })
  10519. end
  10520. if string.sub(CMDBAR.Text, 1, 9) == ("delcmdbar") then
  10521. ScreenGui:Destroy()
  10522. end
  10523. if string.sub(CMDBAR.Text, 1, 5) == ("reset") then
  10524. lplayer.Character.Head:Destroy()
  10525. end
  10526. if string.sub(CMDBAR.Text, 1, 6) == ("state ") then
  10527. statechosen = string.sub(CMDBAR.Text, 7)
  10528. changingstate = true
  10529. end
  10530. if string.sub(CMDBAR.Text, 1, 8) == ("gravity ") then
  10531. game:GetService("Workspace").Gravity = string.sub(CMDBAR.Text, 9)
  10532. end
  10533. if string.sub(CMDBAR.Text, 1, 9) == ("looprhats") then
  10534. removingmeshhats = true
  10535. end
  10536. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprhats") then
  10537. removingmeshhats = false
  10538. end
  10539. if string.sub(CMDBAR.Text, 1, 9) == ("looprtool") then
  10540. removingmeshtool = true
  10541. end
  10542. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprtool") then
  10543. removingmeshtool = false
  10544. end
  10545. if string.sub(CMDBAR.Text, 1, 9) == ("givetool ") then
  10546. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  10547. if v:IsA("Tool") then
  10548. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  10549. v.Parent = player.Character
  10550. end
  10551. end
  10552. end
  10553. end
  10554. if string.sub(CMDBAR.Text, 1, 4) == ("age ") then
  10555. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  10556. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  10557. end
  10558. end
  10559. if string.sub(CMDBAR.Text, 1, 3) == ("id ") then
  10560. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 4))) do
  10561. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  10562. end
  10563. end
  10564. if string.sub(CMDBAR.Text, 1, 5) == (".age ") then
  10565. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  10566. game:GetService("StarterGui"):SetCore("SendNotification", {
  10567. Title = player.AccountAge.." Days";
  10568. Text = "Account age of "..player.Name;
  10569. })
  10570. end
  10571. end
  10572. if string.sub(CMDBAR.Text, 1, 4) == (".id ") then
  10573. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  10574. game:GetService("StarterGui"):SetCore("SendNotification", {
  10575. Title = player.UserId.." ID";
  10576. Text = "Account ID of "..player.Name;
  10577. })
  10578. end
  10579. end
  10580. if string.sub(CMDBAR.Text, 1, 6) == ("gameid") then
  10581. game:GetService("StarterGui"):SetCore("SendNotification", {
  10582. Title = "Game ID";
  10583. Text = "Game ID: ".. game.GameId;
  10584. })
  10585. end
  10586. if string.sub(CMDBAR.Text, 1, 3) == ("pgs") then
  10587. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  10588. if pgscheck == true then
  10589. game:GetService("StarterGui"):SetCore("SendNotification", {
  10590. Title = "PGSPhysicsSolverEnabled";
  10591. Text = "PGS is Enabled!";
  10592. })
  10593. else
  10594. game:GetService("StarterGui"):SetCore("SendNotification", {
  10595. Title = "PGSPhysicsSolverEnabled";
  10596. Text = "PGS is Disabled!";
  10597. })
  10598. end
  10599. end
  10600. if string.sub(CMDBAR.Text, 1, 11) == ("removeinvis") then
  10601. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  10602. if v:IsA("Part") then
  10603. if v.Transparency == 1 then
  10604. if v.Name ~= "HumanoidRootPart" then
  10605. v:Destroy()
  10606. end
  10607. end
  10608. end
  10609. end
  10610. end
  10611. if string.sub(CMDBAR.Text, 1, 9) == ("removefog") then
  10612. game:GetService("Lighting").FogStart = 0
  10613. game:GetService("Lighting").FogEnd = 9999999999999
  10614. end
  10615. if string.sub(CMDBAR.Text, 1, 7) == ("disable") then
  10616. lplayer.Character.Humanoid.Parent = lplayer
  10617. end
  10618. if string.sub(CMDBAR.Text, 1, 6) == ("enable") then
  10619. lplayer.Humanoid.Parent = lplayer.Character
  10620. end
  10621. if string.sub(CMDBAR.Text, 1, 13) == ("givealltools ") then
  10622. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  10623. if v:IsA("Tool") then
  10624. v.Parent = lplayer.Character
  10625. wait()
  10626. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 14))) do
  10627. v.Parent = player.Character
  10628. end
  10629. end
  10630. end
  10631. end
  10632. if string.sub(CMDBAR.Text, 1, 9) == ("flyspeed ") then
  10633. speedfly = string.sub(CMDBAR.Text, 10)
  10634. wait()
  10635. change()
  10636. end
  10637. if string.sub(CMDBAR.Text, 1, 7) == ("carpet ") then
  10638. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  10639. local Anim3 = Instance.new("Animation")
  10640. Anim3.AnimationId = "rbxassetid://282574440"
  10641. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  10642. track3:Play(.1, 1, 1)
  10643. bplrr = v.Name
  10644. banpl = true
  10645. end
  10646. end
  10647. if string.sub(CMDBAR.Text, 1, 8) == ("uncarpet") then
  10648. banpl = false
  10649. end
  10650. if string.sub(CMDBAR.Text, 1, 6) == ("stare ") then
  10651. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  10652. staring = true
  10653. stareplr = v
  10654. end
  10655. end
  10656. if string.sub(CMDBAR.Text, 1, 7) == ("unstare") then
  10657. staring = false
  10658. end
  10659. if string.sub(CMDBAR.Text, 1, 7) == ("logchat") then
  10660. chatlogs = true
  10661. game:GetService("StarterGui"):SetCore("SendNotification", {
  10662. Title = "LogChat enabled";
  10663. Text = "Now logging all player chat.";
  10664. })
  10665. end
  10666. if string.sub(CMDBAR.Text, 1, 9) == ("unlogchat") then
  10667. chatlogs = false
  10668. game:GetService("StarterGui"):SetCore("SendNotification", {
  10669. Title = "LogChat disabled";
  10670. Text = "Stopped logging all player chat.";
  10671. })
  10672. end
  10673. if string.sub(CMDBAR.Text, 1, 6) == ("fixcam") then
  10674. game:GetService("Workspace").CurrentCamera:Destroy()
  10675. wait(0.1)
  10676. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  10677. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  10678. lplayer.CameraMinZoomDistance = 0.5
  10679. lplayer.CameraMaxZoomDistance = 400
  10680. lplayer.CameraMode = "Classic"
  10681. end
  10682. if string.sub(CMDBAR.Text, 1, 7) == ("unstate") then
  10683. changingstate = false
  10684. end
  10685. CMDBAR.Text = ""
  10686. end
  10687. end)
  10688.  
  10689. wait(0.3)
  10690. game:GetService("StarterGui"):SetCore("SendNotification", {
  10691. Title = "Loaded successfully!";
  10692. Text = "Reviz Admin V2 by illremember";
  10693. })
  10694. wait(0.1)
  10695. print("Reviz Admin V2 loaded!")
  10696. if game:GetService("Workspace").FilteringEnabled == true then
  10697. warn("FE is Enabled (Filtering Enabled)")
  10698. game:GetService("StarterGui"):SetCore("SendNotification", {
  10699. Title = "FE is Enabled";
  10700. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  10701. })
  10702. else
  10703. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  10704. game:GetService("StarterGui"):SetCore("SendNotification", {
  10705. Title = "FE is Disabled";
  10706. Text = "Filtering Disabled. Consider using a different admin script.";
  10707. })
  10708. end
  10709.  
  10710. local intro = Instance.new("ScreenGui")
  10711. local Frame = Instance.new("Frame")
  10712. local ImageLabel = Instance.new("ImageLabel")
  10713. intro.Parent = game:GetService("CoreGui")
  10714. Frame.Parent = intro
  10715. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  10716. Frame.BackgroundTransparency = 1
  10717. Frame.Size = UDim2.new(1, 0, 0, 300)
  10718. Frame.Position = UDim2.new(0, 0, -0.4, 0)
  10719. ImageLabel.Parent = Frame
  10720. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  10721. ImageLabel.BackgroundTransparency = 1
  10722. ImageLabel.Position = UDim2.new(0, 0, 0, 0)
  10723. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  10724. ImageLabel.Image = "http://www.roblox.com/asset/?id=1542162618"
  10725. Frame:TweenPosition(UDim2.new(0, 0, 0.2, 0), "Out", "Elastic", 3)
  10726. wait(3.01)
  10727. Frame:TweenPosition(UDim2.new(0, 0, 1.5, 0), "Out", "Elastic", 5)
  10728. wait(5.01)
  10729. intro:Destroy()
  10730. end)
  10731.  
  10732. arrest.Name = "arrest"
  10733. arrest.Parent = main
  10734. arrest.BackgroundColor3 = Color3.new(1, 0, 0)
  10735. arrest.Position = UDim2.new(0.333333343, 0, 0.332713753, 0)
  10736. arrest.Size = UDim2.new(0, 111, 0, 32)
  10737. arrest.Font = Enum.Font.GothamBlack
  10738. arrest.Text = "Arrest"
  10739. arrest.TextColor3 = Color3.new(0, 0, 0)
  10740. arrest.TextSize = 14
  10741. arrest.MouseButton1Down:connect(function()
  10742. local mouse = game.Players.LocalPlayer:GetMouse()
  10743. local arrestEvent = game.Workspace.Remote.arrest
  10744. mouse.Button1Down:connect(function()
  10745. local obj = mouse.Target
  10746. local response = arrestEvent:InvokeServer(obj)
  10747. end)
  10748. end)
  10749.  
  10750. attach.Name = "attach"
  10751. attach.Parent = main
  10752. attach.BackgroundColor3 = Color3.new(1, 0, 0)
  10753. attach.Position = UDim2.new(0.656167924, 0, 0.332713753, 0)
  10754. attach.Size = UDim2.new(0, 111, 0, 32)
  10755. attach.Font = Enum.Font.GothamBlack
  10756. attach.Text = "Attach"
  10757. attach.TextColor3 = Color3.new(0, 0, 0)
  10758. attach.TextSize = 14
  10759. attach.MouseButton1Down:connect(function()
  10760. local targetname = "" -- Person you want to bring
  10761.  
  10762. local LocalPlayer = game:GetService("Players").LocalPlayer
  10763. local ran1 = false
  10764. local equipped = false
  10765. local savepos = LocalPlayer.Character.HumanoidRootPart.CFrame
  10766. local target = game:GetService("Players")[targetname]
  10767. repeat
  10768. for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  10769. if tool:IsA("Tool") then
  10770. tool.Parent = LocalPlayer
  10771. end
  10772. end
  10773. LocalPlayer.Character:ClearAllChildren()
  10774. local char = Instance.new("Model", workspace)
  10775. char.Name = "character"
  10776. Instance.new("Part", char).Name = "Torso";
  10777. Instance.new("Part", char).Name = "Head";
  10778. Instance.new("Humanoid", char).Name = "Humanoid";
  10779. LocalPlayer.Character = char
  10780. repeat wait() until LocalPlayer.Character
  10781. until #LocalPlayer:GetChildren() - 4 >= 2
  10782. for _, char in pairs(workspace:GetChildren()) do
  10783. if char.Name == "character" and char:IsA("Model") then
  10784. char:Destroy()
  10785. end
  10786. end
  10787. repeat wait() until LocalPlayer.Character.HumanoidRootPart ~= nil
  10788. for _, tool in pairs(LocalPlayer:GetChildren()) do
  10789. if tool:IsA("Tool") then
  10790. tool.Parent = LocalPlayer.Backpack
  10791. end
  10792. end
  10793. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = LocalPlayer.Character
  10794. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = LocalPlayer.Character
  10795. local tool = LocalPlayer.Character:FindFirstChildOfClass("Tool")
  10796. tool.Parent = workspace
  10797. local attacher = LocalPlayer.Character:FindFirstChildOfClass("Tool")
  10798. attacher.Parent = workspace
  10799. LocalPlayer.Character.Humanoid:EquipTool(tool)
  10800. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  10801. LocalPlayer.Character.Humanoid:UnequipTools()
  10802. attacher.AncestryChanged:connect(function()
  10803. if ran1 == false then
  10804. ran1 = true
  10805. equipped = true
  10806. end
  10807. end)
  10808. end)
  10809.  
  10810. fastrem.Name = "fastrem"
  10811. fastrem.Parent = main
  10812. fastrem.BackgroundColor3 = Color3.new(1, 1, 0)
  10813. fastrem.Position = UDim2.new(0, 0, 0.48327139, 0)
  10814. fastrem.Size = UDim2.new(0, 84, 0, 32)
  10815. fastrem.Font = Enum.Font.Garamond
  10816. fastrem.Text = "Fast Remington"
  10817. fastrem.TextColor3 = Color3.new(0, 0, 0)
  10818. fastrem.TextSize = 14
  10819. fastrem.MouseButton1Down:connect(function()
  10820. local Player = game.Players.LocalPlayer.Name
  10821. local Gun = "Remington 870" -- < -- Gun Name
  10822. local Run = game:GetService("RunService")
  10823.  
  10824. Gun = game.Players[Player].Character[Gun]
  10825. local Mouse = game.Players.LocalPlayer:GetMouse()
  10826. local Down = false
  10827. local Sound = Gun.Handle.FireSound
  10828.  
  10829. function CreateRay(Point_A, Point_B)
  10830. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  10831. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  10832. local Dist = (Point_A - Pos).Magnitude
  10833. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  10834.  
  10835. return CFrame, Dist, Ray
  10836. end
  10837.  
  10838. function FireLaser(target)
  10839. coroutine.resume(coroutine.create(function()
  10840. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  10841. local Bullet = Instance.new("Part", Gun)
  10842. Bullet.BrickColor = BrickColor.Yellow()
  10843. Bullet.Material = "Neon"
  10844. Bullet.Anchored = true
  10845. Bullet.CanCollide = false
  10846. Bullet.Size = Vector3.new(0.2, 0.2, D)
  10847. Bullet.CFrame = C
  10848.  
  10849. local bulletTable = {}
  10850. table.insert(bulletTable, {
  10851. Hit = target,
  10852. Distance = D,
  10853. Cframe = C,
  10854. RayObject = R
  10855. })
  10856.  
  10857. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  10858. local C = Sound:Clone()
  10859. C.Parent = Gun
  10860. C:Play()
  10861. wait(0.05)
  10862. Bullet:Remove()
  10863. end))
  10864. end
  10865.  
  10866. Mouse.Button1Down:Connect(function()
  10867. Down = true
  10868. end)
  10869.  
  10870.  
  10871. Mouse.Button1Up:Connect(function()
  10872. Down = false
  10873. end)
  10874.  
  10875. while Run.Stepped:wait() do
  10876. if Down == true then
  10877. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  10878. FireLaser(Mouse.Target)
  10879. end
  10880. end
  10881. end)
  10882.  
  10883. fastm9.Name = "fastm9"
  10884. fastm9.Parent = main
  10885. fastm9.BackgroundColor3 = Color3.new(1, 1, 0)
  10886. fastm9.Position = UDim2.new(0.259869933, 0, 0.48327136, 0)
  10887. fastm9.Size = UDim2.new(0, 84, 0, 32)
  10888. fastm9.Font = Enum.Font.Garamond
  10889. fastm9.Text = "Fast M9"
  10890. fastm9.TextColor3 = Color3.new(0, 0, 0)
  10891. fastm9.TextSize = 14
  10892. fastm9.MouseButton1Down:connect(function()
  10893. local Player = game.Players.LocalPlayer.Name
  10894. local Gun = "M9" -- < -- Gun Name
  10895. local Run = game:GetService("RunService")
  10896.  
  10897. Gun = game.Players[Player].Character[Gun]
  10898. local Mouse = game.Players.LocalPlayer:GetMouse()
  10899. local Down = false
  10900. local Sound = Gun.Handle.FireSound
  10901.  
  10902. function CreateRay(Point_A, Point_B)
  10903. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  10904. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  10905. local Dist = (Point_A - Pos).Magnitude
  10906. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  10907.  
  10908. return CFrame, Dist, Ray
  10909. end
  10910.  
  10911. function FireLaser(target)
  10912. coroutine.resume(coroutine.create(function()
  10913. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  10914. local Bullet = Instance.new("Part", Gun)
  10915. Bullet.BrickColor = BrickColor.Yellow()
  10916. Bullet.Material = "Neon"
  10917. Bullet.Anchored = true
  10918. Bullet.CanCollide = false
  10919. Bullet.Size = Vector3.new(0.2, 0.2, D)
  10920. Bullet.CFrame = C
  10921.  
  10922. local bulletTable = {}
  10923. table.insert(bulletTable, {
  10924. Hit = target,
  10925. Distance = D,
  10926. Cframe = C,
  10927. RayObject = R
  10928. })
  10929.  
  10930. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  10931. local C = Sound:Clone()
  10932. C.Parent = Gun
  10933. C:Play()
  10934. wait(0.05)
  10935. Bullet:Remove()
  10936. end))
  10937. end
  10938.  
  10939. Mouse.Button1Down:Connect(function()
  10940. Down = true
  10941. end)
  10942.  
  10943.  
  10944. Mouse.Button1Up:Connect(function()
  10945. Down = false
  10946. end)
  10947.  
  10948. while Run.Stepped:wait() do
  10949. if Down == true then
  10950. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  10951. FireLaser(Mouse.Target)
  10952. end
  10953. end
  10954. end)
  10955.  
  10956. fasttaze.Name = "fasttaze"
  10957. fasttaze.Parent = main
  10958. fasttaze.BackgroundColor3 = Color3.new(1, 1, 0)
  10959. fasttaze.Position = UDim2.new(0.530197382, 0, 0.48327136, 0)
  10960. fasttaze.Size = UDim2.new(0, 84, 0, 32)
  10961. fasttaze.Font = Enum.Font.Garamond
  10962. fasttaze.Text = "Fast Taser"
  10963. fasttaze.TextColor3 = Color3.new(0, 0, 0)
  10964. fasttaze.TextSize = 14
  10965. fasttaze.MouseButton1Down:connect(function()
  10966. local Player = game.Players.LocalPlayer.Name
  10967. local Gun = "Taser" -- < -- Gun Name
  10968. local Run = game:GetService("RunService")
  10969.  
  10970. Gun = game.Players[Player].Character[Gun]
  10971. local Mouse = game.Players.LocalPlayer:GetMouse()
  10972. local Down = false
  10973. local Sound = Gun.Handle.FireSound
  10974.  
  10975. function CreateRay(Point_A, Point_B)
  10976. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  10977. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  10978. local Dist = (Point_A - Pos).Magnitude
  10979. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  10980.  
  10981. return CFrame, Dist, Ray
  10982. end
  10983.  
  10984. function FireLaser(target)
  10985. coroutine.resume(coroutine.create(function()
  10986. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  10987. local Bullet = Instance.new("Part", Gun)
  10988. Bullet.BrickColor = BrickColor.Yellow()
  10989. Bullet.Material = "Neon"
  10990. Bullet.Anchored = true
  10991. Bullet.CanCollide = false
  10992. Bullet.Size = Vector3.new(0.2, 0.2, D)
  10993. Bullet.CFrame = C
  10994.  
  10995. local bulletTable = {}
  10996. table.insert(bulletTable, {
  10997. Hit = target,
  10998. Distance = D,
  10999. Cframe = C,
  11000. RayObject = R
  11001. })
  11002.  
  11003. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  11004. local C = Sound:Clone()
  11005. C.Parent = Gun
  11006. C:Play()
  11007. wait(0.05)
  11008. Bullet:Remove()
  11009. end))
  11010. end
  11011.  
  11012. Mouse.Button1Down:Connect(function()
  11013. Down = true
  11014. end)
  11015.  
  11016.  
  11017. Mouse.Button1Up:Connect(function()
  11018. Down = false
  11019. end)
  11020.  
  11021. while Run.Stepped:wait() do
  11022. if Down == true then
  11023. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  11024. FireLaser(Mouse.Target)
  11025. end
  11026. end
  11027. end)
  11028.  
  11029. fastak.Name = "fastak"
  11030. fastak.Parent = main
  11031. fastak.BackgroundColor3 = Color3.new(1, 1, 0)
  11032. fastak.Position = UDim2.new(0.792650878, 0, 0.48327136, 0)
  11033. fastak.Size = UDim2.new(0, 79, 0, 32)
  11034. fastak.Font = Enum.Font.Garamond
  11035. fastak.Text = "Fast AK47"
  11036. fastak.TextColor3 = Color3.new(0, 0, 0)
  11037. fastak.TextSize = 14
  11038. fastak.MouseButton1Down:connect(function()
  11039. local Player = game.Players.LocalPlayer.Name
  11040. local Gun = "AK-47" -- < -- Gun Name
  11041. local Run = game:GetService("RunService")
  11042.  
  11043. Gun = game.Players[Player].Character[Gun]
  11044. local Mouse = game.Players.LocalPlayer:GetMouse()
  11045. local Down = false
  11046. local Sound = Gun.Handle.FireSound
  11047.  
  11048. function CreateRay(Point_A, Point_B)
  11049. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  11050. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  11051. local Dist = (Point_A - Pos).Magnitude
  11052. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  11053.  
  11054. return CFrame, Dist, Ray
  11055. end
  11056.  
  11057. function FireLaser(target)
  11058. coroutine.resume(coroutine.create(function()
  11059. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  11060. local Bullet = Instance.new("Part", Gun)
  11061. Bullet.BrickColor = BrickColor.Yellow()
  11062. Bullet.Material = "Neon"
  11063. Bullet.Anchored = true
  11064. Bullet.CanCollide = false
  11065. Bullet.Size = Vector3.new(0.2, 0.2, D)
  11066. Bullet.CFrame = C
  11067.  
  11068. local bulletTable = {}
  11069. table.insert(bulletTable, {
  11070. Hit = target,
  11071. Distance = D,
  11072. Cframe = C,
  11073. RayObject = R
  11074. })
  11075.  
  11076. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  11077. local C = Sound:Clone()
  11078. C.Parent = Gun
  11079. C:Play()
  11080. wait(0.05)
  11081. Bullet:Remove()
  11082. end))
  11083. end
  11084.  
  11085. Mouse.Button1Down:Connect(function()
  11086. Down = true
  11087. end)
  11088.  
  11089.  
  11090. Mouse.Button1Up:Connect(function()
  11091. Down = false
  11092. end)
  11093.  
  11094. while Run.Stepped:wait() do
  11095. if Down == true then
  11096. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  11097. FireLaser(Mouse.Target)
  11098. end
  11099. end
  11100. end)
  11101.  
  11102. killothers.Name = "killothers"
  11103. killothers.Parent = main
  11104. killothers.BackgroundColor3 = Color3.new(0, 1, 1)
  11105. killothers.Position = UDim2.new(0.0209699646, 0, 0.825278759, 0)
  11106. killothers.Size = UDim2.new(0, 354, 0, 45)
  11107. killothers.Font = Enum.Font.GothamBold
  11108. killothers.Text = "Kill Others {WORKING}"
  11109. killothers.TextColor3 = Color3.new(0, 0, 0)
  11110. killothers.TextSize = 14
  11111. killothers.MouseButton1Down:connect(function()
  11112. workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  11113.  
  11114. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  11115.  
  11116. wait(0.5)
  11117. function kill(a)
  11118. local A_1 =
  11119. {
  11120. [1] =
  11121. {
  11122. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-391.152252, 8.65560055, -83.2166901)),
  11123. ["Distance"] = 3.2524313926697,
  11124. ["Cframe"] = CFrame.new(840.310791, 101.334137, 2267.87988, 0.0636406094, 0.151434347, -0.986416459, 0, 0.988420188, 0.151741937, 0.997972965, -0.00965694897, 0.0629036576),
  11125. ["Hit"] = a.Character.Head
  11126. },
  11127. [2] =
  11128. {
  11129. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-392.481476, -8.44939327, -76.7261353)),
  11130. ["Distance"] = 3.2699294090271,
  11131. ["Cframe"] = CFrame.new(840.290466, 101.184189, 2267.93506, 0.0964837447, 0.0589403138, -0.993587971, 4.65661287e-10, 0.998245299, 0.0592165813, 0.995334625, -0.00571343815, 0.0963144377),
  11132. ["Hit"] = a.Character.Head
  11133. },
  11134. [3] =
  11135. {
  11136. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-389.21701, -2.50536323, -92.2163162)),
  11137. ["Distance"] = 3.1665518283844,
  11138. ["Cframe"] = CFrame.new(840.338867, 101.236496, 2267.80371, 0.0166504811, 0.0941716284, -0.995416701, 1.16415322e-10, 0.995554805, 0.0941846818, 0.999861419, -0.00156822044, 0.0165764652),
  11139. ["Hit"] = a.Character.Head
  11140. },
  11141. [4] =
  11142. {
  11143. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-393.353973, 3.13988972, -72.5452042)),
  11144. ["Distance"] = 3.3218522071838,
  11145. ["Cframe"] = CFrame.new(840.277222, 101.285957, 2267.9707, 0.117109694, 0.118740402, -0.985994935, -1.86264515e-09, 0.992826641, 0.119563118, 0.993119001, -0.0140019981, 0.116269611),
  11146. ["Hit"] = a.Character.Head
  11147. },
  11148. [5] =
  11149. {
  11150. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-390.73172, 3.2097764, -85.5477524)),
  11151. ["Distance"] = 3.222757101059,
  11152. ["Cframe"] = CFrame.new(840.317993, 101.286423, 2267.86035, 0.0517584644, 0.123365127, -0.991010666, 0, 0.992340803, 0.123530701, 0.99865967, -0.00639375951, 0.0513620302),
  11153. ["Hit"] = a.Character.Head
  11154. }
  11155. }
  11156. local A_2 = game.Players.LocalPlayer.Backpack["Remington 870"]
  11157. local Event = game:GetService("ReplicatedStorage").ShootEvent
  11158. Event:FireServer(A_1, A_2)
  11159. Event:FireServer(A_1, A_2)
  11160. end
  11161.  
  11162. for i,v in pairs(game.Players:GetChildren())do
  11163. if v.Name ~= game.Players.LocalPlayer.Name then
  11164. kill(v)
  11165. end
  11166. end
  11167. wait(1)
  11168. workspace.Remote.TeamEvent:FireServer("Bright orange")
  11169.  
  11170. end)
  11171.  
  11172. btools.Name = "btools"
  11173. btools.Parent = main
  11174. btools.BackgroundColor3 = Color3.new(1, 0, 0)
  11175. btools.Position = UDim2.new(0.0131370649, 0, 0.407063216, 0)
  11176. btools.Size = UDim2.new(0, 111, 0, 32)
  11177. btools.Font = Enum.Font.GothamBold
  11178. btools.Text = "Btools"
  11179. btools.TextColor3 = Color3.new(0, 0, 0)
  11180. btools.TextSize = 14
  11181. btools.MouseButton1Down:connect(function()
  11182. local tool1 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  11183. tool1.BinType = "Hammer"
  11184. end)
  11185.  
  11186. speed.Name = "speed"
  11187. speed.Parent = main
  11188. speed.BackgroundColor3 = Color3.new(1, 0, 0)
  11189. speed.Position = UDim2.new(0.328083992, 0, 0.407063216, 0)
  11190. speed.Size = UDim2.new(0, 112, 0, 32)
  11191. speed.Font = Enum.Font.GothamBold
  11192. speed.Text = "Speed"
  11193. speed.TextColor3 = Color3.new(0, 0, 0)
  11194. speed.TextSize = 14
  11195. speed.MouseButton1Down:connect(function()
  11196. Speed = "100" -- Change to how fast you want to go
  11197.  
  11198. player = game.Players.LocalPlayer.Character
  11199. power = "WalkSpeed"
  11200. player.Humanoid[power] = Speed
  11201. wait()
  11202. player.HumanoidRootPart.CustomPhysicalProperties = PhysicalProperties.new(9e99, 9e99, 9e99, 9e99, 9e99)
  11203. wait()
  11204. repeat
  11205. game.Workspace.Gravity = 1000
  11206. wait()
  11207. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 287.5
  11208. wait()
  11209. until game.Players.LocalPlayer.Character.Humanoid.Health == 0
  11210. end)
  11211.  
  11212. escape.Name = "escape"
  11213. escape.Parent = main
  11214. escape.BackgroundColor3 = Color3.new(1, 0, 0)
  11215. escape.Position = UDim2.new(0.653557003, 0, 0.407063186, 0)
  11216. escape.Size = UDim2.new(0, 112, 0, 32)
  11217. escape.Font = Enum.Font.GothamBold
  11218. escape.Text = "Escape"
  11219. escape.TextColor3 = Color3.new(0, 0, 0)
  11220. escape.TextSize = 14
  11221. escape.MouseButton1Down:connect(function()
  11222. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(465.9,98.19,2253.47)
  11223. end)
  11224.  
  11225. label.Name = "label"
  11226. label.Parent = main
  11227. label.BackgroundColor3 = Color3.new(1, 1, 1)
  11228. label.Position = UDim2.new(0.0209836699, 0, 0.657992601, 0)
  11229. label.Size = UDim2.new(0, 354, 0, 30)
  11230. label.Font = Enum.Font.Gotham
  11231. label.Text = "TELEPORTS"
  11232. label.TextColor3 = Color3.new(0, 0, 0)
  11233. label.TextSize = 14
  11234.  
  11235. prison.Name = "prison"
  11236. prison.Parent = main
  11237. prison.BackgroundColor3 = Color3.new(1, 0.333333, 1)
  11238. prison.Position = UDim2.new(0.0208877288, 0, 0.728624523, 0)
  11239. prison.Size = UDim2.new(0, 110, 0, 32)
  11240. prison.Font = Enum.Font.GothamBlack
  11241. prison.Text = "Prison"
  11242. prison.TextColor3 = Color3.new(0, 0, 0)
  11243. prison.TextSize = 14
  11244. prison.MouseButton1Down:connect(function()
  11245. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(918.77,100,2379.07)
  11246. end)
  11247.  
  11248. yard.Name = "yard"
  11249. yard.Parent = main
  11250. yard.BackgroundColor3 = Color3.new(1, 0.333333, 1)
  11251. yard.Position = UDim2.new(0.328981698, 0, 0.728624523, 0)
  11252. yard.Size = UDim2.new(0, 112, 0, 32)
  11253. yard.Font = Enum.Font.GothamBlack
  11254. yard.Text = "Yard"
  11255. yard.TextColor3 = Color3.new(0, 0, 0)
  11256. yard.TextSize = 14
  11257. yard.MouseButton1Down:connect(function()
  11258. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(779.87,98,2458.93)
  11259. end)
  11260.  
  11261. crimbase.Name = "crimbase"
  11262. crimbase.Parent = main
  11263. crimbase.BackgroundColor3 = Color3.new(1, 0.333333, 1)
  11264. crimbase.Position = UDim2.new(0.634464741, 0, 0.728624523, 0)
  11265. crimbase.Size = UDim2.new(0, 118, 0, 32)
  11266. crimbase.Font = Enum.Font.GothamBlack
  11267. crimbase.Text = "Crim Base"
  11268. crimbase.TextColor3 = Color3.new(0, 0, 0)
  11269. crimbase.TextSize = 14
  11270. crimbase.MouseButton1Down:connect(function()
  11271. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-943.46,94.13,2063.63)
  11272. end)
  11273.  
  11274. aimbot.Name = "aimbot"
  11275. aimbot.Parent = main
  11276. aimbot.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  11277. aimbot.Position = UDim2.new(0.0208877288, 0, 0.557620823, 0)
  11278. aimbot.Size = UDim2.new(0, 108, 0, 32)
  11279. aimbot.Font = Enum.Font.GothamBold
  11280. aimbot.Text = "Aimbot"
  11281. aimbot.TextColor3 = Color3.new(0.333333, 1, 1)
  11282. aimbot.TextSize = 14
  11283. aimbot.TextStrokeColor3 = Color3.new(0.333333, 1, 1)
  11284. aimbot.MouseButton1Down:connect(function()
  11285. -- Farewell Infortality.
  11286. -- Version: 2.82
  11287. -- Instances:
  11288. local strucidhack = Instance.new("ScreenGui")
  11289. local MainGUI = Instance.new("Frame")
  11290. local aimbotandesp = Instance.new("TextButton")
  11291. local closegui = Instance.new("TextButton")
  11292. local TextLabel = Instance.new("TextLabel")
  11293. local opengui = Instance.new("Frame")
  11294. local open = Instance.new("TextButton")
  11295. --Properties:
  11296. strucidhack.Name = "strucid hack"
  11297. strucidhack.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11298. MainGUI.Active = true
  11299. MainGUI.Draggable = true
  11300.  
  11301. MainGUI.Name = "MainGUI"
  11302. MainGUI.Parent = strucidhack
  11303. MainGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  11304. MainGUI.Position = UDim2.new(0.22521247, 0, 0.195965424, 0)
  11305. MainGUI.Size = UDim2.new(0, 385, 0, 371)
  11306. MainGUI.Visible = false
  11307.  
  11308. aimbotandesp.Name = "aimbot and esp"
  11309. aimbotandesp.Parent = MainGUI
  11310. aimbotandesp.BackgroundColor3 = Color3.new(1, 1, 1)
  11311. aimbotandesp.BorderColor3 = Color3.new(0.333333, 0.666667, 1)
  11312. aimbotandesp.BorderSizePixel = 3
  11313. aimbotandesp.Position = UDim2.new(0.136179864, 0, 0.310200483, 0)
  11314. aimbotandesp.Size = UDim2.new(0, 257, 0, 118)
  11315. aimbotandesp.Font = Enum.Font.GothamSemibold
  11316. aimbotandesp.Text = "Open Aimbot Gui"
  11317. aimbotandesp.TextColor3 = Color3.new(0, 0, 0.498039)
  11318. aimbotandesp.TextSize = 23
  11319. aimbotandesp.MouseButton1Click:connect(function()
  11320. local plrs = game:GetService("Players")
  11321. local TeamBased = true ; local teambasedswitch = "o"
  11322. local presskeytoaim = true; local aimkey = "e"
  11323. local raycast = false
  11324.  
  11325. local espupdatetime = 5; autoesp = false
  11326.  
  11327.  
  11328.  
  11329. local lockaim = true; local lockangle = 5
  11330.  
  11331.  
  11332.  
  11333. --function findwat(folder, what)
  11334. -- for i, smth in pairs(folder:GetChildren()) do
  11335. -- if string.find(string.lower(tostring(smth)), string.lower(what)) then
  11336. -- return smth
  11337. -- end
  11338. -- end
  11339. --end
  11340. --
  11341. --local plrs = findwat(game, "Players")
  11342.  
  11343.  
  11344.  
  11345.  
  11346. local Gui = Instance.new("ScreenGui")
  11347. local Move = Instance.new("Frame")
  11348. local Main = Instance.new("Frame")
  11349. local EspStatus = Instance.new("TextLabel")
  11350. local st1 = Instance.new("TextLabel")
  11351. local st1_2 = Instance.new("TextLabel")
  11352. local st1_3 = Instance.new("TextLabel")
  11353. local Name = Instance.new("TextLabel")
  11354. --Properties:
  11355. Gui.Name = "Gui"
  11356. Gui.Parent = plrs.LocalPlayer:WaitForChild("PlayerGui")
  11357.  
  11358. Move.Name = "Move"
  11359. Move.Parent = Gui
  11360. Move.BackgroundColor3 = Color3.new(0.0431373, 1, 0.0745098)
  11361. Move.BackgroundTransparency = 0.40000000596046
  11362. Move.BorderSizePixel = 0
  11363. Move.Position = UDim2.new(0.005, 0,0.018, 0)
  11364. Move.Size = UDim2.new(0.28141585, 0, 0.0320388414, 0)
  11365.  
  11366. Main.Name = "Main"
  11367. Main.Parent = Move
  11368. Main.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  11369. Main.BackgroundTransparency = 0.69999998807907
  11370. Main.Position = UDim2.new(0, 0, 0.995670795, 0)
  11371. Main.Size = UDim2.new(1.0000006, 0, 9.79697132, 0)
  11372.  
  11373. EspStatus.Name = "EspStatus"
  11374. EspStatus.Parent = Main
  11375. EspStatus.BackgroundColor3 = Color3.new(1, 1, 1)
  11376. EspStatus.BackgroundTransparency = 1
  11377. EspStatus.Size = UDim2.new(0.272955924, 0, 0.161862016, 0)
  11378. EspStatus.Font = Enum.Font.ArialBold
  11379. EspStatus.Text = "Press T to update Esp"
  11380. EspStatus.TextColor3 = Color3.new(0.0431373, 1, 0.0745098)
  11381. EspStatus.TextScaled = true
  11382. EspStatus.TextSize = 14
  11383. EspStatus.TextWrapped = true
  11384.  
  11385. st1.Name = "st1"
  11386. st1.Parent = Main
  11387. st1.BackgroundColor3 = Color3.new(1, 1, 1)
  11388. st1.BackgroundTransparency = 1
  11389. st1.Position = UDim2.new(0.271787882, 0, 0, 0)
  11390. st1.Size = UDim2.new(0.728211343, 0, 0.161862016, 0)
  11391. st1.Font = Enum.Font.ArialBold
  11392. st1.Text = "Press "..aimkey.." to lock on a person inside ur view"
  11393. st1.TextColor3 = Color3.new(0.0431373, 1, 0.0745098)
  11394. st1.TextScaled = true
  11395. st1.TextSize = 14
  11396. st1.TextWrapped = true
  11397.  
  11398. st1_2.Name = "st1"
  11399. st1_2.Parent = Main
  11400. st1_2.BackgroundColor3 = Color3.new(1, 1, 1)
  11401. st1_2.BackgroundTransparency = 1
  11402. st1_2.Position = UDim2.new(0, 0, 0.375590861, 0)
  11403. st1_2.Size = UDim2.new(0.999999881, 0, 0.161862016, 0)
  11404. st1_2.Font = Enum.Font.ArialBold
  11405. st1_2.Text = "Press L to enable esp loop"
  11406. st1_2.TextColor3 = Color3.new(0.0431373, 1, 0.0745098)
  11407. st1_2.TextScaled = true
  11408. st1_2.TextSize = 14
  11409. st1_2.TextWrapped = true
  11410.  
  11411. st1_3.Name = "st1"
  11412. st1_3.Parent = Main
  11413. st1_3.BackgroundColor3 = Color3.new(1, 1, 1)
  11414. st1_3.BackgroundTransparency = 1
  11415. st1_3.Position = UDim2.new(0, 0, 0.18558608, 0)
  11416. st1_3.Size = UDim2.new(0.999999881, 0, 0.161862016, 0)
  11417. st1_3.Font = Enum.Font.ArialBold
  11418. st1_3.Text = "Press O to change team based mode"
  11419. st1_3.TextColor3 = Color3.new(0.0431373, 1, 0.0745098)
  11420. st1_3.TextScaled = true
  11421. st1_3.TextSize = 14
  11422. st1_3.TextWrapped = true
  11423. local teambasedstatus = st1_3:Clone()
  11424. teambasedstatus.Parent = st1_3
  11425. teambasedstatus.TextScaled = true
  11426. teambasedstatus.Position = UDim2.new(0, 0,0.694, 0)
  11427. teambasedstatus.Text = tostring(TeamBased)
  11428.  
  11429. Name.Name = "Name"
  11430. Name.Parent = Move
  11431. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  11432. Name.BackgroundTransparency = 1
  11433. Name.Size = UDim2.new(0.838, 0, 0.980000019, 0)
  11434. Name.Font = Enum.Font.Arial
  11435. Name.Text = "FPS gui v1.0"
  11436. Name.TextColor3 = Color3.new(0, 0, 0)
  11437. Name.TextScaled = true
  11438. Name.TextSize = 14
  11439. Name.TextWrapped = true
  11440. Name.TextXAlignment = Enum.TextXAlignment.Left
  11441. -- Scripts:
  11442.  
  11443.  
  11444. local plrsforaim = {}
  11445.  
  11446. local lplr = game:GetService("Players").LocalPlayer
  11447. Move.Draggable = true
  11448. Gui.ResetOnSpawn = false
  11449. Gui.Name = "Chat"
  11450. Gui.DisplayOrder = 999
  11451.  
  11452. Gui.Parent = plrs.LocalPlayer.PlayerGui
  11453.  
  11454.  
  11455. f = {}
  11456. local espforlder
  11457.  
  11458. f.addesp = function()
  11459. --print("ESP ran")
  11460. if espforlder then
  11461. else
  11462. espforlder = Instance.new("Folder")
  11463. espforlder.Parent = game.Workspace.CurrentCamera
  11464. end
  11465. for i, v in pairs(espforlder:GetChildren()) do
  11466. v:Destroy()
  11467. end
  11468. for _, plr in pairs(plrs:GetChildren()) do
  11469. if plr.Character and plr.Character.Humanoid.Health > 0 and plr.Name ~= lplr.Name then
  11470. if TeamBased == true then
  11471. if plr.Team.Name ~= plrs.LocalPlayer.Team.Name then
  11472. local e = espforlder:FindFirstChild(plr.Name)
  11473. if not e then
  11474. --print("Added esp for team based")
  11475. local bill = Instance.new("BillboardGui", espforlder)
  11476. bill.Name = plr.Name
  11477. bill.AlwaysOnTop = true
  11478. bill.Size = UDim2.new(1,0,1,0)
  11479. bill.Adornee = plr.Character.Head
  11480. local Frame = Instance.new('Frame',bill)
  11481. Frame.Active = true
  11482. Frame.BackgroundColor3 = Color3.new(0/255,255/255,0/255)
  11483. Frame.BackgroundTransparency = 0
  11484. Frame.BorderSizePixel = 0
  11485. Frame.AnchorPoint = Vector2.new(.5, .5)
  11486. Frame.Position = UDim2.new (0.5,0,0.5,0)
  11487. Frame.Size = UDim2.new (1,0,1,0)
  11488. Frame.Rotation = 0
  11489. plr.Character.Humanoid.Died:Connect(function()
  11490. bill:Destroy()
  11491. end)
  11492. end
  11493. end
  11494. else
  11495. local e = espforlder:FindFirstChild(plr.Name)
  11496. if not e then
  11497. --print("Added esp")
  11498. local bill = Instance.new("BillboardGui", espforlder)
  11499. bill.Name = plr.Name
  11500. bill.AlwaysOnTop = true
  11501. bill.Size = UDim2.new(1,0,1,0)
  11502. bill.Adornee = plr.Character.Head
  11503. local Frame = Instance.new('Frame',bill)
  11504. Frame.Active = true
  11505. Frame.BackgroundColor3 = Color3.new(0/255,255/255,0/255)
  11506. Frame.BackgroundTransparency = 0
  11507. Frame.BorderSizePixel = 0
  11508. Frame.AnchorPoint = Vector2.new(.5, .5)
  11509. Frame.Position = UDim2.new (0.5,0,0.5,0)
  11510. Frame.Size = UDim2.new (1,0,1,0)
  11511. Frame.Rotation = 0
  11512. plr.Character.Humanoid.Died:Connect(function()
  11513. bill:Destroy()
  11514. end)
  11515. end
  11516. end
  11517.  
  11518.  
  11519. end
  11520. end
  11521. end
  11522. local cam = game.Workspace.CurrentCamera
  11523.  
  11524. local mouse = lplr:GetMouse()
  11525. local switch = false
  11526. local key = "k"
  11527. local aimatpart = nil
  11528. mouse.KeyDown:Connect(function(a)
  11529. if a == "t" then
  11530. print("worked1")
  11531. f.addesp()
  11532. elseif a == "u" then
  11533. if raycast == true then
  11534. raycast = false
  11535. else
  11536. raycast = true
  11537. end
  11538. elseif a == "l" then
  11539. if autoesp == false then
  11540. autoesp = true
  11541. else
  11542. autoesp = false
  11543. end
  11544. end
  11545. if a == "j" then
  11546. if mouse.Target then
  11547. mouse.Target:Destroy()
  11548. end
  11549. end
  11550. if a == key then
  11551. if switch == false then
  11552. switch = true
  11553. else
  11554. switch = false
  11555. if aimatpart ~= nil then
  11556. aimatpart = nil
  11557. end
  11558. end
  11559. elseif a == teambasedswitch then
  11560. if TeamBased == true then
  11561. TeamBased = false
  11562. teambasedstatus.Text = tostring(TeamBased)
  11563. else
  11564. TeamBased = true
  11565. teambasedstatus.Text = tostring(TeamBased)
  11566. end
  11567. elseif a == aimkey then
  11568. if not aimatpart then
  11569. local maxangle = math.rad(20)
  11570. for i, plr in pairs(plrs:GetChildren()) do
  11571. if plr.Name ~= lplr.Name and plr.Character and plr.Character.Head and plr.Character.Humanoid and plr.Character.Humanoid.Health > 1 then
  11572. if TeamBased == true then
  11573. if plr.Team.Name ~= lplr.Team.Name then
  11574. local an = checkfov(plr.Character.Head)
  11575. if an < maxangle then
  11576. maxangle = an
  11577. aimatpart = plr.Character.Head
  11578. end
  11579. end
  11580. else
  11581. local an = checkfov(plr.Character.Head)
  11582. if an < maxangle then
  11583. maxangle = an
  11584. aimatpart = plr.Character.Head
  11585. end
  11586. print(plr)
  11587. end
  11588. plr.Character.Humanoid.Died:Connect(function()
  11589. if aimatpart.Parent == plr.Character or aimatpart == nil then
  11590. aimatpart = nil
  11591. end
  11592. end)
  11593. end
  11594. end
  11595. else
  11596. aimatpart = nil
  11597. end
  11598. end
  11599. end)
  11600.  
  11601. function getfovxyz (p0, p1, deg)
  11602. local x1, y1, z1 = p0:ToOrientation()
  11603. local cf = CFrame.new(p0.p, p1.p)
  11604. local x2, y2, z2 = cf:ToOrientation()
  11605. --local d = math.deg
  11606. if deg then
  11607. --return Vector3.new(d(x1-x2), d(y1-y2), d(z1-z2))
  11608. else
  11609. return Vector3.new((x1-x2), (y1-y2), (z1-z2))
  11610. end
  11611. end
  11612.  
  11613. function getaimbotplrs()
  11614. plrsforaim = {}
  11615. for i, plr in pairs(plrs:GetChildren()) do
  11616. if plr.Character and plr.Character.Humanoid and plr.Character.Humanoid.Health > 0 and plr.Name ~= lplr.Name and plr.Character.Head then
  11617.  
  11618. if TeamBased == true then
  11619. if plr.Team.Name ~= lplr.Team.Name then
  11620. local cf = CFrame.new(game.Workspace.CurrentCamera.CFrame.p, plr.Character.Head.CFrame.p)
  11621. local r = Ray.new(cf, cf.LookVector * 10000)
  11622. local ign = {}
  11623. for i, v in pairs(plrs.LocalPlayer.Character:GetChildren()) do
  11624. if v:IsA("BasePart") then
  11625. table.insert(ign , v)
  11626. end
  11627. end
  11628. local obj = game.Workspace:FindPartOnRayWithIgnoreList(r, ign)
  11629. if obj.Parent == plr.Character and obj.Parent ~= lplr.Character then
  11630. table.insert(plrsforaim, obj)
  11631. end
  11632. end
  11633. else
  11634. local cf = CFrame.new(game.Workspace.CurrentCamera.CFrame.p, plr.Character.Head.CFrame.p)
  11635. local r = Ray.new(cf, cf.LookVector * 10000)
  11636. local ign = {}
  11637. for i, v in pairs(plrs.LocalPlayer.Character:GetChildren()) do
  11638. if v:IsA("BasePart") then
  11639. table.insert(ign , v)
  11640. end
  11641. end
  11642. local obj = game.Workspace:FindPartOnRayWithIgnoreList(r, ign)
  11643. if obj.Parent == plr.Character and obj.Parent ~= lplr.Character then
  11644. table.insert(plrsforaim, obj)
  11645. end
  11646. end
  11647.  
  11648.  
  11649. end
  11650. end
  11651. end
  11652.  
  11653. function aimat(part)
  11654. cam.CFrame = CFrame.new(cam.CFrame.p, part.CFrame.p)
  11655. end
  11656. function checkfov (part)
  11657. local fov = getfovxyz(game.Workspace.CurrentCamera.CFrame, part.CFrame)
  11658. local angle = math.abs(fov.X) + math.abs(fov.Y)
  11659. return angle
  11660. end
  11661.  
  11662. game:GetService("RunService").RenderStepped:Connect(function()
  11663. if aimatpart then
  11664. aimat(aimatpart)
  11665. if aimatpart.Parent == plrs.LocalPlayer.Character then
  11666. aimatpart = nil
  11667. end
  11668. end
  11669.  
  11670.  
  11671. -- if switch == true then
  11672. -- local maxangle = 99999
  11673. --
  11674. -- --print("Loop")
  11675. -- if true and raycast == false then
  11676. -- for i, plr in pairs(plrs:GetChildren()) do
  11677. -- if plr.Name ~= lplr.Name and plr.Character and plr.Character.Head and plr.Character.Humanoid and plr.Character.Humanoid.Health > 1 then
  11678. -- if TeamBased then
  11679. -- if plr.Team.Name ~= lplr.Team.Name or plr.Team.TeamColor ~= lplr.Team.TeamColor then
  11680. -- local an = checkfov(plr.Character.Head)
  11681. -- if an < maxangle then
  11682. -- maxangle = an
  11683. -- aimatpart = plr.Character.Head
  11684. -- if an < lockangle then
  11685. -- break
  11686. -- end
  11687. -- end
  11688. -- end
  11689. -- else
  11690. -- local an = checkfov(plr.Character.Head)
  11691. -- if an < maxangle then
  11692. -- maxangle = an
  11693. -- aimatpart = plr.Character.Head
  11694. -- if an < lockangle then
  11695. -- break
  11696. -- end
  11697. -- end
  11698. -- end
  11699. --
  11700. --
  11701. --
  11702. --
  11703. -- end
  11704. -- end
  11705. -- elseif raycast == true then
  11706. --
  11707. -- end
  11708.  
  11709. if raycast == true and switch == false and not aimatpart then
  11710. getaimbotplrs()
  11711. aimatpart = nil
  11712. local maxangle = 999
  11713. for i, v in ipairs(plrsforaim) do
  11714. if v.Parent ~= lplr.Character then
  11715. local an = checkfov(v)
  11716. if an < maxangle and v ~= lplr.Character.Head then
  11717. maxangle = an
  11718. aimatpart = v
  11719. print(v:GetFullName())
  11720. v.Parent.Humanoid.Died:connect(function()
  11721. aimatpart = nil
  11722. end)
  11723. end
  11724. end
  11725. end
  11726.  
  11727. end
  11728. end)
  11729. delay(0, function()
  11730. while wait(espupdatetime) do
  11731. if autoesp == true then
  11732. pcall(function()
  11733. f.addesp()
  11734. end)
  11735. end
  11736. end
  11737. end)
  11738. warn("loaded")
  11739. end)
  11740.  
  11741. closegui.Name = "close gui"
  11742. closegui.Parent = MainGUI
  11743. closegui.BackgroundColor3 = Color3.new(1, 1, 1)
  11744. closegui.Position = UDim2.new(0.892828405, 0, 0.0474808663, 0)
  11745. closegui.Size = UDim2.new(0, 28, 0, 36)
  11746. closegui.Font = Enum.Font.SourceSansBold
  11747. closegui.Text = "X"
  11748. closegui.TextColor3 = Color3.new(0, 0, 0)
  11749. closegui.TextSize = 34
  11750.  
  11751. TextLabel.Parent = MainGUI
  11752. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  11753. TextLabel.BorderSizePixel = 3
  11754. TextLabel.Position = UDim2.new(0.0389667451, 0, 0.0325634778, 0)
  11755. TextLabel.Size = UDim2.new(0, 313, 0, 50)
  11756. TextLabel.Font = Enum.Font.SciFi
  11757. TextLabel.Text = "Aimbot/Esp"
  11758. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  11759. TextLabel.TextSize = 20
  11760.  
  11761. opengui.Name = "open gui"
  11762. opengui.Parent = strucidhack
  11763. opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  11764. opengui.Position = UDim2.new(0.0198300499, 0, 0.925072074, 0)
  11765. opengui.Size = UDim2.new(0, 19, 0, 22)
  11766.  
  11767. open.Name = "open"
  11768. open.Parent = opengui
  11769. closegui.MouseButton1Click:connect(function()
  11770. MainGUI.Visible = false
  11771. opengui.Visible = true
  11772. end)
  11773. open.BackgroundColor3 = Color3.new(1, 1, 1)
  11774. open.Position = UDim2.new(-0.746906042, 0, -0.172385469, 0)
  11775. open.Size = UDim2.new(0, 65, 0, 29)
  11776. open.Font = Enum.Font.SourceSans
  11777. open.Text = "Open gui"
  11778. open.TextColor3 = Color3.new(0, 0, 0)
  11779. open.TextSize = 14
  11780. open.MouseButton1Click:connect(function()
  11781. MainGUI.Visible = true
  11782. opengui.Visible = false
  11783. end)
  11784. end)
  11785.  
  11786. respawn.Name = "respawn"
  11787. respawn.Parent = main
  11788. respawn.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  11789. respawn.Position = UDim2.new(0.33420366, 0, 0.557620823, 0)
  11790. respawn.Size = UDim2.new(0, 111, 0, 32)
  11791. respawn.Font = Enum.Font.GothamBold
  11792. respawn.Text = "Fast Respawn"
  11793. respawn.TextColor3 = Color3.new(0, 1, 1)
  11794. respawn.TextSize = 14
  11795. respawn.MouseButton1Down:connect(function()
  11796. game.Workspace.Remote.loadchar:InvokeServer(game.Players:GetChildren())
  11797. end)
  11798.  
  11799. lag.Name = "lag"
  11800. lag.Parent = main
  11801. lag.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  11802. lag.Position = UDim2.new(0.652741492, 0, 0.557620823, 0)
  11803. lag.Size = UDim2.new(0, 112, 0, 32)
  11804. lag.Font = Enum.Font.GothamBold
  11805. lag.Text = "Lag Server"
  11806. lag.TextColor3 = Color3.new(0.333333, 1, 1)
  11807. lag.TextSize = 14
  11808. lag.MouseButton1Down:connect(function()
  11809. local toolamount = 250
  11810. x = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  11811. wait()
  11812. local LocalPlayer = game:GetService("Players").LocalPlayer
  11813. local died = false
  11814. local savepos = LocalPlayer.Character.HumanoidRootPart.CFrame
  11815. repeat
  11816. for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  11817. if tool:IsA("Tool") then
  11818. tool.Parent = LocalPlayer
  11819. end
  11820. end
  11821. LocalPlayer.Character:ClearAllChildren()
  11822. local char = Instance.new("Model", workspace)
  11823. char.Name = "character"
  11824. Instance.new("Part", char).Name = "Torso";
  11825. Instance.new("Part", char).Name = "Head";
  11826. Instance.new("Humanoid", char).Name = "Humanoid";
  11827. LocalPlayer.Character = char
  11828. repeat wait() until LocalPlayer.Character
  11829. until #LocalPlayer:GetChildren() - 4 >= toolamount
  11830. for _, char in pairs(workspace:GetChildren()) do
  11831. if char.Name == "character" and char:IsA("Model") then
  11832. char:Destroy()
  11833. end
  11834. end
  11835. repeat wait() until LocalPlayer.Character.HumanoidRootPart
  11836. LocalPlayer.Character.HumanoidRootPart.CFrame = savepos
  11837. for _, tool in pairs(LocalPlayer:GetChildren()) do
  11838. if tool:IsA("Tool") then
  11839. tool.Parent = LocalPlayer.Backpack
  11840. end
  11841. end
  11842. wait(0.5)
  11843. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  11844. if v:IsA("Tool") then
  11845. v.Parent = game.Players.LocalPlayer.Character
  11846. end
  11847. end
  11848. wait(0.5)
  11849. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  11850. if (v:IsA("Tool")) then
  11851. v.Parent = workspace
  11852. end
  11853. end
  11854. wait()
  11855. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  11856. wait(0.85)
  11857. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = x
  11858. end)
  11859.  
  11860. end)
  11861.  
  11862. Jailbreak.Name = "Jailbreak"
  11863. Jailbreak.Parent = Frame
  11864. Jailbreak.BackgroundColor3 = Color3.new(1, 1, 1)
  11865. Jailbreak.Position = UDim2.new(0.655765951, 0, 3.76803946, 0)
  11866. Jailbreak.Size = UDim2.new(0, 200, 0, 50)
  11867. Jailbreak.Font = Enum.Font.SourceSans
  11868. Jailbreak.Text = "Jailbreak"
  11869. Jailbreak.TextColor3 = Color3.new(0, 0, 0)
  11870. Jailbreak.TextScaled = true
  11871. Jailbreak.TextSize = 14
  11872. Jailbreak.TextWrapped = true
  11873. Jailbreak.MouseButton1Down:connect(function()
  11874. -- Jailbreaker V1.2
  11875. local plr = game:GetService("Players").LocalPlayer
  11876.  
  11877.  
  11878. local TpMethod = 2
  11879.  
  11880.  
  11881.  
  11882. function JailbreakTp(...)
  11883. getfenv()["TpMethod" .. TpMethod](...)
  11884. end
  11885.  
  11886. function TpMethod1(...)
  11887. local char = plr.Character
  11888. local root = char.HumanoidRootPart
  11889. local args = {...}
  11890. for i=0,1,0.05 do
  11891. wait()
  11892. root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  11893. end
  11894. end
  11895.  
  11896. function TpMethod2(...)
  11897. local args = {...}
  11898. local char = plr.Character
  11899. local target = Vector3.new(unpack(args,1,3))
  11900. local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  11901. dist = math.floor(dist / 100) + 1
  11902. for i=0,dist * 4 do
  11903. wait()
  11904. char:MoveTo(Vector3.new(...))
  11905. end
  11906. if args[#args] == true then
  11907. wait()
  11908. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  11909. end
  11910. end
  11911.  
  11912. function Tween(obj, t, properties)
  11913. local TweenService = game:GetService("TweenService")
  11914. local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  11915. local tween = TweenService:Create(obj,tweenInfo,properties)
  11916. tween:Play()
  11917. return tween
  11918. end
  11919. -- Instances:
  11920. local JailBreakerV12 = Instance.new("ScreenGui")
  11921. local Main = Instance.new("Frame")
  11922. local TPS = Instance.new("Frame")
  11923. local gas = Instance.new("TextButton")
  11924. local donut = Instance.new("TextButton")
  11925. local JewOut = Instance.new("TextButton")
  11926. local JewIn = Instance.new("TextButton")
  11927. local BankVault = Instance.new("TextButton")
  11928. local BankFront = Instance.new("TextButton")
  11929. local crim1 = Instance.new("TextButton")
  11930. local crim2 = Instance.new("TextButton")
  11931. local train = Instance.new("TextButton")
  11932. local Gravity = Instance.new("TextButton")
  11933. local Walkspeed = Instance.new("TextButton")
  11934. local autoarrest = Instance.new("TextButton")
  11935. local MuseumTop = Instance.new("TextButton")
  11936. local Museum = Instance.new("TextButton")
  11937. local RemoveALL = Instance.new("TextButton")
  11938. local JB2 = Instance.new("Frame")
  11939. local CarFly = Instance.new("TextButton")
  11940. local CtrlDelete = Instance.new("TextButton")
  11941. local Noclip = Instance.new("TextButton")
  11942. local BTools = Instance.new("TextButton")
  11943. local InfiniteHealth = Instance.new("TextButton")
  11944. local InfiniteNitro = Instance.new("TextButton")
  11945. local InfiniteAmmo = Instance.new("TextButton")
  11946. local Stuff = Instance.new("Frame")
  11947. local Jailbreak2 = Instance.new("TextButton")
  11948. local Teleports = Instance.new("TextButton")
  11949. local Jailbreak3 = Instance.new("TextButton")
  11950. local Design2 = Instance.new("Frame")
  11951. local Exit = Instance.new("TextButton")
  11952. local Name = Instance.new("TextLabel")
  11953. local JB3 = Instance.new("Frame")
  11954. local PlayerTP_Input = Instance.new("TextBox")
  11955. local PlayerTP_Teleport = Instance.new("TextButton")
  11956. local BankAutoRobBtn = Instance.new("TextButton")
  11957. local BankStatus = Instance.new("TextLabel")
  11958. local JewelryStatus = Instance.new("TextLabel")
  11959. local Open = Instance.new("TextButton")
  11960. --Properties:
  11961. JailBreakerV12.Name = "JailBreaker V1.2"
  11962. JailBreakerV12.Parent = game.CoreGui
  11963.  
  11964. Main.Name = "Main"
  11965. Main.Parent = JailBreakerV12
  11966. Main.Active = true
  11967. Main.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  11968. Main.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
  11969. Main.Position = UDim2.new(0.400000006, 0, 1.70000005, 0)
  11970. Main.Size = UDim2.new(0, 406, 0, 320)
  11971. Main.Draggable = true
  11972.  
  11973. TPS.Name = "TPS"
  11974. TPS.Parent = Main
  11975. TPS.BackgroundColor3 = Color3.new(1, 1, 0)
  11976. TPS.BackgroundTransparency = 1
  11977. TPS.Position = UDim2.new(0, 0, 0.321875006, 0)
  11978. TPS.Size = UDim2.new(0, 575, 0, 211)
  11979.  
  11980. gas.Name = "gas"
  11981. gas.Parent = TPS
  11982. gas.BackgroundColor3 = Color3.new(1, 0, 0)
  11983. gas.Position = UDim2.new(0.248333335, 0, 0.215721205, 0)
  11984. gas.Size = UDim2.new(0, 120, 0, 30)
  11985. gas.Font = Enum.Font.ArialBold
  11986. gas.Text = "Gas Station"
  11987. gas.TextScaled = true
  11988. gas.TextSize = 14
  11989. gas.TextWrapped = true
  11990.  
  11991. donut.Name = "donut"
  11992. donut.Parent = TPS
  11993. donut.BackgroundColor3 = Color3.new(1, 0, 0)
  11994. donut.Position = UDim2.new(0.248333335, 0, 0.590128779, 0)
  11995. donut.Size = UDim2.new(0, 120, 0, 30)
  11996. donut.Font = Enum.Font.ArialBold
  11997. donut.Text = "Donut Shop"
  11998. donut.TextScaled = true
  11999. donut.TextSize = 14
  12000. donut.TextWrapped = true
  12001.  
  12002. JewOut.Name = "JewOut"
  12003. JewOut.Parent = TPS
  12004. JewOut.BackgroundColor3 = Color3.new(1, 0, 0)
  12005. JewOut.Position = UDim2.new(0.0116666555, 0, 0.593464613, 0)
  12006. JewOut.Size = UDim2.new(0, 120, 0, 30)
  12007. JewOut.Font = Enum.Font.ArialBold
  12008. JewOut.Text = "Jewelry Top"
  12009. JewOut.TextScaled = true
  12010. JewOut.TextSize = 14
  12011. JewOut.TextWrapped = true
  12012.  
  12013. JewIn.Name = "JewIn"
  12014. JewIn.Parent = TPS
  12015. JewIn.BackgroundColor3 = Color3.new(1, 0, 0)
  12016. JewIn.Position = UDim2.new(0.0116666853, 0, 0.399151802, 0)
  12017. JewIn.Size = UDim2.new(0, 120, 0, 30)
  12018. JewIn.Font = Enum.Font.ArialBold
  12019. JewIn.Text = "Jewelry Inside"
  12020. JewIn.TextScaled = true
  12021. JewIn.TextSize = 14
  12022. JewIn.TextWrapped = true
  12023.  
  12024. BankVault.Name = "BankVault"
  12025. BankVault.Parent = TPS
  12026. BankVault.BackgroundColor3 = Color3.new(1, 0, 0)
  12027. BankVault.Position = UDim2.new(0.0116666555, 0, 0.218009472, 0)
  12028. BankVault.Size = UDim2.new(0, 120, 0, 30)
  12029. BankVault.Font = Enum.Font.ArialBold
  12030. BankVault.Text = "BankVault"
  12031. BankVault.TextScaled = true
  12032. BankVault.TextSize = 14
  12033. BankVault.TextWrapped = true
  12034.  
  12035. BankFront.Name = "BankFront"
  12036. BankFront.Parent = TPS
  12037. BankFront.BackgroundColor3 = Color3.new(1, 0, 0)
  12038. BankFront.Position = UDim2.new(0.0116666667, 0, 0.0284360182, 0)
  12039. BankFront.Size = UDim2.new(0, 120, 0, 30)
  12040. BankFront.Font = Enum.Font.ArialBold
  12041. BankFront.Text = "BankFront"
  12042. BankFront.TextScaled = true
  12043. BankFront.TextSize = 14
  12044. BankFront.TextWrapped = true
  12045.  
  12046. crim1.Name = "crim1"
  12047. crim1.Parent = TPS
  12048. crim1.BackgroundColor3 = Color3.new(1, 0, 0)
  12049. crim1.Position = UDim2.new(0.0116666853, 0, 0.791977763, 0)
  12050. crim1.Size = UDim2.new(0, 120, 0, 30)
  12051. crim1.Font = Enum.Font.ArialBold
  12052. crim1.Text = "Criminal Base 1"
  12053. crim1.TextScaled = true
  12054. crim1.TextSize = 14
  12055. crim1.TextWrapped = true
  12056.  
  12057. crim2.Name = "crim2"
  12058. crim2.Parent = TPS
  12059. crim2.BackgroundColor3 = Color3.new(1, 0, 0)
  12060. crim2.Position = UDim2.new(0.24833335, 0, 0.0306429788, 0)
  12061. crim2.Size = UDim2.new(0, 120, 0, 30)
  12062. crim2.Font = Enum.Font.ArialBold
  12063. crim2.Text = "Criminal Base 2"
  12064. crim2.TextScaled = true
  12065. crim2.TextSize = 14
  12066. crim2.TextWrapped = true
  12067.  
  12068. train.Name = "train"
  12069. train.Parent = TPS
  12070. train.BackgroundColor3 = Color3.new(1, 0, 0)
  12071. train.Position = UDim2.new(0.24833332, 0, 0.39810428, 0)
  12072. train.Size = UDim2.new(0, 120, 0, 30)
  12073. train.Font = Enum.Font.ArialBold
  12074. train.Text = "Train Spawn"
  12075. train.TextScaled = true
  12076. train.TextSize = 14
  12077. train.TextWrapped = true
  12078.  
  12079. Gravity.Name = "Gravity"
  12080. Gravity.Parent = TPS
  12081. Gravity.BackgroundColor3 = Color3.new(1, 0, 0)
  12082. Gravity.Position = UDim2.new(0.482666641, 0, 0.591469228, 0)
  12083. Gravity.Size = UDim2.new(0, 120, 0, 30)
  12084. Gravity.Font = Enum.Font.ArialBold
  12085. Gravity.Text = "Gravity"
  12086. Gravity.TextScaled = true
  12087. Gravity.TextSize = 14
  12088. Gravity.TextWrapped = true
  12089.  
  12090. Walkspeed.Name = "Walkspeed"
  12091. Walkspeed.Parent = TPS
  12092. Walkspeed.BackgroundColor3 = Color3.new(1, 0, 0)
  12093. Walkspeed.Position = UDim2.new(0.482971013, 0, 0.399052143, 0)
  12094. Walkspeed.Size = UDim2.new(0, 120, 0, 30)
  12095. Walkspeed.Font = Enum.Font.ArialBold
  12096. Walkspeed.Text = "Walkspeed [X]"
  12097. Walkspeed.TextScaled = true
  12098. Walkspeed.TextSize = 14
  12099. Walkspeed.TextWrapped = true
  12100. Walkspeed.MouseButton1Down:connect(function()
  12101. local walkspeedplayer = game:GetService("Players").LocalPlayer
  12102. local walkspeedmouse = walkspeedplayer:GetMouse()
  12103.  
  12104. local walkspeedenabled = false
  12105.  
  12106. function x_walkspeed(key)
  12107. if (key == "x") then
  12108. if walkspeedenabled == false then
  12109. _G.WS = 200;
  12110. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  12111. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  12112. Humanoid.WalkSpeed = _G.WS;
  12113. end)
  12114. Humanoid.WalkSpeed = _G.WS;
  12115.  
  12116. walkspeedenabled = true
  12117. elseif walkspeedenabled == true then
  12118. _G.WS = 20;
  12119. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  12120. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  12121. Humanoid.WalkSpeed = _G.WS;
  12122. end)
  12123. Humanoid.WalkSpeed = _G.WS;
  12124.  
  12125. walkspeedenabled = false
  12126. end
  12127. end
  12128. end
  12129.  
  12130. walkspeedmouse.KeyDown:connect(x_walkspeed)
  12131.  
  12132. end)
  12133. autoarrest.Name = "autoarrest"
  12134. autoarrest.Parent = TPS
  12135. autoarrest.BackgroundColor3 = Color3.new(1, 0, 0)
  12136. autoarrest.Position = UDim2.new(0.48333329, 0, 0.199052066, 0)
  12137. autoarrest.Size = UDim2.new(0, 120, 0, 30)
  12138. autoarrest.Font = Enum.Font.ArialBold
  12139. autoarrest.Text = "Auto Arrest"
  12140. autoarrest.TextScaled = true
  12141. autoarrest.TextSize = 14
  12142. autoarrest.TextWrapped = true
  12143. autoarrest.MouseButton1Down:connect(function()
  12144. local Player = game.Players.LocalPlayer
  12145. wait(0.5)
  12146. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  12147. repeat
  12148. wait()
  12149. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  12150. until v.Team.Name ~= "Criminal"
  12151. end
  12152.  
  12153. end)
  12154. MuseumTop.Name = "MuseumTop"
  12155. MuseumTop.Parent = TPS
  12156. MuseumTop.BackgroundColor3 = Color3.new(1, 0, 0)
  12157. MuseumTop.Position = UDim2.new(0.482971072, 0, 0.0303317457, 0)
  12158. MuseumTop.Size = UDim2.new(0, 120, 0, 30)
  12159. MuseumTop.Font = Enum.Font.ArialBold
  12160. MuseumTop.Text = "Museum Roof"
  12161. MuseumTop.TextScaled = true
  12162. MuseumTop.TextSize = 14
  12163. MuseumTop.TextWrapped = true
  12164. MuseumTop.MouseButton1Down:connect(function()
  12165. for i = 1,45 do
  12166. wait(.08)
  12167. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1078.45, 153.904, 1176.52) + Vector3.new(1,0,0)
  12168. end
  12169. end)
  12170. Museum.Name = "Museum"
  12171. Museum.Parent = TPS
  12172. Museum.BackgroundColor3 = Color3.new(1, 0, 0)
  12173. Museum.Position = UDim2.new(0.248333335, 0, 0.789180934, 0)
  12174. Museum.Size = UDim2.new(0, 120, 0, 30)
  12175. Museum.Font = Enum.Font.ArialBold
  12176. Museum.Text = "Museum In"
  12177. Museum.TextScaled = true
  12178. Museum.TextSize = 14
  12179. Museum.TextWrapped = true
  12180. Museum.MouseButton1Down:connect(function()
  12181. for i = 1,45 do
  12182. wait(.08)
  12183. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1063.02, 117.562, 1218.757) + Vector3.new(1,0,0)
  12184. end
  12185. end)
  12186. RemoveALL.Name = "RemoveALL"
  12187. RemoveALL.Parent = TPS
  12188. RemoveALL.BackgroundColor3 = Color3.new(1, 0, 0)
  12189. RemoveALL.Position = UDim2.new(0.483333349, 0, 0.791469157, 0)
  12190. RemoveALL.Size = UDim2.new(0, 120, 0, 30)
  12191. RemoveALL.Font = Enum.Font.ArialBold
  12192. RemoveALL.Text = "Remove ALL"
  12193. RemoveALL.TextScaled = true
  12194. RemoveALL.TextSize = 14
  12195. RemoveALL.TextWrapped = true
  12196. RemoveALL.MouseButton1Down:connect(function()
  12197. game.Workspace.Cells:Remove()
  12198.  
  12199. game.Workspace.Museum.CaseLasers:Remove()
  12200.  
  12201. game.Workspace.Museum.Lights:Remove()
  12202.  
  12203. game.Workspace.Museum.Doors:Remove()
  12204.  
  12205. game.Workspace.EscapeRoutes:Remove()
  12206.  
  12207. for i,v in pairs(workspace.Doors:GetChildren()) do
  12208. v:Destroy()
  12209.  
  12210. end
  12211. end)
  12212.  
  12213. RemoveALL.MouseButton1Down:connect(function()
  12214. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  12215. banklasers[1].Lasers:Destroy()
  12216. end)
  12217.  
  12218. RemoveALL.MouseButton1Down:connect(function()
  12219. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  12220.  
  12221. for i = 1,4 do
  12222. local xd = jewelry[1].Model.BarbedWire
  12223. xd:Destroy()
  12224. end
  12225. end)
  12226.  
  12227. RemoveALL.MouseButton1Down:connect(function()
  12228. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  12229. banklasers[1].Door.Model:Destroy()
  12230. end)
  12231. JB2.Name = "JB2"
  12232. JB2.Parent = Main
  12233. JB2.Active = true
  12234. JB2.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  12235. JB2.Position = UDim2.new(0, 0, 0.303124994, 0)
  12236. JB2.Size = UDim2.new(0, 406, 0, 223)
  12237. JB2.Visible = false
  12238.  
  12239. CarFly.Name = "CarFly"
  12240. CarFly.Parent = JB2
  12241. CarFly.BackgroundColor3 = Color3.new(1, 0, 0)
  12242. CarFly.Position = UDim2.new(0.0134848487, 0, 0.351305991, 0)
  12243. CarFly.Size = UDim2.new(0, 120, 0, 30)
  12244. CarFly.Font = Enum.Font.ArialBold
  12245. CarFly.Text = "Broken"
  12246. CarFly.TextScaled = true
  12247. CarFly.TextSize = 14
  12248. CarFly.TextWrapped = true
  12249.  
  12250.  
  12251. CtrlDelete.Name = "CtrlDelete"
  12252. CtrlDelete.Parent = JB2
  12253. CtrlDelete.BackgroundColor3 = Color3.new(1, 0, 0)
  12254. CtrlDelete.Position = UDim2.new(0.684413791, 0, 0.0256950557, 0)
  12255. CtrlDelete.Size = UDim2.new(0, 120, 0, 30)
  12256. CtrlDelete.Font = Enum.Font.ArialBold
  12257. CtrlDelete.Text = "Broken"
  12258. CtrlDelete.TextScaled = true
  12259. CtrlDelete.TextSize = 14
  12260. CtrlDelete.TextWrapped = true
  12261.  
  12262. Noclip.Name = "Noclip"
  12263. Noclip.Parent = JB2
  12264. Noclip.BackgroundColor3 = Color3.new(1, 0, 0)
  12265. Noclip.Position = UDim2.new(0.011808035, 0, 0.0278536938, 0)
  12266. Noclip.Size = UDim2.new(0, 120, 0, 30)
  12267. Noclip.Font = Enum.Font.ArialBold
  12268. Noclip.Text = "Noclip[B]"
  12269. Noclip.TextScaled = true
  12270. Noclip.TextSize = 14
  12271. Noclip.TextWrapped = true
  12272.  
  12273. BTools.Name = "BTools"
  12274. BTools.Parent = JB2
  12275. BTools.BackgroundColor3 = Color3.new(1, 0, 0)
  12276. BTools.Position = UDim2.new(0.0134630539, 0, 0.189484313, 0)
  12277. BTools.Size = UDim2.new(0, 120, 0, 30)
  12278. BTools.Font = Enum.Font.ArialBold
  12279. BTools.Text = "BTools"
  12280. BTools.TextScaled = true
  12281. BTools.TextSize = 14
  12282. BTools.TextWrapped = true
  12283.  
  12284. InfiniteHealth.Name = "InfiniteHealth"
  12285. InfiniteHealth.Parent = JB2
  12286. InfiniteHealth.BackgroundColor3 = Color3.new(1, 0, 0)
  12287. InfiniteHealth.Position = UDim2.new(0.352975368, 0, 0.348161429, 0)
  12288. InfiniteHealth.Size = UDim2.new(0, 120, 0, 30)
  12289. InfiniteHealth.Font = Enum.Font.ArialBold
  12290. InfiniteHealth.Text = "Infinite Health"
  12291. InfiniteHealth.TextScaled = true
  12292. InfiniteHealth.TextSize = 14
  12293. InfiniteHealth.TextWrapped = true
  12294.  
  12295. InfiniteNitro.Name = "InfiniteNitro"
  12296. InfiniteNitro.Parent = JB2
  12297. InfiniteNitro.BackgroundColor3 = Color3.new(1, 0, 0)
  12298. InfiniteNitro.Position = UDim2.new(0.352214128, 0, 0.186933994, 0)
  12299. InfiniteNitro.Size = UDim2.new(0, 120, 0, 30)
  12300. InfiniteNitro.Font = Enum.Font.ArialBold
  12301. InfiniteNitro.Text = "Infinite Nitro"
  12302. InfiniteNitro.TextScaled = true
  12303. InfiniteNitro.TextSize = 14
  12304. InfiniteNitro.TextWrapped = true
  12305.  
  12306. InfiniteAmmo.Name = "InfiniteAmmo"
  12307. InfiniteAmmo.Parent = JB2
  12308. InfiniteAmmo.BackgroundColor3 = Color3.new(1, 0, 0)
  12309. InfiniteAmmo.Position = UDim2.new(0.351287931, 0, 0.0284955502, 0)
  12310. InfiniteAmmo.Size = UDim2.new(0, 120, 0, 30)
  12311. InfiniteAmmo.Font = Enum.Font.ArialBold
  12312. InfiniteAmmo.Text = "Infinite Ammo"
  12313. InfiniteAmmo.TextScaled = true
  12314. InfiniteAmmo.TextSize = 14
  12315. InfiniteAmmo.TextWrapped = true
  12316.  
  12317. Stuff.Name = "Stuff"
  12318. Stuff.Parent = Main
  12319. Stuff.Active = true
  12320. Stuff.BackgroundColor3 = Color3.new(1, 0, 0)
  12321. Stuff.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
  12322. Stuff.Position = UDim2.new(0, 0, 0.112499997, 0)
  12323. Stuff.Size = UDim2.new(0, 406, 0, 61)
  12324.  
  12325. Jailbreak2.Name = "Jailbreak 2"
  12326. Jailbreak2.Parent = Stuff
  12327. Jailbreak2.BackgroundColor3 = Color3.new(1, 1, 0)
  12328. Jailbreak2.Position = UDim2.new(0.35221675, 0, 0.245901644, 0)
  12329. Jailbreak2.Size = UDim2.new(0, 120, 0, 30)
  12330. Jailbreak2.Font = Enum.Font.SourceSansBold
  12331. Jailbreak2.Text = "JailBreak 2"
  12332. Jailbreak2.TextScaled = true
  12333. Jailbreak2.TextSize = 14
  12334. Jailbreak2.TextWrapped = true
  12335. Jailbreak2.MouseButton1Down:connect(function()
  12336. TPS.Visible = false
  12337. JB3.Visible = false
  12338. JB2.Visible = true
  12339. end)
  12340. Teleports.Name = "Teleports"
  12341. Teleports.Parent = Stuff
  12342. Teleports.BackgroundColor3 = Color3.new(1, 1, 0)
  12343. Teleports.Position = UDim2.new(0.0172413792, 0, 0.245901644, 0)
  12344. Teleports.Size = UDim2.new(0, 120, 0, 30)
  12345. Teleports.Font = Enum.Font.SourceSansBold
  12346. Teleports.Text = "Jailbreak"
  12347. Teleports.TextScaled = true
  12348. Teleports.TextSize = 14
  12349. Teleports.TextWrapped = true
  12350. Teleports.MouseButton1Down:connect(function()
  12351. TPS.Visible = true
  12352. JB3.Visible = false
  12353. JB2.Visible = false
  12354. end)
  12355. Jailbreak3.Name = "Jailbreak 3"
  12356. Jailbreak3.Parent = Stuff
  12357. Jailbreak3.BackgroundColor3 = Color3.new(1, 1, 0)
  12358. Jailbreak3.Position = UDim2.new(0.68472904, 0, 0.245901644, 0)
  12359. Jailbreak3.Size = UDim2.new(0, 120, 0, 30)
  12360. Jailbreak3.Font = Enum.Font.SourceSansBold
  12361. Jailbreak3.Text = "JailBreak 3"
  12362. Jailbreak3.TextScaled = true
  12363. Jailbreak3.TextSize = 14
  12364. Jailbreak3.TextWrapped = true
  12365. Jailbreak3.MouseButton1Down:connect(function()
  12366. TPS.Visible = false
  12367. JB3.Visible = true
  12368. JB2.Visible = false
  12369. end)
  12370. Design2.Name = "Design2"
  12371. Design2.Parent = Main
  12372. Design2.Active = true
  12373. Design2.BackgroundColor3 = Color3.new(0.760784, 0, 0)
  12374. Design2.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
  12375. Design2.Size = UDim2.new(0, 406, 0, 36)
  12376.  
  12377. Exit.Name = "Exit"
  12378. Exit.Parent = Design2
  12379. Exit.BackgroundColor3 = Color3.new(0.760784, 0, 0)
  12380. Exit.BackgroundTransparency = 1
  12381. Exit.BorderColor3 = Color3.new(0.364706, 0, 1)
  12382. Exit.BorderSizePixel = 0
  12383. Exit.Position = UDim2.new(0.918333352, 0, 0.166666672, 0)
  12384. Exit.Size = UDim2.new(0, 38, 0, 25)
  12385. Exit.Font = Enum.Font.SourceSans
  12386. Exit.Text = ""
  12387. Exit.TextColor3 = Color3.new(0, 0, 0)
  12388. Exit.TextScaled = true
  12389. Exit.TextSize = 14
  12390. Exit.TextWrapped = true
  12391.  
  12392. Name.Name = "Name"
  12393. Name.Parent = Design2
  12394. Name.BackgroundColor3 = Color3.new(0.760784, 0, 0)
  12395. Name.Position = UDim2.new(0.0116666667, 0, 0.166666672, 0)
  12396. Name.Size = UDim2.new(0, 233, 0, 25)
  12397. Name.Font = Enum.Font.Cartoon
  12398. Name.Text = "JailBreaker V1.2"
  12399. Name.TextColor3 = Color3.new(0, 0, 0)
  12400. Name.TextScaled = true
  12401. Name.TextSize = 14
  12402. Name.TextWrapped = true
  12403.  
  12404. JB3.Name = "JB3"
  12405. JB3.Parent = Main
  12406. JB3.Active = true
  12407. JB3.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  12408. JB3.Position = UDim2.new(0, 0, 0.303124994, 0)
  12409. JB3.Size = UDim2.new(0, 406, 0, 223)
  12410. JB3.Visible = false
  12411.  
  12412. PlayerTP_Input.Name = "PlayerTP_Input"
  12413. PlayerTP_Input.Parent = JB3
  12414. PlayerTP_Input.BackgroundColor3 = Color3.new(1, 0, 0)
  12415. PlayerTP_Input.Position = UDim2.new(0.0172413792, 0, 0.188340813, 0)
  12416. PlayerTP_Input.Size = UDim2.new(0, 391, 0, 50)
  12417. PlayerTP_Input.Font = Enum.Font.ArialBold
  12418. PlayerTP_Input.Text = "Player Name"
  12419. PlayerTP_Input.TextSize = 20
  12420. PlayerTP_Input.TextWrapped = true
  12421.  
  12422. PlayerTP_Teleport.Name = "PlayerTP_Teleport"
  12423. PlayerTP_Teleport.Parent = JB3
  12424. PlayerTP_Teleport.BackgroundColor3 = Color3.new(0.4, 0.0980392, 1)
  12425. PlayerTP_Teleport.Position = UDim2.new(0.0172413792, 0, 0.4573991, 0)
  12426. PlayerTP_Teleport.Size = UDim2.new(0, 391, 0, 50)
  12427. PlayerTP_Teleport.Font = Enum.Font.SourceSansBold
  12428. PlayerTP_Teleport.Text = "Teleport To Player"
  12429. PlayerTP_Teleport.TextScaled = true
  12430. PlayerTP_Teleport.TextSize = 14
  12431. PlayerTP_Teleport.TextWrapped = true
  12432.  
  12433. BankAutoRobBtn.Name = "BankAutoRobBtn"
  12434. BankAutoRobBtn.Parent = JB3
  12435. BankAutoRobBtn.BackgroundColor3 = Color3.new(1, 0, 0)
  12436. BankAutoRobBtn.Position = UDim2.new(0.0172413792, 0, 0.0269058291, 0)
  12437. BankAutoRobBtn.Size = UDim2.new(0, 391, 0, 30)
  12438. BankAutoRobBtn.Font = Enum.Font.ArialBold
  12439. BankAutoRobBtn.Text = "Bank Auto Rob"
  12440. BankAutoRobBtn.TextScaled = true
  12441. BankAutoRobBtn.TextSize = 14
  12442. BankAutoRobBtn.TextWrapped = true
  12443. BankAutoRobBtn.MouseButton1Click:connect(function()
  12444. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  12445. local Info = Bank.Extra.Sign
  12446. if Info.Decal.Transparency == 0 then
  12447. game:GetService("StarterGui"):SetCore("SendNotification",{
  12448. Title = "Bank is closed!",
  12449. Text = "You need to wait for the bank to open!",
  12450. Duration = 7,
  12451. Button1 = "Dismiss",
  12452. })
  12453. return
  12454. end
  12455. local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
  12456. local root = plr.Character.HumanoidRootPart
  12457. local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
  12458.  
  12459. if (bankpos - plrpos).magnitude > 150 then
  12460. local cb = Instance.new"BindableFunction"
  12461.  
  12462. cb.OnInvoke = function(arg)
  12463. if arg == "Teleport" then
  12464. JailbreakTp(10, 18, 784)
  12465. end
  12466. end
  12467.  
  12468. game:GetService("StarterGui"):SetCore("SendNotification",{
  12469. Title = "You are too far!",
  12470. Text = "You need to get closer to the bank (use tp)",
  12471. Duration = 7,
  12472. Button1 = "Dismiss",
  12473. Button2 = "Teleport",
  12474. Callback = cb
  12475. })
  12476. else
  12477. RobTheBank()
  12478. end
  12479. end)
  12480. BankStatus.Name = "BankStatus"
  12481. BankStatus.Parent = JB3
  12482. BankStatus.BackgroundColor3 = Color3.new(0, 0.384314, 1)
  12483. BankStatus.Position = UDim2.new(0.731034517, 0, 0.86007303, 0)
  12484. BankStatus.Size = UDim2.new(0, 101, 0, 26)
  12485. BankStatus.Font = Enum.Font.SourceSans
  12486. BankStatus.Text = "Bank:"
  12487. BankStatus.TextColor3 = Color3.new(0, 0, 0)
  12488. BankStatus.TextSize = 14
  12489.  
  12490. JewelryStatus.Name = "JewelryStatus"
  12491. JewelryStatus.Parent = JB3
  12492. JewelryStatus.BackgroundColor3 = Color3.new(0, 0.384314, 1)
  12493. JewelryStatus.Position = UDim2.new(0.0174630284, 0, 0.86007303, 0)
  12494. JewelryStatus.Size = UDim2.new(0, 101, 0, 26)
  12495. JewelryStatus.Font = Enum.Font.SourceSans
  12496. JewelryStatus.Text = "Jewelry:"
  12497. JewelryStatus.TextColor3 = Color3.new(0, 0, 0)
  12498. JewelryStatus.TextSize = 14
  12499.  
  12500. Open.Name = "Open"
  12501. Open.Parent = JailBreakerV12
  12502. Open.BackgroundColor3 = Color3.new(1, 0, 0)
  12503. Open.Position = UDim2.new(0, 0, 0.75, 0)
  12504. Open.Size = UDim2.new(0, 100, 0, 40)
  12505. Open.Font = Enum.Font.Bodoni
  12506. Open.Text = "Open/Close"
  12507. Open.TextWrapped = true
  12508. Open.TextScaled = true
  12509. local toogle = false
  12510. Open.MouseButton1Down:connect(function()
  12511. if toogle == false then
  12512. Main:TweenPosition(UDim2.new(0.4,0,0.25,0), 'Out', 'Bounce', 1)
  12513. toogle = true
  12514. else
  12515. Main:TweenPosition(UDim2.new(0.4,0,1.7,0), 'Out', 'Bounce', 1)
  12516. toogle = false
  12517. end
  12518. end)
  12519.  
  12520.  
  12521. -- Scripts:
  12522. gas.MouseButton1Down:connect(function()
  12523. for i = 1,45 do
  12524. wait(.08)
  12525. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262)
  12526. end
  12527. end)
  12528.  
  12529. donut.MouseButton1Down:connect(function()
  12530. for i = 1,45 do
  12531. wait(.08)
  12532. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206)
  12533. end
  12534. end)
  12535.  
  12536. JewOut.MouseButton1Down:connect(function()
  12537. for i = 1,45 do
  12538. wait(.08)
  12539. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175)
  12540. end
  12541. end)
  12542.  
  12543. JewIn.MouseButton1Down:connect(function()
  12544. for i = 1,45 do
  12545. wait(.08)
  12546. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407)
  12547. end
  12548. end)
  12549.  
  12550. BankVault.MouseButton1Down:connect(function()
  12551. for i = 1,45 do
  12552. wait(.08)
  12553. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348)
  12554. end
  12555. end)
  12556.  
  12557. BankFront.MouseButton1Down:connect(function()
  12558. for i = 1,45 do
  12559. wait(.08)
  12560. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147)
  12561. end
  12562. end)
  12563.  
  12564. crim1.MouseButton1Down:connect(function()
  12565. for i = 1,45 do
  12566. wait(.08)
  12567. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261)
  12568. end
  12569. end)
  12570.  
  12571. crim2.MouseButton1Down:connect(function()
  12572. for i = 1,45 do
  12573. wait(.08)
  12574. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626)
  12575. end
  12576. end)
  12577.  
  12578. train.MouseButton1Down:connect(function()
  12579. for i = 1,45 do
  12580. wait(.08)
  12581. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116)
  12582. end
  12583. end)
  12584.  
  12585.  
  12586.  
  12587. --- other stuff
  12588.  
  12589. BTools.MouseButton1Down:connect(function()
  12590. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  12591. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  12592. if child.ClassName == "Part" then
  12593. child.Locked = false
  12594. end
  12595. if child.ClassName == "MeshPart" then
  12596. child.Locked = false
  12597. end
  12598. if child.ClassName == "UnionOperation" then
  12599. child.Locked = false
  12600. end
  12601. if child.ClassName == "Model" then
  12602. for index, chil in pairs(child:GetChildren()) do
  12603. if chil.ClassName == "Part" then
  12604. chil.Locked = false
  12605. end
  12606. if chil.ClassName == "MeshPart" then
  12607. chil.Locked = false
  12608. end
  12609. if chil.ClassName == "UnionOperation" then
  12610. chil.Locked = false
  12611. end
  12612. if chil.ClassName == "Model" then
  12613. for index, childe in pairs(chil:GetChildren()) do
  12614. if childe.ClassName == "Part" then
  12615. childe.Locked = false
  12616. end
  12617. if childe.ClassName == "MeshPart" then
  12618. childe.Locked = false
  12619. end
  12620. if childe.ClassName == "UnionOperation" then
  12621. childe.Locked = false
  12622. end
  12623. if childe.ClassName == "Model" then
  12624. for index, childeo in pairs(childe:GetChildren()) do
  12625. if childeo.ClassName == "Part" then
  12626. childeo.Locked = false
  12627. end
  12628. if childeo.ClassName == "MeshPart" then
  12629. childeo.Locked = false
  12630. end
  12631. if childeo.ClassName == "UnionOperation" then
  12632. childeo.Locked = false
  12633. end
  12634. if childeo.ClassName == "Model" then
  12635. end
  12636. end
  12637. end
  12638. end
  12639. end
  12640. end
  12641. end
  12642. end
  12643. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  12644. c.BinType = Enum.BinType.Hammer
  12645. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  12646. c.BinType = Enum.BinType.Clone
  12647. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  12648. c.BinType = Enum.BinType.Grab
  12649. end)
  12650.  
  12651. Gravity.MouseButton1Down:connect(function()
  12652. if Gravity == true then
  12653. Gravity = false
  12654. game.workspace.Gravity = 196.2
  12655. else
  12656. Gravity = true
  12657. game.workspace.Gravity = 45
  12658. end
  12659. end)
  12660.  
  12661. InfiniteAmmo.MouseButton1Down:connect(function()
  12662. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Ammo.Current:Destroy()
  12663. end)
  12664.  
  12665. InfiniteHealth.MouseButton1Down:connect(function()
  12666. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  12667. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  12668. l.Parent = game:GetService("Players").LocalPlayer.Character
  12669. l.Name = "Humanoid"
  12670. wait(0.1)
  12671. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  12672. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  12673. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  12674. wait(0.1)
  12675. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  12676. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  12677. end)
  12678.  
  12679. InfiniteNitro.MouseButton1Down:connect(function()
  12680. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  12681. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  12682. end)
  12683.  
  12684. Noclip.MouseButton1Down:connect(function()
  12685. local noclipplayer = game:GetService("Players").LocalPlayer
  12686. local noclipmouse = noclipplayer:GetMouse()
  12687.  
  12688. local donoclip = false
  12689. local noclip = false
  12690.  
  12691. function b_noclip(key)
  12692. if (key == "b") then
  12693. if noclip == false then
  12694. donoclip = true
  12695.  
  12696. noclip = true
  12697. elseif noclip == true then
  12698. donoclip = false
  12699.  
  12700. noclip = false
  12701. end
  12702. end
  12703. end
  12704.  
  12705. noclipmouse.KeyDown:connect(b_noclip)
  12706.  
  12707. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  12708. if obj ~= workspace.Terrain then
  12709. if donoclip == true then
  12710. obj.CanCollide = false
  12711. else
  12712. obj.CanCollide = true
  12713. end
  12714. end
  12715. end)
  12716. end)
  12717.  
  12718.  
  12719.  
  12720. -- player tp
  12721. PlayerTP_Teleport.MouseButton1Down:connect(function()
  12722. local tp_namedplayer = PlayerTP_Input.Text
  12723. local tp_player = game:GetService("Players")[tp_namedplayer]
  12724. local PLR = game:GetService("Players").LocalPlayer
  12725. local p = PlayerTP_Input.Text
  12726.  
  12727. if tp_player then
  12728. for i = 1,45 do
  12729. wait(.08)
  12730. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  12731. end
  12732. end
  12733. end)
  12734.  
  12735.  
  12736. --AutoRob stuff--
  12737. local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
  12738. local BankAutoRob = {
  12739. {
  12740. Pos = {51, 18.06, 856.5},
  12741. Yield = 2,
  12742. Status = "Starting the robbery"
  12743. },
  12744. {
  12745. Pos = {29.71, 0.73, 815.25},
  12746. Yield = 15,
  12747. Status = "Opening the vault"
  12748. },
  12749. {
  12750. Pos = {18.37, 0.7659, 822.25},
  12751. Yield = DuffelBag and 50 or 40,
  12752. Status = "Collecting $$$"
  12753. },
  12754. {
  12755. Pos = {10, 18, 784},
  12756. Status = "Finishing the robbery"
  12757. }
  12758. }
  12759.  
  12760. local function Tp(...)
  12761. local char = plr.Character
  12762. for i=1,2 do
  12763. wait()
  12764. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
  12765. end
  12766. end
  12767.  
  12768. function RobTheBank()
  12769. for _,v in pairs(BankAutoRob) do
  12770. Tp(unpack(v.Pos))
  12771. wait(v.Yield)
  12772. end
  12773. end
  12774.  
  12775. --Bank notification--
  12776. pcall(function()
  12777. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  12778. local Info = Bank.Extra.Sign.Decal
  12779. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  12780. if Info.Transparency ~= 0 then
  12781. BankStatus.Text = "Bank:Open"
  12782. BankStatus.TextColor3 = Color3.new(0,1,0)
  12783. BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
  12784. local cb = Instance.new("BindableFunction")
  12785. cb.OnInvoke = function(arg)
  12786. if arg == "Teleport" then
  12787. JailbreakTp(10, 18, 784)
  12788. elseif arg == "AutoRob" then
  12789. RobTheBank()
  12790. end
  12791. end
  12792. game:GetService("StarterGui"):SetCore("SendNotification",{
  12793. Title = "Bank is ready!",
  12794. Text = "Bank is ready!",
  12795. Duration = 15,
  12796. Button1 = "Dismiss",
  12797. Button2 = (Vector3.new(Info.Parent.Position.X,0,Info.Parent.Position.Z) - Vector3.new(plr.Character.HumanoidRootPart.Position.X,0,plr.Character.HumanoidRootPart.Position.Z)).magnitude < 150 and "AutoRob" or "Teleport",
  12798. Callback = cb
  12799. })
  12800. else
  12801. BankStatus.Text = "Bank:Closed"
  12802. BankStatus.TextColor3 = Color3.new(1,0,0)
  12803. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  12804. end
  12805. end)
  12806. BankStatus.Text = Info.Transparency == 0 and "Bank:Closed" or "Bank:Open"
  12807. BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  12808. BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  12809. end)
  12810. --Jewelry notification--
  12811. pcall(function()
  12812. local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  12813. local Info = Jewelry.Extra.Sign.Decal
  12814. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  12815. if Info.Transparency ~= 0 then
  12816. JewelryStatus.Text = "Jewelry:Open"
  12817. JewelryStatus.TextColor3 = Color3.new(0,1,0)
  12818. BankStatus.TextColor3 = Color3.new(0,1,0)
  12819. local cb = Instance.new("BindableFunction")
  12820. cb.OnInvoke = function(arg)
  12821. if arg == "Teleport" then
  12822. JailbreakTp(142, 18, 1365)
  12823. end
  12824. end
  12825. game:GetService("StarterGui"):SetCore("SendNotification",{
  12826. Title = "Jewelry is ready!",
  12827. Text = "Jewelry is ready!",
  12828. Duration = 15,
  12829. Button1 = "Dismiss",
  12830. Button2 = "Teleport",
  12831. Callback = cb
  12832. })
  12833. else
  12834. JewelryStatus.Text = "Jewelry:Closed"
  12835. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  12836. end
  12837. end)
  12838. JewelryStatus.Text = Info.Transparency == 0 and "Jewelry:Closed" or "Jewelry:Open"
  12839. JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  12840. end)
  12841. end)
  12842.  
  12843. Jailbreak2.Name = "Jailbreak2"
  12844. Jailbreak2.Parent = Frame
  12845. Jailbreak2.BackgroundColor3 = Color3.new(1, 1, 1)
  12846. Jailbreak2.Position = UDim2.new(1.16415322e-10, 0, 5.87330294, 0)
  12847. Jailbreak2.Size = UDim2.new(0, 200, 0, 50)
  12848. Jailbreak2.Font = Enum.Font.SourceSans
  12849. Jailbreak2.Text = "Jailbreak2"
  12850. Jailbreak2.TextColor3 = Color3.new(0, 0, 0)
  12851. Jailbreak2.TextScaled = true
  12852. Jailbreak2.TextSize = 14
  12853. Jailbreak2.TextWrapped = true
  12854. Jailbreak2.MouseButton1Down:connect(function()
  12855. loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)()
  12856. end)
  12857.  
  12858. AimLock.Name = "AimLock"
  12859. AimLock.Parent = Frame
  12860. AimLock.BackgroundColor3 = Color3.new(1, 1, 1)
  12861. AimLock.Position = UDim2.new(0.366609275, 0, 5.87330294, 0)
  12862. AimLock.Size = UDim2.new(0, 154, 0, 50)
  12863. AimLock.Font = Enum.Font.SourceSans
  12864. AimLock.Text = "Aim Lock"
  12865. AimLock.TextColor3 = Color3.new(0, 0, 0)
  12866. AimLock.TextScaled = true
  12867. AimLock.TextSize = 14
  12868. AimLock.TextWrapped = true
  12869. AimLock.MouseButton1Down:connect(function()
  12870. --[[
  12871. AimHot, made by Herrtt#3868
  12872. Press H to start the aimbot.
  12873. Press right ALT to enable ESP.
  12874. type /e -help if you need info about the aimbot/esp.
  12875. --]]
  12876.  
  12877. _G.FRIEND_LIST = {"ROBLOX","builderman"} --Add players you want to ignore
  12878.  
  12879. _G.IGNORE_TEAM = true
  12880. _G.START_AIMBOT = Enum.KeyCode.H
  12881. _G.MAX_DIST = 5000
  12882. _G.TARGET_PART = "Head"
  12883. _G.AUTO_TRIGGER = false --When true MouseButton1 will be pressed when locked onto someone.
  12884.  
  12885. _G.START_ESP = Enum.KeyCode.RightAlt
  12886. _G.PREFIX = "/e " --If you want a space between the command and pref, you need to type a space! Ex: /ehelp . /e help
  12887.  
  12888.  
  12889.  
  12890. local startTime = tick()
  12891. local AIMBOT = false
  12892. local EspEnabled = false
  12893.  
  12894. local Players = game:GetService("Players")
  12895. local StarterGui = game:GetService("StarterGui")
  12896. local CoreGui = game:GetService("CoreGui")
  12897. local UIS = game:GetService("UserInputService")
  12898. local RunService = game:GetService("RunService")
  12899.  
  12900. local plr = Players.LocalPlayer
  12901. local camera = workspace.CurrentCamera
  12902. local mouse = plr:GetMouse()
  12903. local newray = Ray.new
  12904.  
  12905. local function RandomCharacters(length)
  12906. local STR = ''
  12907.  
  12908. for i = 1, length do
  12909. STR = STR .. string.char(math.random(65,90))
  12910. end
  12911.  
  12912. return STR
  12913. end
  12914. local faces = {
  12915. "Back",
  12916. "Bottom",
  12917. "Front",
  12918. "Left",
  12919. "Right",
  12920. "Top"
  12921. }
  12922. local EspObjects = Instance.new("Folder")
  12923. EspObjects.Parent = CoreGui
  12924. EspObjects.Name = RandomCharacters(8)
  12925.  
  12926. local function SendMessage(txt,title,dur,size,color)
  12927. print(txt)
  12928. StarterGui:SetCore("ChatMakeSystemMessage",{
  12929. Text = txt,
  12930. Color = color,
  12931. FontSize = size
  12932. })
  12933. StarterGui:SetCore("SendNotification",{
  12934. Title = title,
  12935. Text = txt,
  12936. Duration = dur
  12937. })
  12938. end
  12939. local function ChangeColor(player, color)
  12940. if EspObjects:FindFirstChild(player) then
  12941. for i,v in pairs(EspObjects:FindFirstChild(player):GetChildren()) do
  12942. if v:IsA("SurfaceGui") then
  12943. for _,x in pairs(v:GetChildren()) do
  12944. if x:IsA("Frame") then
  12945. x.BackgroundColor3 = color
  12946. end
  12947. end
  12948. elseif v:IsA("BillboardGui") then
  12949. for _,x in pairs(v:GetChildren()) do
  12950. if x:IsA("TextLabel") then
  12951. x.TextColor = color
  12952. end
  12953. end
  12954. end
  12955. end
  12956. end
  12957. end
  12958. local function GetClosestPlayer(returnPlr,ignoreList)
  12959. ignoreList = _G.FRIEND_LIST
  12960. returnPlr = returnPlr or false
  12961.  
  12962. local ignoreTeam = _G.IGNORE_TEAM
  12963. local maxdist = _G.MAX_DIST
  12964. local targetpart = _G.TARGET_PART
  12965.  
  12966. if ignoreTeam == true then
  12967. if #game:GetService("Teams"):GetChildren() <= 1 then
  12968. ignoreTeam = false
  12969. end
  12970. if plr.Neutral == true then
  12971. ignoreTeam = false
  12972. end
  12973. end
  12974.  
  12975. local temp1 = (maxdist)
  12976. local FoundPlr
  12977. local FoundPart
  12978.  
  12979. local Table = game.Players:GetPlayers()
  12980. for _,v in pairs(Table) do
  12981. local skip = false
  12982. for _,i in pairs(ignoreList) do
  12983. if i:lower() == v.Name:lower() then
  12984. skip = true
  12985. end
  12986. end
  12987. if ignoreTeam == true then
  12988. if v.Team == plr.Team then
  12989. skip = true
  12990. end
  12991. end
  12992. if v.Character == nil or v.Character:FindFirstChild(targetpart) == nil then
  12993. skip = true
  12994. end
  12995.  
  12996. if skip == false then
  12997. if (temp1 ~= nil and v.Character:FindFirstChild(targetpart) and plr.Character ~= nil and plr.Character:FindFirstChild(targetpart)) then
  12998. if temp1 > (plr.Character.Head.Position - v.Character:FindFirstChild(targetpart).Position).magnitude then
  12999. local vChar = v.Character
  13000. if vChar:FindFirstChild("Humanoid") then
  13001. local vHuman = vChar:FindFirstChild("Humanoid")
  13002. if vHuman.Health > 0 then
  13003. local dist = (plr.Character.Head.Position - vChar:FindFirstChild(targetpart).Position).magnitude
  13004. if dist <= maxdist then
  13005. local ray = newray(plr.Character.Head.CFrame.p, (vChar:FindFirstChild(targetpart).CFrame.p - plr.Character.Head.CFrame.p).unit * _G.MAX_DIST)
  13006. local hitPart,position = workspace:FindPartOnRay(ray,plr.Character)
  13007.  
  13008. if hitPart then
  13009. if hitPart:IsDescendantOf(vChar) then
  13010. temp1 = dist
  13011. FoundPlr = v
  13012. FoundPart = vChar:FindFirstChild(targetpart)
  13013. end
  13014. end
  13015. end
  13016. end
  13017. end
  13018. end
  13019. end
  13020. end
  13021. end
  13022. if returnPlr == false then
  13023. return FoundPart
  13024. elseif returnPlr == true then
  13025. return FoundPlr
  13026. end
  13027. end
  13028. local function CreateEspBox(pObj, color)
  13029. if (pObj:IsA("Part") and pObj.Parent:IsA("Model") and pObj.Parent ~= workspace) then
  13030. for i,v in pairs(EspObjects:GetChildren()) do
  13031. if v.Name == pObj.Parent.Name then
  13032. return nil
  13033. end
  13034. end
  13035. local newFlder = Instance.new("Folder")
  13036. newFlder.Parent = EspObjects
  13037. newFlder.Name = pObj.Parent.Name
  13038.  
  13039. for i,v in pairs(faces) do
  13040. local surfGui = Instance.new("SurfaceGui")
  13041. surfGui.AlwaysOnTop = true
  13042. surfGui.Adornee = pObj
  13043. surfGui.Face = v
  13044.  
  13045. local frme = Instance.new("Frame")
  13046. frme.Size = UDim2.new(1,0,1,0)
  13047. frme.BackgroundColor3 = color
  13048. frme.BackgroundTransparency = .5
  13049. frme.BorderSizePixel = 0
  13050. frme.Parent = surfGui
  13051.  
  13052. surfGui.Parent = newFlder
  13053. end
  13054. local bbGui = Instance.new("BillboardGui")
  13055. bbGui.Adornee = pObj
  13056. bbGui.Size = UDim2.new(5.5,0,1.75,0)
  13057. bbGui.ExtentsOffset = Vector3.new(0,2.5,0)
  13058. bbGui.AlwaysOnTop = true
  13059. local txtLab = Instance.new("TextLabel")
  13060. txtLab.Text = pObj.Parent.Name
  13061. txtLab.TextColor3 = color
  13062. txtLab.TextScaled = false
  13063. txtLab.TextSize = 17
  13064. txtLab.Size = UDim2.new(1,0,1,0)
  13065. txtLab.BackgroundTransparency = 1
  13066. txtLab.BorderSizePixel = 0
  13067. txtLab.Parent = bbGui
  13068. bbGui.Parent = newFlder
  13069.  
  13070. local objPar = Instance.new("ObjectValue")
  13071. objPar.Value = pObj
  13072. objPar.Parent = newFlder
  13073. objPar.Name = "pObj"
  13074.  
  13075. return newFlder
  13076. end
  13077. return nil
  13078. end
  13079. local function ClearEsp()
  13080. EspObjects:ClearAllChildren()
  13081. end
  13082. local function ConnectEsp(player)
  13083. local func1
  13084. local func2
  13085. if player.Character ~= nil and player.Character:FindFirstChild("Head") then
  13086. if plr.Team == nil or player.Team == nil or plr.Neutral == true or player.Neutral == true then
  13087. local fldr = CreateEspBox(player.Character:FindFirstChild("Head"), Color3.fromRGB(255,0,0))
  13088. if fldr ~= nil then
  13089. local func3
  13090. func3 = fldr.pObj.Changed:Connect(function()
  13091. if fldr.pObj.Value == nil then
  13092. if EspObjects:FindFirstChild(player.Name) then
  13093. EspObjects:FindFirstChild(player.Name):Destroy()
  13094. end
  13095. func3:Disconnect()
  13096. end
  13097. end)
  13098. end
  13099. elseif plr.Team == player.Team then
  13100. CreateEspBox(player.Character:FindFirstChild("Head"), Color3.fromRGB(0,255,0))
  13101. elseif plr.Team ~= player.Team then
  13102. CreateEspBox(player.Character:FindFirstChild("Head"), Color3.fromRGB(255,0,0))
  13103. end
  13104. end
  13105. func1 = player.CharacterAdded:Connect(function(char)
  13106. wait(1)
  13107. if player.Character ~= nil then
  13108. func2 = player.Character:WaitForChild("Humanoid").Died:Connect(function()
  13109. if EspObjects:FindFirstChild(player.Name) then
  13110. EspObjects:FindFirstChild(player.Name):Destroy()
  13111. end
  13112. end)
  13113. end
  13114. if EspEnabled == true then
  13115. if plr.Team == nil or player.Team == nil or plr.Neutral == true or player.Neutral == true then
  13116. CreateEspBox(char:FindFirstChild("Head"), Color3.fromRGB(255,0,0))
  13117. elseif plr.Team == player.Team then
  13118. CreateEspBox(char:FindFirstChild("Head"), Color3.fromRGB(0,255,0))
  13119. elseif plr.Team ~= player.Team then
  13120. CreateEspBox(char:FindFirstChild("Head"), Color3.fromRGB(255,0,0))
  13121. end
  13122. else
  13123. if EspObjects:FindFirstChild(player.Name) then
  13124. EspObjects:FindFirstChild(player.Name):Destroy()
  13125. end
  13126. func2:Disconnect()
  13127. func1:Disconnect()
  13128. end
  13129. end)
  13130. if player.Character ~= nil then
  13131. func2 = player.Character:WaitForChild("Humanoid").Died:Connect(function()
  13132. if EspObjects:FindFirstChild(player.Name) then
  13133. EspObjects:FindFirstChild(player.Name):Destroy()
  13134. end
  13135. end)
  13136. end
  13137. return
  13138. end
  13139. local function EnableEsp()
  13140. if EspEnabled == true then
  13141. for i,v in pairs(Players:GetPlayers()) do
  13142. if v ~= plr then
  13143. ConnectEsp(v)
  13144. end
  13145. end
  13146. end
  13147. end
  13148. Players.PlayerAdded:Connect(function(player)
  13149. if EspEnabled == true then
  13150. ConnectEsp(player)
  13151. end
  13152. end)
  13153. Players.PlayerRemoving:Connect(function(player)
  13154. if EspObjects:FindFirstChild(player.Name) then
  13155. EspObjects:FindFirstChild(player.Name):Destroy()
  13156. end
  13157. end)
  13158. UIS.InputBegan:Connect(function(KEY, gpe)
  13159. if gpe then return end;
  13160. if KEY.KeyCode == _G.START_AIMBOT then
  13161. if AIMBOT == false then
  13162. AIMBOT = true
  13163. SendMessage("Aimbot enabled.",
  13164. "AimHot has been enabled.",
  13165. 3,
  13166. Enum.FontSize.Size28,
  13167. Color3.fromRGB(200,50,50)
  13168. )
  13169. elseif AIMBOT == true then
  13170. AIMBOT = false
  13171. SendMessage("Aimbot disabled.",
  13172. "AimHot has been disabled.",
  13173. 3,
  13174. Enum.FontSize.Size28,
  13175. Color3.fromRGB(200,50,50)
  13176. )
  13177. end
  13178. end
  13179. if KEY.KeyCode == _G.START_ESP then
  13180. if EspEnabled == false then
  13181. SendMessage("ESP has been enabled.",
  13182. "ESP enabled;",
  13183. 3,
  13184. Enum.FontSize.Size28,
  13185. Color3.fromRGB(200,50,50)
  13186. )
  13187. EspEnabled = true
  13188. EnableEsp()
  13189. while EspEnabled == true do
  13190. ClearEsp()
  13191. EnableEsp()
  13192. wait(1)
  13193. end
  13194. elseif EspEnabled == true then
  13195. SendMessage("ESP has been disabled.",
  13196. "ESP disabled;",
  13197. 3,
  13198. Enum.FontSize.Size28,
  13199. Color3.fromRGB(200,50,50)
  13200. )
  13201. EspEnabled = false
  13202. ClearEsp()
  13203. end
  13204. end
  13205. end)
  13206.  
  13207. RunService.RenderStepped:Connect(function()
  13208. if (AIMBOT == true and plr.Character ~= nil and plr.Character:FindFirstChild("Humanoid") and plr.Character.Humanoid.Health > 0) then
  13209. local closestPart = GetClosestPlayer(false,{})
  13210. if closestPart ~= nil then
  13211. camera.CoordinateFrame = CFrame.new(camera.CoordinateFrame.p, closestPart.CFrame.p)
  13212. if _G.AUTO_TRIGGER == true then
  13213. mouse1click()
  13214. end
  13215. end
  13216. end
  13217. end)
  13218. _G.AIMHOT_SECRETKEY = "dF10qLMn" --Not kind of secret but..
  13219.  
  13220. local helptxt = (
  13221. "AimHot loaded. Time taken: ".. tick()-startTime .."\n"..
  13222. "AimHot made by Herrtt#3868." .."\n"..
  13223. " Command prefix are: "..(_G.PREFIX) .."\n"..
  13224. " Commands are;" .."\n"..
  13225. " <prefix>maxdist <number> (counted in studs)" .."\n"..
  13226. " <prefix>ignoreteam <bool> (true/false)" .."\n"..
  13227. " <prefix>targetpart <string> (Head, Torso etc.)" .."\n"..
  13228. " <prefix>addfriend <plrname> (ROBLOX, etc.)" .."\n"..
  13229. " <prefix>removefriend <plrname> (ROBLOX, etc.)" .."\n"..
  13230. " <prefix>changepref <newprefix>" .."\n"..
  13231. " <prefix>friends" .."\n"..
  13232. " <prefix>help" .."\n"..
  13233. " /e reset (will set all settings to regular.)" .."\n"..
  13234. " Have fun!"
  13235. )
  13236.  
  13237. plr.Chatted:Connect(function(msg)
  13238. local pref = _G.PREFIX
  13239. if type(pref) ~= "string" then
  13240. print("Prefix must be a string!")
  13241. end
  13242.  
  13243. if string.sub(msg,1,8+pref:len()) == pref.."maxdist " then
  13244. local maxdist = tonumber(string.sub(msg,9,msg:len()))
  13245. if type(maxdist) == "number" then
  13246. _G.MAX_DIST = maxdist
  13247. SendMessage("Changed maxdist to; "..(tostring(maxdist)),
  13248. "Setting Changed;",
  13249. 3,
  13250. Enum.FontSize.Size28,
  13251. Color3.fromRGB(200,50,50)
  13252. )
  13253. end
  13254. end
  13255. if string.sub(msg,1,11+pref:len()) == pref.."ignoreteam " then
  13256. local setting = string.sub(msg,12,msg:len()):lower()
  13257. print(setting)
  13258. if setting == "true" or "false" then
  13259. _G.IGNORE_TEAM = setting
  13260.  
  13261. SendMessage("Changed ignoreteam to; "..(tostring(setting)),
  13262. "Setting Changed;",
  13263. 3,
  13264. Enum.FontSize.Size28,
  13265. Color3.fromRGB(200,50,50)
  13266. )
  13267. end
  13268. end
  13269. if string.sub(msg,1,11+pref:len()) == pref.."targetpart " then
  13270. local setting = string.sub(msg,12,msg:len())
  13271. if type(setting) == "string" then
  13272. _G.TARGET_PART = setting
  13273.  
  13274. SendMessage("Changed targetpart to; "..(tostring(setting)),
  13275. "Setting Changed;",
  13276. 3,
  13277. Enum.FontSize.Size28,
  13278. Color3.fromRGB(200,50,50)
  13279. )
  13280. end
  13281. end
  13282. if string.sub(msg,1,13+pref:len()) == pref.."removefriend " then
  13283. local setting = string.sub(msg,14,msg:len())
  13284. if type(setting) == "string" then
  13285. for i,v in pairs(_G.FRIEND_LIST) do
  13286. if v:lower() == setting:lower() then
  13287. table.remove(_G.FRIEND_LIST,i)
  13288. end
  13289. end
  13290. SendMessage("Removed player from friend list; "..(tostring(setting)),
  13291. "Friend removed;",
  13292. 3,
  13293. Enum.FontSize.Size28,
  13294. Color3.fromRGB(200,50,50)
  13295. )
  13296. end
  13297. end
  13298. if string.sub(msg,1,10+pref:len()) == pref.."addfriend " then
  13299. local setting = string.sub(msg,11,msg:len())
  13300. if type(setting) == "string" then
  13301. for i,v in pairs(_G.FRIEND_LIST) do
  13302. if v == setting:lower() then
  13303. return
  13304. end
  13305. end
  13306. table.insert(_G.FRIEND_LIST,setting:lower())
  13307. SendMessage("Added player to friend list; "..(tostring(setting)),
  13308. "Friend added;",
  13309. 3,
  13310. Enum.FontSize.Size28,
  13311. Color3.fromRGB(200,50,50)
  13312. )
  13313. end
  13314. end
  13315. if string.sub(msg,1,7+pref:len()) == pref.."friends" then
  13316. local friends = ""
  13317. for i,v in pairs(_G.FRIEND_LIST) do
  13318. if i == 1 then
  13319. friends = v
  13320. else
  13321. friends = friends..", "..v
  13322. end
  13323. end
  13324. SendMessage("Your friends are; " .."\n".. friends,
  13325. "Your friends;",
  13326. 3,
  13327. Enum.FontSize.Size28,
  13328. Color3.fromRGB(200,50,50)
  13329. )
  13330. end
  13331. if string.sub(msg,1,11+pref:len()) == pref.."changepref " then
  13332. local setting = string.sub(msg,12+pref:len(),msg:len())
  13333. if type(setting) == "string" then
  13334. _G.PREFIX = setting
  13335. SendMessage("Changed prefix to; "..setting,
  13336. "Setting changed;",
  13337. 3,
  13338. Enum.FontSize.Size28,
  13339. Color3.fromRGB(200,50,50)
  13340. )
  13341. end
  13342. end
  13343. if string.sub(msg,1,4+pref:len()) == pref.."help" then
  13344. SendMessage(helptxt,
  13345. "AimHot by Herrtt#3868;",
  13346. 3,
  13347. Enum.FontSize.Size28,
  13348. Color3.fromRGB(200,50,50)
  13349. )
  13350. end
  13351. if msg == "/e reset" then
  13352. _G.FRIEND_LIST = {"ROBLOX","builderman"}
  13353.  
  13354. _G.IGNORE_TEAM = true
  13355. _G.START_AIMBOT = Enum.KeyCode.H
  13356. _G.MAX_DIST = 5000
  13357. _G.TARGET_PART = "Head"
  13358. _G.PREFIX = "/e "
  13359.  
  13360. SendMessage("All settings are set back to regular.",
  13361. "Settings reseted.",
  13362. Enum.FontSize.Size28,
  13363. Color3.fromRGB(200,50,50)
  13364. )
  13365. end
  13366. end)
  13367.  
  13368. SendMessage(helptxt,
  13369. "AimHot by Herrtt#3868;",
  13370. 3,
  13371. Enum.FontSize.Size28,
  13372. Color3.fromRGB(200,50,50)
  13373. )
  13374. _G.AIMHOT_VERSION = "4.0"
  13375. end)
  13376.  
  13377. TPose.Name = "TPose"
  13378. TPose.Parent = Frame
  13379. TPose.BackgroundColor3 = Color3.new(1, 1, 1)
  13380. TPose.Position = UDim2.new(0.655765951, 0, 5.87330294, 0)
  13381. TPose.Size = UDim2.new(0, 200, 0, 50)
  13382. TPose.Font = Enum.Font.SourceSans
  13383. TPose.Text = "T-pose lol"
  13384. TPose.TextColor3 = Color3.new(0, 0, 0)
  13385. TPose.TextScaled = true
  13386. TPose.TextSize = 14
  13387. TPose.TextWrapped = true
  13388. TPose.MouseButton1Down:connect(function()
  13389. local Anim = Instance.new("Animation")
  13390. Anim.AnimationId = "rbxassetid://27432691"
  13391. local k = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  13392. k:Play()
  13393. k:AdjustSpeed(1)
  13394. wait(1.46)
  13395. k:AdjustSpeed(0)
  13396. end)
  13397.  
  13398. Shit.Name = "Shit"
  13399. Shit.Parent = Frame
  13400. Shit.BackgroundColor3 = Color3.new(0, 0, 0)
  13401. Shit.BackgroundTransparency = 0.40000000596046
  13402. Shit.Position = UDim2.new(-0.00172117027, 0, 7.74172401, 0)
  13403. Shit.Size = UDim2.new(0, 200, 0, 50)
  13404. Shit.Font = Enum.Font.SourceSans
  13405. Shit.Text = "Nothing"
  13406. Shit.TextColor3 = Color3.new(0, 0, 0)
  13407. Shit.TextScaled = true
  13408. Shit.TextSize = 14
  13409. Shit.TextWrapped = true
  13410.  
  13411. Dick.Name = "Dick"
  13412. Dick.Parent = Frame
  13413. Dick.BackgroundColor3 = Color3.new(0, 0, 0)
  13414. Dick.BackgroundTransparency = 0.40000000596046
  13415. Dick.Position = UDim2.new(0.370051622, 0, 7.74172401, 0)
  13416. Dick.Size = UDim2.new(0, 154, 0, 50)
  13417. Dick.Font = Enum.Font.SourceSans
  13418. Dick.Text = "Nothing"
  13419. Dick.TextColor3 = Color3.new(0, 0, 0)
  13420. Dick.TextScaled = true
  13421. Dick.TextSize = 14
  13422. Dick.TextWrapped = true
  13423.  
  13424. Bitch.Name = "Bitch"
  13425. Bitch.Parent = Frame
  13426. Bitch.BackgroundColor3 = Color3.new(0, 0, 0)
  13427. Bitch.BackgroundTransparency = 0.40000000596046
  13428. Bitch.Position = UDim2.new(0.655765951, 0, 7.74172401, 0)
  13429. Bitch.Size = UDim2.new(0, 200, 0, 50)
  13430. Bitch.Font = Enum.Font.SourceSans
  13431. Bitch.Text = "Nothing"
  13432. Bitch.TextColor3 = Color3.new(0, 0, 0)
  13433. Bitch.TextScaled = true
  13434. Bitch.TextSize = 14
  13435. Bitch.TextWrapped = true
  13436.  
  13437. ImageLabel.Parent = MainMenu
  13438. ImageLabel.Active = true
  13439. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  13440. ImageLabel.BorderSizePixel = 0
  13441. ImageLabel.Position = UDim2.new(0.0319517218, 0, 0.761306703, 0)
  13442. ImageLabel.Size = UDim2.new(0, 87, 0, 86)
  13443. ImageLabel.Image = "http://www.roblox.com/asset/?id=3690083097"
  13444.  
  13445. ImageLabel_2.Parent = MainMenu
  13446. ImageLabel_2.Active = true
  13447. ImageLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  13448. ImageLabel_2.BorderSizePixel = 0
  13449. ImageLabel_2.Position = UDim2.new(0.803744495, 0, 0.761306703, 0)
  13450. ImageLabel_2.Size = UDim2.new(0, 87, 0, 86)
  13451. ImageLabel_2.Image = "http://www.roblox.com/asset/?id=3690123287"
  13452.  
  13453. Name1.Name = "Name1"
  13454. Name1.Parent = MainMenu
  13455. Name1.Active = true
  13456. Name1.BackgroundColor3 = Color3.new(1, 1, 1)
  13457. Name1.BackgroundTransparency = 1
  13458. Name1.BorderSizePixel = 0
  13459. Name1.Position = UDim2.new(0.00244908128, 0, 0.717400074, 0)
  13460. Name1.Size = UDim2.new(0, 132, 0, 27)
  13461. Name1.Font = Enum.Font.SourceSans
  13462. Name1.Text = "Scripts taken of:"
  13463. Name1.TextColor3 = Color3.new(0, 0, 0)
  13464. Name1.TextSize = 14
  13465.  
  13466. Discord1.Name = "Discord1"
  13467. Discord1.Parent = MainMenu
  13468. Discord1.Active = true
  13469. Discord1.BackgroundColor3 = Color3.new(1, 1, 1)
  13470. Discord1.BackgroundTransparency = 1
  13471. Discord1.BorderSizePixel = 0
  13472. Discord1.Position = UDim2.new(-0.00289893895, 0, 0.91959852, 0)
  13473. Discord1.Size = UDim2.new(0, 132, 0, 27)
  13474. Discord1.Font = Enum.Font.SourceSans
  13475. Discord1.Text = "Ferripro321#3714"
  13476. Discord1.TextColor3 = Color3.new(0, 0, 0)
  13477. Discord1.TextSize = 14
  13478.  
  13479. Discord2.Name = "Discord2"
  13480. Discord2.Parent = MainMenu
  13481. Discord2.Active = true
  13482. Discord2.BackgroundColor3 = Color3.new(1, 1, 1)
  13483. Discord2.BackgroundTransparency = 1
  13484. Discord2.BorderSizePixel = 0
  13485. Discord2.Position = UDim2.new(0.769244671, 0, 0.91959852, 0)
  13486. Discord2.Size = UDim2.new(0, 132, 0, 27)
  13487. Discord2.Font = Enum.Font.SourceSans
  13488. Discord2.Text = "Chocoly#8853"
  13489. Discord2.TextColor3 = Color3.new(0, 0, 0)
  13490. Discord2.TextSize = 14
  13491.  
  13492. Name2.Name = "Name2"
  13493. Name2.Parent = MainMenu
  13494. Name2.Active = true
  13495. Name2.BackgroundColor3 = Color3.new(1, 1, 1)
  13496. Name2.BackgroundTransparency = 1
  13497. Name2.BorderSizePixel = 0
  13498. Name2.Position = UDim2.new(0.769244671, 0, 0.717400074, 0)
  13499. Name2.Size = UDim2.new(0, 132, 0, 27)
  13500. Name2.Font = Enum.Font.SourceSans
  13501. Name2.Text = "Created by:"
  13502. Name2.TextColor3 = Color3.new(0, 0, 0)
  13503. Name2.TextSize = 14
  13504.  
  13505. Close.Name = "Close"
  13506. Close.Parent = MainMenu
  13507. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  13508. Close.BackgroundTransparency = 1
  13509. Close.Position = UDim2.new(-0.00162262004, 0, 0.00134791434, 0)
  13510. Close.Size = UDim2.new(0, 42, 0, 37)
  13511. Close.Font = Enum.Font.SourceSans
  13512. Close.Text = "X"
  13513. Close.TextColor3 = Color3.new(0, 0, 0)
  13514. Close.TextScaled = true
  13515. Close.TextSize = 14
  13516. Close.TextWrapped = true
  13517. Close.MouseButton1Down:connect(function()
  13518. OpenButton.Visible = true
  13519. MainMenu.Visible = false
  13520. end)
  13521.  
  13522. OpenFrame.Name = "OpenFrame"
  13523. OpenFrame.Parent = emillia
  13524. OpenFrame.Active = true
  13525. OpenFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  13526. OpenFrame.BackgroundTransparency = 0.60000002384186
  13527. OpenFrame.Position = UDim2.new(0, 0, 0.928257704, 0)
  13528. OpenFrame.Size = UDim2.new(0, 100, 0, 49)
  13529.  
  13530. OpenButton.Name = "OpenButton"
  13531. OpenButton.Parent = OpenFrame
  13532. OpenButton.BackgroundColor3 = Color3.new(1, 1, 1)
  13533. OpenButton.BackgroundTransparency = 0.69999998807907
  13534. OpenButton.Position = UDim2.new(0, 0, -0.00956165791, 0)
  13535. OpenButton.Size = UDim2.new(0, 100, 0, 49)
  13536. OpenButton.Font = Enum.Font.Gotham
  13537. OpenButton.Text = "UwU"
  13538. OpenButton.TextColor3 = Color3.new(0, 0, 0)
  13539. OpenButton.TextScaled = true
  13540. OpenButton.TextSize = 14
  13541. OpenButton.TextWrapped = true
  13542. OpenButton.MouseButton1Down:connect(function()
  13543. MainMenu.Visible = true
  13544. end)
  13545. -- Scripts:
Add Comment
Please, Sign In to add comment