Guest User

Untitled

a guest
Jul 16th, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 216.06 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Top = Instance.new("TextLabel")
  7. local Credit = Instance.new("TextLabel")
  8. local Exit = Instance.new("TextButton")
  9. local Spinner = Instance.new("TextButton")
  10. local InfiniteJump = Instance.new("TextButton")
  11. local GravityOn = Instance.new("TextButton")
  12. local GravityOff = Instance.new("TextButton")
  13. local WalkspeedB = Instance.new("TextButton")
  14. local TheNorthernFrontierGui = Instance.new("TextButton")
  15. local Btools = Instance.new("TextButton")
  16. local FeAnimation = Instance.new("TextButton")
  17. local RevizAdmin = Instance.new("TextButton")
  18. local Mini = Instance.new("TextButton")
  19. local Open = Instance.new("TextButton")
  20. --Properties:
  21. ScreenGui.Parent = game.CoreGui
  22. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  23.  
  24. Main.Name = "Main"
  25. Main.Parent = ScreenGui
  26. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  27. Main.BorderSizePixel = 0
  28. Main.Position = UDim2.new(0.306466728, 0, 0.170974165, 0)
  29. Main.Size = UDim2.new(0, 413, 0, 361)
  30. Main.Visible = false
  31. Main.Active = true
  32. Main.Draggable = true
  33.  
  34. Top.Name = "Top"
  35. Top.Parent = Main
  36. Top.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  37. Top.BorderSizePixel = 0
  38. Top.Size = UDim2.new(0, 413, 0, 40)
  39. Top.Font = Enum.Font.SourceSans
  40. Top.Text = "Roman Exploit"
  41. Top.TextColor3 = Color3.new(0, 0, 0)
  42. Top.TextScaled = true
  43. Top.TextSize = 14
  44. Top.TextWrapped = true
  45.  
  46. Credit.Name = "Credit"
  47. Credit.Parent = Main
  48. Credit.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  49. Credit.BorderSizePixel = 0
  50. Credit.Position = UDim2.new(0, 0, 0.889196694, 0)
  51. Credit.Size = UDim2.new(0, 413, 0, 40)
  52. Credit.Font = Enum.Font.SourceSans
  53. Credit.Text = "Credit By babyluke2108#0313"
  54. Credit.TextColor3 = Color3.new(0, 0, 0)
  55. Credit.TextScaled = true
  56. Credit.TextSize = 14
  57. Credit.TextWrapped = true
  58.  
  59. Exit.Name = "Exit"
  60. Exit.Parent = Main
  61. Exit.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  62. Exit.BorderSizePixel = 0
  63. Exit.Position = UDim2.new(0.89104116, 0, 0, 0)
  64. Exit.Size = UDim2.new(0, 45, 0, 40)
  65. Exit.Font = Enum.Font.Cartoon
  66. Exit.Text = "X"
  67. Exit.TextColor3 = Color3.new(0, 0, 0)
  68. Exit.TextScaled = true
  69. Exit.TextSize = 14
  70. Exit.TextWrapped = true
  71. Exit.MouseButton1Down:connect(function()
  72. Main.Visible = false
  73. end)
  74.  
  75. Spinner.Name = "Spinner"
  76. Spinner.Parent = Main
  77. Spinner.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  78. Spinner.BorderSizePixel = 0
  79. Spinner.Position = UDim2.new(0.0411622301, 0, 0.152354568, 0)
  80. Spinner.Size = UDim2.new(0, 149, 0, 43)
  81. Spinner.Font = Enum.Font.Cartoon
  82. Spinner.Text = "Spinner"
  83. Spinner.TextColor3 = Color3.new(0, 0, 0)
  84. Spinner.TextScaled = true
  85. Spinner.TextSize = 14
  86. Spinner.TextWrapped = true
  87. Spinner.MouseButton1Down:connect(function()
  88. -- Spin script
  89.  
  90. power = 500 -- change this to make it more or less powerful
  91.  
  92. game:GetService('RunService').Stepped:connect(function()
  93. game.Players.LocalPlayer.Character.Head.CanCollide = false
  94. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  95. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  96. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  97. end)
  98. wait(.1)
  99. local bambam = Instance.new("BodyThrust")
  100. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  101. bambam.Force = Vector3.new(power,0,power)
  102. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  103.  
  104. -- Noclip Script
  105.  
  106. local noclip = true -- Gets if you want the noclip
  107. char = game.Players.LocalPlayer.Character -- Gets your player
  108. while true do -- Make sure someone is in game
  109. if noclip == true then
  110. for _,v in pairs(char:children()) do
  111. pcall(function()
  112. if v.className == "Part" then
  113. v.CanCollide = false
  114. end
  115. end)
  116. end
  117. end
  118. game:service("RunService").Stepped:wait()
  119. end
  120.  
  121. -- copy paste those scripts together and execute them, wasn't hard to make lmao
  122. end)
  123.  
  124. InfiniteJump.Name = "Infinite Jump"
  125. InfiniteJump.Parent = Main
  126. InfiniteJump.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  127. InfiniteJump.BorderSizePixel = 0
  128. InfiniteJump.Position = UDim2.new(0.598062992, 0, 0.152354568, 0)
  129. InfiniteJump.Size = UDim2.new(0, 149, 0, 43)
  130. InfiniteJump.Font = Enum.Font.Cartoon
  131. InfiniteJump.Text = "Infinite Jump"
  132. InfiniteJump.TextColor3 = Color3.new(0, 0, 0)
  133. InfiniteJump.TextScaled = true
  134. InfiniteJump.TextSize = 14
  135. InfiniteJump.TextWrapped = true
  136. InfiniteJump.MouseButton1Down:connect(function()
  137. local InfiniteJumpEnabled = true
  138. game:GetService("UserInputService").JumpRequest:connect(function()
  139. if InfiniteJumpEnabled then
  140. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  141. end
  142. end)
  143. end)
  144.  
  145. GravityOn.Name = "Gravity On"
  146. GravityOn.Parent = Main
  147. GravityOn.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  148. GravityOn.BorderSizePixel = 0
  149. GravityOn.Position = UDim2.new(0.0411622301, 0, 0.304709136, 0)
  150. GravityOn.Size = UDim2.new(0, 149, 0, 43)
  151. GravityOn.Font = Enum.Font.Cartoon
  152. GravityOn.Text = "Gravity On"
  153. GravityOn.TextColor3 = Color3.new(0, 0, 0)
  154. GravityOn.TextScaled = true
  155. GravityOn.TextSize = 14
  156. GravityOn.TextWrapped = true
  157. GravityOn.MouseButton1Down:connect(function()
  158. wait()
  159. game.workspace.Gravity = 196.2
  160.  
  161.  
  162. -- Default: 196.2
  163.  
  164. -- ROBLOX: RocketBlast122
  165. -- YouTube: Stranger Danger Jake
  166. -- Discord: π”–π”±π”―π”žπ”«π”€π”’π”― π”‡π”žπ”«π”€π”’π”― π”π”žπ”¨π”’#1620
  167. end)
  168.  
  169. GravityOff.Name = "Gravity Off"
  170. GravityOff.Parent = Main
  171. GravityOff.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  172. GravityOff.BorderSizePixel = 0
  173. GravityOff.Position = UDim2.new(0.598062992, 0, 0.304709136, 0)
  174. GravityOff.Size = UDim2.new(0, 149, 0, 43)
  175. GravityOff.Font = Enum.Font.Cartoon
  176. GravityOff.Text = "X Teleport"
  177. GravityOff.TextColor3 = Color3.new(0, 0, 0)
  178. GravityOff.TextScaled = true
  179. GravityOff.TextSize = 14
  180. GravityOff.TextWrapped = true
  181. GravityOff.MouseButton1Down:connect(function()
  182. plr = game.Players.LocalPlayer
  183. hum = plr.Character.HumanoidRootPart
  184. mouse = plr:GetMouse()
  185.  
  186. mouse.KeyDown:connect(function(key)
  187. if key == "x" then
  188. if mouse.Target then
  189. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  190. end
  191. end
  192. end)
  193. end)
  194.  
  195. WalkspeedB.Name = "WalkspeedB"
  196. WalkspeedB.Parent = Main
  197. WalkspeedB.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  198. WalkspeedB.BorderSizePixel = 0
  199. WalkspeedB.Position = UDim2.new(0.0411622301, 0, 0.457063705, 0)
  200. WalkspeedB.Size = UDim2.new(0, 149, 0, 43)
  201. WalkspeedB.Font = Enum.Font.Cartoon
  202. WalkspeedB.Text = "WalkspeedB"
  203. WalkspeedB.TextColor3 = Color3.new(0, 0, 0)
  204. WalkspeedB.TextScaled = true
  205. WalkspeedB.TextSize = 14
  206. WalkspeedB.TextWrapped = true
  207. WalkspeedB.MouseButton1Down:connect(function()
  208. local walkspeedplayer = game:GetService("Players").LocalPlayer
  209. local walkspeedmouse = walkspeedplayer:GetMouse()
  210.  
  211. local walkspeedenabled = false
  212.  
  213. function b_walkspeed(key)
  214. if (key == "b") then
  215. if walkspeedenabled == false then
  216. _G.WS = 120;
  217. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  218. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  219. Humanoid.WalkSpeed = _G.WS;
  220. end)
  221. Humanoid.WalkSpeed = _G.WS;
  222.  
  223. walkspeedenabled = true
  224. elseif walkspeedenabled == true then
  225. _G.WS = 16;
  226. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  227. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  228. Humanoid.WalkSpeed = _G.WS;
  229. end)
  230. Humanoid.WalkSpeed = _G.WS;
  231.  
  232. walkspeedenabled = false
  233. end
  234. end
  235. end
  236.  
  237. walkspeedmouse.KeyDown:connect(b_walkspeed)
  238.  
  239. end)
  240.  
  241. TheNorthernFrontierGui.Name = "The Northern Frontier Gui"
  242. TheNorthernFrontierGui.Parent = Main
  243. TheNorthernFrontierGui.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  244. TheNorthernFrontierGui.BorderSizePixel = 0
  245. TheNorthernFrontierGui.Position = UDim2.new(0.598062992, 0, 0.457063705, 0)
  246. TheNorthernFrontierGui.Size = UDim2.new(0, 149, 0, 43)
  247. TheNorthernFrontierGui.Font = Enum.Font.Cartoon
  248. TheNorthernFrontierGui.Text = "The Northern Frontier Gui"
  249. TheNorthernFrontierGui.TextColor3 = Color3.new(0, 0, 0)
  250. TheNorthernFrontierGui.TextScaled = true
  251. TheNorthernFrontierGui.TextSize = 14
  252. TheNorthernFrontierGui.TextWrapped = true
  253. TheNorthernFrontierGui.MouseButton1Down:connect(function()
  254. --[[
  255. Made By CallMeChin
  256. https://v3rmillion.net/member.php?action=profile&uid=605761
  257. --]]
  258. local tnfgui = Instance.new("ScreenGui")
  259. local frame = Instance.new("Frame")
  260. local open = Instance.new("TextButton")
  261. local main = Instance.new("Frame")
  262. local title = Instance.new("TextLabel")
  263. local credit = Instance.new("TextLabel")
  264. local xtp = Instance.new("TextButton")
  265. local hidename = Instance.new("TextButton")
  266. local tpcolonist = Instance.new("TextButton")
  267. local tpnative = Instance.new("TextButton")
  268. local tptraveler = Instance.new("TextButton")
  269. local close = Instance.new("TextButton")
  270. --Properties:
  271. tnfgui.Name = "tnfgui"
  272. tnfgui.Parent = game.CoreGui
  273.  
  274. frame.Name = "frame"
  275. frame.Parent = tnfgui
  276. frame.BackgroundColor3 = Color3.new(1, 1, 1)
  277. frame.Position = UDim2.new(0, 0, 0.424242437, 0)
  278. frame.Size = UDim2.new(0, 91, 0, 41)
  279. frame.Style = Enum.FrameStyle.DropShadow
  280.  
  281. open.Name = "open"
  282. open.Parent = frame
  283. open.BackgroundColor3 = Color3.new(0, 0, 0)
  284. open.BackgroundTransparency = 0.5
  285. open.Position = UDim2.new(0.0139137097, 0, 0.161528051, 0)
  286. open.Size = UDim2.new(0, 74, 0, 20)
  287. open.Font = Enum.Font.SciFi
  288. open.Text = "Open"
  289. open.TextColor3 = Color3.new(1, 1, 1)
  290. open.TextSize = 14
  291. open.MouseButton1Down:connect(function()
  292. main.Visible = true
  293. frame.Visible = false
  294. end)
  295.  
  296. main.Name = "main"
  297. main.Parent = tnfgui
  298. main.BackgroundColor3 = Color3.new(1, 1, 1)
  299. main.Position = UDim2.new(0.141570151, 0, 0.299077749, 0)
  300. main.Size = UDim2.new(0, 218, 0, 233)
  301. main.Visible = false
  302. main.Style = Enum.FrameStyle.DropShadow
  303. main.Active = true
  304. main.Draggable = true
  305.  
  306. title.Name = "title"
  307. title.Parent = main
  308. title.BackgroundColor3 = Color3.new(0, 0, 0)
  309. title.Position = UDim2.new(-0.0559843555, 0, -0.0344254635, 0)
  310. title.Size = UDim2.new(0, 225, 0, 19)
  311. title.Font = Enum.Font.SciFi
  312. title.Text = "The Northern Frontier GUI"
  313. title.TextColor3 = Color3.new(1, 1, 1)
  314. title.TextSize = 14
  315.  
  316. credit.Name = "credit"
  317. credit.Parent = main
  318. credit.BackgroundColor3 = Color3.new(0, 0, 0)
  319. credit.Position = UDim2.new(-0.0559843555, 0, 0.931239784, 0)
  320. credit.Size = UDim2.new(0, 225, 0, 19)
  321. credit.Font = Enum.Font.SciFi
  322. credit.Text = "GUI Made By CallMeChin @ V3RM"
  323. credit.TextColor3 = Color3.new(1, 1, 1)
  324. credit.TextSize = 14
  325.  
  326. xtp.Name = "xtp"
  327. xtp.Parent = main
  328. xtp.BackgroundColor3 = Color3.new(0, 0, 0)
  329. xtp.Position = UDim2.new(0.00425048545, 0, 0.142846629, 0)
  330. xtp.Size = UDim2.new(0, 200, 0, 17)
  331. xtp.Font = Enum.Font.SciFi
  332. xtp.Text = "X Teleport"
  333. xtp.TextColor3 = Color3.new(1, 1, 1)
  334. xtp.TextSize = 14
  335. xtp.MouseButton1Down:connect(function()
  336. plr = game.Players.LocalPlayer
  337. hum = plr.Character.HumanoidRootPart
  338. mouse = plr:GetMouse()
  339.  
  340. mouse.KeyDown:connect(function(key)
  341. if key == "x" then
  342. if mouse.Target then
  343. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  344. end
  345. end
  346. end)
  347. end)
  348.  
  349. hidename.Name = "hidename"
  350. hidename.Parent = main
  351. hidename.BackgroundColor3 = Color3.new(0, 0, 0)
  352. hidename.Position = UDim2.new(0.00425048545, 0, 0.297353059, 0)
  353. hidename.Size = UDim2.new(0, 200, 0, 17)
  354. hidename.Font = Enum.Font.SciFi
  355. hidename.Text = "Hide Name"
  356. hidename.TextColor3 = Color3.new(1, 1, 1)
  357. hidename.TextSize = 14
  358. hidename.MouseButton1Down:connect(function()
  359. local name = game:GetService'Players'.LocalPlayer.Name
  360. Workspace.World.MouseFilter[name][name].Head.LabelBillboardGui: Destroy()
  361. end)
  362.  
  363. tpcolonist.Name = "tpcolonist"
  364. tpcolonist.Parent = main
  365. tpcolonist.BackgroundColor3 = Color3.new(0, 0, 0)
  366. tpcolonist.Position = UDim2.new(0.00425048545, 0, 0.447567642, 0)
  367. tpcolonist.Size = UDim2.new(0, 200, 0, 17)
  368. tpcolonist.Font = Enum.Font.SciFi
  369. tpcolonist.Text = "Teleport To Colonist Base"
  370. tpcolonist.TextColor3 = Color3.new(1, 1, 1)
  371. tpcolonist.TextSize = 14
  372. tpcolonist.MouseButton1Down:connect(function()
  373. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-606.592773, 45, -657.825439)
  374. end)
  375.  
  376. tpnative.Name = "tpnative"
  377. tpnative.Parent = main
  378. tpnative.BackgroundColor3 = Color3.new(0, 0, 0)
  379. tpnative.Position = UDim2.new(0.00425048545, 0, 0.58919853, 0)
  380. tpnative.Size = UDim2.new(0, 200, 0, 17)
  381. tpnative.Font = Enum.Font.SciFi
  382. tpnative.Text = "Teleport To Native Camp"
  383. tpnative.TextColor3 = Color3.new(1, 1, 1)
  384. tpnative.TextSize = 14
  385. tpnative.MouseButton1Down:connect(function()
  386. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1864.0199, 57, 701.627319)
  387. end)
  388.  
  389. tptraveler.Name = "tptraveler"
  390. tptraveler.Parent = main
  391. tptraveler.BackgroundColor3 = Color3.new(0, 0, 0)
  392. tptraveler.Position = UDim2.new(0.00425048545, 0, 0.739413142, 0)
  393. tptraveler.Size = UDim2.new(0, 200, 0, 17)
  394. tptraveler.Font = Enum.Font.SciFi
  395. tptraveler.Text = "Teleport To Traveler"
  396. tptraveler.TextColor3 = Color3.new(1, 1, 1)
  397. tptraveler.TextSize = 14
  398. tptraveler.MouseButton1Down:connect(function()
  399. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(268.278961, 81, -499.590393)
  400. end)
  401.  
  402. close.Name = "close"
  403. close.Parent = main
  404. close.BackgroundColor3 = Color3.new(0, 0, 0)
  405. close.Position = UDim2.new(0.960082471, 0, -0.0368760414, 0)
  406. close.Size = UDim2.new(0, 19, 0, 18)
  407. close.Font = Enum.Font.SciFi
  408. close.Text = "X"
  409. close.TextColor3 = Color3.new(1, 1, 1)
  410. close.TextSize = 14
  411. close.MouseButton1Down:connect(function()
  412. frame.Visible = true
  413. main.Visible = false
  414. end)
  415. end)
  416.  
  417. Btools.Name = "Btools"
  418. Btools.Parent = Main
  419. Btools.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  420. Btools.BorderSizePixel = 0
  421. Btools.Position = UDim2.new(0.0411622301, 0, 0.598337889, 0)
  422. Btools.Size = UDim2.new(0, 149, 0, 43)
  423. Btools.Font = Enum.Font.Cartoon
  424. Btools.Text = "Btools"
  425. Btools.TextColor3 = Color3.new(0, 0, 0)
  426. Btools.TextScaled = true
  427. Btools.TextSize = 14
  428. Btools.TextWrapped = true
  429. Btools.MouseButton1Down:connect(function()
  430. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  431. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  432. if child.ClassName == "Part" then
  433. child.Locked = false
  434. end
  435. if child.ClassName == "MeshPart" then
  436. child.Locked = false
  437. end
  438. if child.ClassName == "UnionOperation" then
  439. child.Locked = false
  440. end
  441. if child.ClassName == "Model" then
  442. for index, chil in pairs(child:GetChildren()) do
  443. if chil.ClassName == "Part" then
  444. chil.Locked = false
  445. end
  446. if chil.ClassName == "MeshPart" then
  447. chil.Locked = false
  448. end
  449. if chil.ClassName == "UnionOperation" then
  450. chil.Locked = false
  451. end
  452. if chil.ClassName == "Model" then
  453. for index, childe in pairs(chil:GetChildren()) do
  454. if childe.ClassName == "Part" then
  455. childe.Locked = false
  456. end
  457. if childe.ClassName == "MeshPart" then
  458. childe.Locked = false
  459. end
  460. if childe.ClassName == "UnionOperation" then
  461. childe.Locked = false
  462. end
  463. if childe.ClassName == "Model" then
  464. for index, childeo in pairs(childe:GetChildren()) do
  465. if childeo.ClassName == "Part" then
  466. childeo.Locked = false
  467. end
  468. if childeo.ClassName == "MeshPart" then
  469. childeo.Locked = false
  470. end
  471. if childeo.ClassName == "UnionOperation" then
  472. childeo.Locked = false
  473. end
  474. if childeo.ClassName == "Model" then
  475. end
  476. end
  477. end
  478. end
  479. end
  480. end
  481. end
  482. end
  483. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  484. c.BinType = Enum.BinType.Hammer
  485. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  486. c.BinType = Enum.BinType.Clone
  487. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  488. c.BinType = Enum.BinType.Grab
  489. end)
  490.  
  491. FeAnimation.Name = "Fe Animation"
  492. FeAnimation.Parent = Main
  493. FeAnimation.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  494. FeAnimation.BorderSizePixel = 0
  495. FeAnimation.Position = UDim2.new(0.598062992, 0, 0.598337889, 0)
  496. FeAnimation.Size = UDim2.new(0, 149, 0, 43)
  497. FeAnimation.Font = Enum.Font.Cartoon
  498. FeAnimation.Text = "Fe Animation"
  499. FeAnimation.TextColor3 = Color3.new(0, 0, 0)
  500. FeAnimation.TextScaled = true
  501. FeAnimation.TextSize = 14
  502. FeAnimation.TextWrapped = true
  503. FeAnimation.MouseButton1Down:connect(function()
  504. local Energize = Instance.new("ScreenGui")
  505. local SideFrame = Instance.new("Frame")
  506. local OpenGUI = Instance.new("TextButton")
  507. local SideFrameTitle = Instance.new("TextLabel")
  508. local MainFrame = Instance.new("Frame")
  509. local GuiBottomFrame = Instance.new("Frame")
  510. local Credits = Instance.new("TextLabel")
  511. local ScrollingFrame = Instance.new("ScrollingFrame")
  512. local CheckR = Instance.new("TextLabel")
  513. local ScrollingFrameR15 = Instance.new("ScrollingFrame")
  514.  
  515. local CrazySlash = Instance.new("TextButton")--COMPLETE
  516. local Open = Instance.new("TextButton")--COMPLETE
  517. local R15Spinner = Instance.new("TextButton")--COMPLETE
  518. local ArmsOut = Instance.new("TextButton")--COMPLETE
  519. local FloatSlash = Instance.new("TextButton")--COMPLETE
  520. local WeirdZombie = Instance.new("TextButton")--COMPLETE
  521. local DownSlash = Instance.new("TextButton")--COMPLETE
  522. local Pull = Instance.new("TextButton")--COMPLETE
  523. local CircleArm = Instance.new("TextButton")--COMPLETE
  524. local Bend = Instance.new("TextButton")--COMPLETE
  525. local RotateSlash = Instance.new("TextButton")--COMPLETE
  526. local FlingArms = Instance.new("TextButton")--COMPLETE
  527.  
  528. local FullSwing = Instance.new("TextButton")--COMPLETE
  529. local GlitchLevitate = Instance.new("TextButton")--COMPLETE
  530. local MoonDance = Instance.new("TextButton")--COMPLETE
  531. local FullPunch = Instance.new("TextButton")--COMPLETE
  532. local Crouch = Instance.new("TextButton")--COMPLETE
  533. local SpinDance = Instance.new("TextButton")--COMPLETE
  534. local FloorFaint = Instance.new("TextButton")--COMPLETE
  535. local JumpingJacks = Instance.new("TextButton")--COMPLETE
  536. local Spinner = Instance.new("TextButton")--COMPLETE
  537. local MegaInsane = Instance.new("TextButton")--COMPLETE
  538. local ArmDetach = Instance.new("TextButton")--COMPLETE
  539. local WeirdMove = Instance.new("TextButton")--COMPLETE
  540. local Faint = Instance.new("TextButton")--COMPLETE
  541. local CloneIllusion = Instance.new("TextButton")--COMPLETE
  542. local Levitate = Instance.new("TextButton")--COMPLETE
  543. local DinoWalk = Instance.new("TextButton")--COMPLETE
  544. local FloorCrawl = Instance.new("TextButton")--COMPLETE
  545. local SwordSlam = Instance.new("TextButton")--COMPLETE
  546. local LoopHead = Instance.new("TextButton")--COMPLETE
  547. local HeroJump = Instance.new("TextButton")--COMPLETE
  548. local Insane = Instance.new("TextButton")--COMPLETE
  549. local FloatingHead = Instance.new("TextButton")--COMPLETE
  550. local HeadThrow = Instance.new("TextButton")--COMPLETE
  551. local MovingDance = Instance.new("TextButton")--COMPLETE
  552. local SuperPunch = Instance.new("TextButton")--COMPLETE
  553. local ArmTurbine = Instance.new("TextButton")--COMPLETE
  554. local Dab = Instance.new("TextButton")--COMPLETE
  555. local FloatSit = Instance.new("TextButton")--COMPLETE
  556. local SuperFaint = Instance.new("TextButton")--COMPLETE
  557. local BarrelRoll = Instance.new("TextButton")--COMPLETE
  558. local Scared = Instance.new("TextButton")--COMPLETE
  559. local InsaneArms = Instance.new("TextButton")--COMPLETE
  560. local SwordSlice = Instance.new("TextButton")--COMPLETE
  561. local SpinDance2 = Instance.new("TextButton")--COMPLETE
  562. local BowDown = Instance.new("TextButton")--COMPLETE
  563. local LoopSlam = Instance.new("TextButton")--COMPLETE
  564.  
  565. local GuiTopFrame = Instance.new("Frame") -- Top of the main frame
  566. local CloseGUI = Instance.new("TextButton") -- To close the GUI
  567. local Title = Instance.new("TextLabel") -- Actual title of GUI, Energize
  568.  
  569. -- Properties
  570.  
  571. Energize.Name = "Energize"
  572. Energize.Parent = game.Players.LocalPlayer.PlayerGui
  573.  
  574. SideFrame.Name = "SideFrame"
  575. SideFrame.Parent = Energize
  576. SideFrame.Active = true
  577. SideFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  578. SideFrame.Draggable = true
  579. SideFrame.Position = UDim2.new(0, 376, 0, 125)
  580. SideFrame.Size = UDim2.new(0, 460, 0, 32)
  581. SideFrame.Visible = false
  582.  
  583. OpenGUI.Name = "OpenGUI"
  584. OpenGUI.Parent = SideFrame
  585. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  586. OpenGUI.BackgroundTransparency = 1
  587. OpenGUI.Position = UDim2.new(0, 426, 0, 0)
  588. OpenGUI.Size = UDim2.new(0, 34, 0, 32)
  589. OpenGUI.Font = Enum.Font.SourceSans
  590. OpenGUI.FontSize = Enum.FontSize.Size48
  591. OpenGUI.Text = "X"
  592. OpenGUI.TextColor3 = Color3.new(0.333333, 0, 0)
  593. OpenGUI.TextSize = 40
  594. OpenGUI.TextWrapped = true
  595.  
  596. SideFrameTitle.Name = "SideFrameTitle"
  597. SideFrameTitle.Parent = SideFrame
  598. SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  599. SideFrameTitle.BackgroundTransparency = 1
  600. SideFrameTitle.Position = UDim2.new(0, 170, 0, 0)
  601. SideFrameTitle.Size = UDim2.new(0, 119, 0, 31)
  602. SideFrameTitle.Font = Enum.Font.Arial
  603. SideFrameTitle.FontSize = Enum.FontSize.Size24
  604. SideFrameTitle.Text = "¦Energize¦"
  605. SideFrameTitle.TextSize = 21
  606. SideFrameTitle.TextStrokeColor3 = Color3.new(0.27451, 0.92549, 0.905882)
  607. SideFrameTitle.TextStrokeTransparency = 0.69999998807907
  608.  
  609. MainFrame.Name = "MainFrame"
  610. MainFrame.Parent = Energize
  611. MainFrame.Active = true
  612. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  613. MainFrame.BackgroundTransparency = 1
  614. MainFrame.Draggable = true
  615. MainFrame.Position = UDim2.new(0, 376, 0, 125)
  616. MainFrame.Size = UDim2.new(0, 444, 0, 280)
  617.  
  618. GuiBottomFrame.Name = "Gui BottomFrame"
  619. GuiBottomFrame.Parent = MainFrame
  620. GuiBottomFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  621. GuiBottomFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  622. GuiBottomFrame.Position = UDim2.new(0, 0, 0, 247)
  623. GuiBottomFrame.Size = UDim2.new(0, 460, 0, 32)
  624.  
  625. Credits.Name = "Credits"
  626. Credits.Parent = GuiBottomFrame
  627. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  628. Credits.BackgroundTransparency = 1
  629. Credits.Size = UDim2.new(0, 460, 0, 32)
  630. Credits.FontSize = Enum.FontSize.Size14
  631. Credits.Text = "By illremember Β¦FE Animations Gui"
  632. Credits.TextColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  633. Credits.TextSize = 14
  634. Credits.TextStrokeColor3 = Color3.new(0.141176, 0.870588, 0.713726)
  635. Credits.TextStrokeTransparency = 0.69999998807907
  636. Credits.TextWrapped = true
  637.  
  638. ScrollingFrame.Parent = MainFrame
  639. ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
  640. ScrollingFrame.Position = UDim2.new(0, 0, 0, 32)
  641. ScrollingFrame.Size = UDim2.new(0, 460, 0, 215)
  642. ScrollingFrame.ScrollBarThickness = 13
  643.  
  644. FullSwing.Name = "FullSwing"
  645. FullSwing.Parent = ScrollingFrame
  646. FullSwing.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  647. FullSwing.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  648. FullSwing.Position = UDim2.new(0, 17, 0, 322)
  649. FullSwing.Size = UDim2.new(0, 119, 0, 34)
  650. FullSwing.Font = Enum.Font.Highway
  651. FullSwing.FontSize = Enum.FontSize.Size24
  652. FullSwing.Text = "Full Swing"
  653. FullSwing.TextSize = 20
  654. FullSwing.TextWrapped = true
  655.  
  656. GlitchLevitate.Name = "GlitchLevitate"
  657. GlitchLevitate.Parent = ScrollingFrame
  658. GlitchLevitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  659. GlitchLevitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  660. GlitchLevitate.Position = UDim2.new(0, 319, 0, 322)
  661. GlitchLevitate.Size = UDim2.new(0, 119, 0, 34)
  662. GlitchLevitate.Font = Enum.Font.Highway
  663. GlitchLevitate.FontSize = Enum.FontSize.Size24
  664. GlitchLevitate.Text = "Glitch Levitate"
  665. GlitchLevitate.TextSize = 20
  666. GlitchLevitate.TextWrapped = true
  667.  
  668. MoonDance.Name = "MoonDance"
  669. MoonDance.Parent = ScrollingFrame
  670. MoonDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  671. MoonDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  672. MoonDance.Position = UDim2.new(0, 319, 0, 280)
  673. MoonDance.Size = UDim2.new(0, 119, 0, 34)
  674. MoonDance.Font = Enum.Font.Highway
  675. MoonDance.FontSize = Enum.FontSize.Size24
  676. MoonDance.Text = "Moon Dance"
  677. MoonDance.TextSize = 20
  678. MoonDance.TextWrapped = true
  679.  
  680. FullPunch.Name = "FullPunch"
  681. FullPunch.Parent = ScrollingFrame
  682. FullPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  683. FullPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  684. FullPunch.Position = UDim2.new(0, 17, 0, 280)
  685. FullPunch.Size = UDim2.new(0, 119, 0, 34)
  686. FullPunch.Font = Enum.Font.Highway
  687. FullPunch.FontSize = Enum.FontSize.Size24
  688. FullPunch.Text = "Full Punch"
  689. FullPunch.TextSize = 20
  690. FullPunch.TextWrapped = true
  691.  
  692. Crouch.Name = "Crouch"
  693. Crouch.Parent = ScrollingFrame
  694. Crouch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  695. Crouch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  696. Crouch.Position = UDim2.new(0, 168, 0, 280)
  697. Crouch.Size = UDim2.new(0, 119, 0, 34)
  698. Crouch.Font = Enum.Font.Highway
  699. Crouch.FontSize = Enum.FontSize.Size24
  700. Crouch.Text = "Crouch"
  701. Crouch.TextSize = 20
  702. Crouch.TextWrapped = true
  703.  
  704. SpinDance.Name = "SpinDance"
  705. SpinDance.Parent = ScrollingFrame
  706. SpinDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  707. SpinDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  708. SpinDance.Position = UDim2.new(0, 168, 0, 236)
  709. SpinDance.Size = UDim2.new(0, 119, 0, 34)
  710. SpinDance.Font = Enum.Font.Highway
  711. SpinDance.FontSize = Enum.FontSize.Size24
  712. SpinDance.Text = "Spin Dance"
  713. SpinDance.TextSize = 20
  714. SpinDance.TextWrapped = true
  715.  
  716. FloorFaint.Name = "FloorFaint"
  717. FloorFaint.Parent = ScrollingFrame
  718. FloorFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  719. FloorFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  720. FloorFaint.Position = UDim2.new(0, 17, 0, 236)
  721. FloorFaint.Size = UDim2.new(0, 119, 0, 34)
  722. FloorFaint.Font = Enum.Font.Highway
  723. FloorFaint.FontSize = Enum.FontSize.Size24
  724. FloorFaint.Text = "Floor Faint"
  725. FloorFaint.TextSize = 20
  726. FloorFaint.TextWrapped = true
  727.  
  728. JumpingJacks.Name = "JumpingJacks"
  729. JumpingJacks.Parent = ScrollingFrame
  730. JumpingJacks.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  731. JumpingJacks.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  732. JumpingJacks.Position = UDim2.new(0, 319, 0, 236)
  733. JumpingJacks.Size = UDim2.new(0, 119, 0, 34)
  734. JumpingJacks.Font = Enum.Font.Highway
  735. JumpingJacks.FontSize = Enum.FontSize.Size24
  736. JumpingJacks.Text = "Jumping Jacks"
  737. JumpingJacks.TextSize = 20
  738. JumpingJacks.TextWrapped = true
  739.  
  740. Spinner.Name = "Spinner"
  741. Spinner.Parent = ScrollingFrame
  742. Spinner.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  743. Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  744. Spinner.Position = UDim2.new(0, 17, 0, 192)
  745. Spinner.Size = UDim2.new(0, 119, 0, 34)
  746. Spinner.Font = Enum.Font.Highway
  747. Spinner.FontSize = Enum.FontSize.Size24
  748. Spinner.Text = "Spinner"
  749. Spinner.TextSize = 20
  750. Spinner.TextWrapped = true
  751.  
  752. MegaInsane.Name = "MegaInsane"
  753. MegaInsane.Parent = ScrollingFrame
  754. MegaInsane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  755. MegaInsane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  756. MegaInsane.Position = UDim2.new(0, 168, 0, 192)
  757. MegaInsane.Size = UDim2.new(0, 119, 0, 34)
  758. MegaInsane.Font = Enum.Font.Highway
  759. MegaInsane.FontSize = Enum.FontSize.Size24
  760. MegaInsane.Text = "Mega Insane"
  761. MegaInsane.TextSize = 20
  762. MegaInsane.TextWrapped = true
  763.  
  764. ArmDetach.Name = "ArmDetach"
  765. ArmDetach.Parent = ScrollingFrame
  766. ArmDetach.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  767. ArmDetach.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  768. ArmDetach.Position = UDim2.new(0, 319, 0, 192)
  769. ArmDetach.Size = UDim2.new(0, 119, 0, 34)
  770. ArmDetach.Font = Enum.Font.Highway
  771. ArmDetach.FontSize = Enum.FontSize.Size24
  772. ArmDetach.Text = "Arm Detach"
  773. ArmDetach.TextSize = 20
  774. ArmDetach.TextWrapped = true
  775.  
  776. WeirdMove.Name = "WeirdMove"
  777. WeirdMove.Parent = ScrollingFrame
  778. WeirdMove.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  779. WeirdMove.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  780. WeirdMove.Position = UDim2.new(0, 168, 0, 148)
  781. WeirdMove.Size = UDim2.new(0, 119, 0, 34)
  782. WeirdMove.Font = Enum.Font.Highway
  783. WeirdMove.FontSize = Enum.FontSize.Size24
  784. WeirdMove.Text = "Weird Move"
  785. WeirdMove.TextSize = 20
  786. WeirdMove.TextWrapped = true
  787.  
  788. Faint.Name = "Faint"
  789. Faint.Parent = ScrollingFrame
  790. Faint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  791. Faint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  792. Faint.Position = UDim2.new(0, 17, 0, 148)
  793. Faint.Size = UDim2.new(0, 119, 0, 34)
  794. Faint.Font = Enum.Font.Highway
  795. Faint.FontSize = Enum.FontSize.Size24
  796. Faint.Text = "Faint"
  797. Faint.TextSize = 20
  798. Faint.TextWrapped = true
  799.  
  800. CloneIllusion.Name = "CloneIllusion"
  801. CloneIllusion.Parent = ScrollingFrame
  802. CloneIllusion.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  803. CloneIllusion.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  804. CloneIllusion.Position = UDim2.new(0, 319, 0, 148)
  805. CloneIllusion.Size = UDim2.new(0, 119, 0, 34)
  806. CloneIllusion.Font = Enum.Font.Highway
  807. CloneIllusion.FontSize = Enum.FontSize.Size24
  808. CloneIllusion.Text = "Clone Illusion"
  809. CloneIllusion.TextSize = 20
  810. CloneIllusion.TextWrapped = true
  811.  
  812. Levitate.Name = "Levitate"
  813. Levitate.Parent = ScrollingFrame
  814. Levitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  815. Levitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  816. Levitate.Position = UDim2.new(0, 17, 0, 104)
  817. Levitate.Size = UDim2.new(0, 119, 0, 34)
  818. Levitate.Font = Enum.Font.Highway
  819. Levitate.FontSize = Enum.FontSize.Size24
  820. Levitate.Text = "Levitate"
  821. Levitate.TextSize = 20
  822. Levitate.TextWrapped = true
  823.  
  824. DinoWalk.Name = "DinoWalk"
  825. DinoWalk.Parent = ScrollingFrame
  826. DinoWalk.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  827. DinoWalk.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  828. DinoWalk.Position = UDim2.new(0, 168, 0, 104)
  829. DinoWalk.Size = UDim2.new(0, 119, 0, 34)
  830. DinoWalk.Font = Enum.Font.Highway
  831. DinoWalk.FontSize = Enum.FontSize.Size24
  832. DinoWalk.Text = "Dino Walk"
  833. DinoWalk.TextSize = 20
  834. DinoWalk.TextWrapped = true
  835.  
  836. FloorCrawl.Name = "FloorCrawl"
  837. FloorCrawl.Parent = ScrollingFrame
  838. FloorCrawl.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  839. FloorCrawl.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  840. FloorCrawl.Position = UDim2.new(0, 319, 0, 104)
  841. FloorCrawl.Size = UDim2.new(0, 119, 0, 34)
  842. FloorCrawl.Font = Enum.Font.Highway
  843. FloorCrawl.FontSize = Enum.FontSize.Size24
  844. FloorCrawl.Text = "Floor Crawl"
  845. FloorCrawl.TextSize = 20
  846. FloorCrawl.TextWrapped = true
  847.  
  848. SwordSlam.Name = "SwordSlam"
  849. SwordSlam.Parent = ScrollingFrame
  850. SwordSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  851. SwordSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  852. SwordSlam.Position = UDim2.new(0, 319, 0, 60)
  853. SwordSlam.Size = UDim2.new(0, 119, 0, 34)
  854. SwordSlam.Font = Enum.Font.Highway
  855. SwordSlam.FontSize = Enum.FontSize.Size24
  856. SwordSlam.Text = "Sword Slam"
  857. SwordSlam.TextSize = 20
  858. SwordSlam.TextWrapped = true
  859.  
  860. LoopHead.Name = "LoopHead"
  861. LoopHead.Parent = ScrollingFrame
  862. LoopHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  863. LoopHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  864. LoopHead.Position = UDim2.new(0, 168, 0, 60)
  865. LoopHead.Size = UDim2.new(0, 119, 0, 34)
  866. LoopHead.Font = Enum.Font.Highway
  867. LoopHead.FontSize = Enum.FontSize.Size24
  868. LoopHead.Text = "Loop Head"
  869. LoopHead.TextSize = 20
  870. LoopHead.TextWrapped = true
  871.  
  872. HeroJump.Name = "HeroJump"
  873. HeroJump.Parent = ScrollingFrame
  874. HeroJump.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  875. HeroJump.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  876. HeroJump.Position = UDim2.new(0, 17, 0, 60)
  877. HeroJump.Size = UDim2.new(0, 119, 0, 34)
  878. HeroJump.Font = Enum.Font.Highway
  879. HeroJump.FontSize = Enum.FontSize.Size24
  880. HeroJump.Text = "Hero Jump"
  881. HeroJump.TextSize = 20
  882. HeroJump.TextWrapped = true
  883.  
  884. Insane.Name = "Insane"
  885. Insane.Parent = ScrollingFrame
  886. Insane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  887. Insane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  888. Insane.Position = UDim2.new(0, 319, 0, 16)
  889. Insane.Size = UDim2.new(0, 119, 0, 34)
  890. Insane.Font = Enum.Font.Highway
  891. Insane.FontSize = Enum.FontSize.Size24
  892. Insane.Text = "Insane"
  893. Insane.TextSize = 20
  894. Insane.TextWrapped = true
  895.  
  896. FloatingHead.Name = "FloatingHead"
  897. FloatingHead.Parent = ScrollingFrame
  898. FloatingHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  899. FloatingHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  900. FloatingHead.Position = UDim2.new(0, 168, 0, 16)
  901. FloatingHead.Size = UDim2.new(0, 119, 0, 34)
  902. FloatingHead.Font = Enum.Font.Highway
  903. FloatingHead.FontSize = Enum.FontSize.Size24
  904. FloatingHead.Text = "Floating Head"
  905. FloatingHead.TextSize = 20
  906. FloatingHead.TextWrapped = true
  907.  
  908. HeadThrow.Name = "HeadThrow"
  909. HeadThrow.Parent = ScrollingFrame
  910. HeadThrow.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  911. HeadThrow.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  912. HeadThrow.Position = UDim2.new(0, 17, 0, 16)
  913. HeadThrow.Size = UDim2.new(0, 119, 0, 34)
  914. HeadThrow.Font = Enum.Font.Highway
  915. HeadThrow.FontSize = Enum.FontSize.Size24
  916. HeadThrow.Text = "Head Throw"
  917. HeadThrow.TextSize = 20
  918. HeadThrow.TextWrapped = true
  919.  
  920. MovingDance.Name = "MovingDance"
  921. MovingDance.Parent = ScrollingFrame
  922. MovingDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  923. MovingDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  924. MovingDance.Position = UDim2.new(0, 168, 0, 324)
  925. MovingDance.Size = UDim2.new(0, 119, 0, 34)
  926. MovingDance.Font = Enum.Font.Highway
  927. MovingDance.FontSize = Enum.FontSize.Size24
  928. MovingDance.Text = "Moving Dance"
  929. MovingDance.TextSize = 20
  930. MovingDance.TextWrapped = true
  931.  
  932. SuperPunch.Name = "SuperPunch"
  933. SuperPunch.Parent = ScrollingFrame
  934. SuperPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  935. SuperPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  936. SuperPunch.Position = UDim2.new(0, 168, 0, 366)
  937. SuperPunch.Size = UDim2.new(0, 119, 0, 34)
  938. SuperPunch.Font = Enum.Font.Highway
  939. SuperPunch.FontSize = Enum.FontSize.Size24
  940. SuperPunch.Text = "Super Punch"
  941. SuperPunch.TextSize = 20
  942. SuperPunch.TextWrapped = true
  943.  
  944. ArmTurbine.Name = "ArmTurbine"
  945. ArmTurbine.Parent = ScrollingFrame
  946. ArmTurbine.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  947. ArmTurbine.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  948. ArmTurbine.Position = UDim2.new(0, 319, 0, 366)
  949. ArmTurbine.Size = UDim2.new(0, 119, 0, 34)
  950. ArmTurbine.Font = Enum.Font.Highway
  951. ArmTurbine.FontSize = Enum.FontSize.Size24
  952. ArmTurbine.Text = "Arm Turbine"
  953. ArmTurbine.TextSize = 20
  954. ArmTurbine.TextWrapped = true
  955.  
  956. Dab.Name = "Dab"
  957. Dab.Parent = ScrollingFrame
  958. Dab.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  959. Dab.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  960. Dab.Position = UDim2.new(0, 17, 0, 366)
  961. Dab.Size = UDim2.new(0, 119, 0, 34)
  962. Dab.Font = Enum.Font.Highway
  963. Dab.FontSize = Enum.FontSize.Size24
  964. Dab.Text = "Dab"
  965. Dab.TextSize = 20
  966. Dab.TextWrapped = true
  967.  
  968. FloatSit.Name = "FloatSit"
  969. FloatSit.Parent = ScrollingFrame
  970. FloatSit.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  971. FloatSit.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  972. FloatSit.Position = UDim2.new(0, 168, 0, 410)
  973. FloatSit.Size = UDim2.new(0, 119, 0, 34)
  974. FloatSit.Font = Enum.Font.Highway
  975. FloatSit.FontSize = Enum.FontSize.Size24
  976. FloatSit.Text = "Float Sit"
  977. FloatSit.TextSize = 20
  978. FloatSit.TextWrapped = true
  979.  
  980. SuperFaint.Name = "SuperFaint"
  981. SuperFaint.Parent = ScrollingFrame
  982. SuperFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  983. SuperFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  984. SuperFaint.Position = UDim2.new(0, 17, 0, 498)
  985. SuperFaint.Size = UDim2.new(0, 119, 0, 34)
  986. SuperFaint.Font = Enum.Font.Highway
  987. SuperFaint.FontSize = Enum.FontSize.Size24
  988. SuperFaint.Text = "Super Faint"
  989. SuperFaint.TextSize = 20
  990. SuperFaint.TextWrapped = true
  991.  
  992. BarrelRoll.Name = "BarrelRoll"
  993. BarrelRoll.Parent = ScrollingFrame
  994. BarrelRoll.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  995. BarrelRoll.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  996. BarrelRoll.Position = UDim2.new(0, 319, 0, 410)
  997. BarrelRoll.Size = UDim2.new(0, 119, 0, 34)
  998. BarrelRoll.Font = Enum.Font.Highway
  999. BarrelRoll.FontSize = Enum.FontSize.Size24
  1000. BarrelRoll.Text = "Barrel Roll"
  1001. BarrelRoll.TextSize = 20
  1002. BarrelRoll.TextWrapped = true
  1003.  
  1004. Scared.Name = "Scared"
  1005. Scared.Parent = ScrollingFrame
  1006. Scared.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  1007. Scared.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1008. Scared.Position = UDim2.new(0, 319, 0, 454)
  1009. Scared.Size = UDim2.new(0, 119, 0, 34)
  1010. Scared.Font = Enum.Font.Highway
  1011. Scared.FontSize = Enum.FontSize.Size24
  1012. Scared.Text = "Scared"
  1013. Scared.TextSize = 20
  1014. Scared.TextWrapped = true
  1015.  
  1016. InsaneArms.Name = "InsaneArms"
  1017. InsaneArms.Parent = ScrollingFrame
  1018. InsaneArms.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  1019. InsaneArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1020. InsaneArms.Position = UDim2.new(0, 17, 0, 454)
  1021. InsaneArms.Size = UDim2.new(0, 119, 0, 34)
  1022. InsaneArms.Font = Enum.Font.Highway
  1023. InsaneArms.FontSize = Enum.FontSize.Size24
  1024. InsaneArms.Text = "Insane Arms"
  1025. InsaneArms.TextSize = 20
  1026. InsaneArms.TextWrapped = true
  1027.  
  1028. SwordSlice.Name = "SwordSlice"
  1029. SwordSlice.Parent = ScrollingFrame
  1030. SwordSlice.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  1031. SwordSlice.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1032. SwordSlice.Position = UDim2.new(0, 168, 0, 454)
  1033. SwordSlice.Size = UDim2.new(0, 119, 0, 34)
  1034. SwordSlice.Font = Enum.Font.Highway
  1035. SwordSlice.FontSize = Enum.FontSize.Size24
  1036. SwordSlice.Text = "Sword Slice"
  1037. SwordSlice.TextSize = 20
  1038. SwordSlice.TextWrapped = true
  1039.  
  1040. SpinDance2.Name = "SpinDance2"
  1041. SpinDance2.Parent = ScrollingFrame
  1042. SpinDance2.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  1043. SpinDance2.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1044. SpinDance2.Position = UDim2.new(0, 168, 0, 498)
  1045. SpinDance2.Size = UDim2.new(0, 119, 0, 34)
  1046. SpinDance2.Font = Enum.Font.Highway
  1047. SpinDance2.FontSize = Enum.FontSize.Size24
  1048. SpinDance2.Text = "Spin Dance 2"
  1049. SpinDance2.TextSize = 20
  1050. SpinDance2.TextWrapped = true
  1051.  
  1052. BowDown.Name = "BowDown"
  1053. BowDown.Parent = ScrollingFrame
  1054. BowDown.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  1055. BowDown.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1056. BowDown.Position = UDim2.new(0, 319, 0, 498)
  1057. BowDown.Size = UDim2.new(0, 119, 0, 34)
  1058. BowDown.Font = Enum.Font.Highway
  1059. BowDown.FontSize = Enum.FontSize.Size24
  1060. BowDown.Text = "Bow Down"
  1061. BowDown.TextSize = 20
  1062. BowDown.TextWrapped = true
  1063.  
  1064. LoopSlam.Name = "LoopSlam"
  1065. LoopSlam.Parent = ScrollingFrame
  1066. LoopSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  1067. LoopSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1068. LoopSlam.Position = UDim2.new(0, 17, 0, 410)
  1069. LoopSlam.Size = UDim2.new(0, 119, 0, 34)
  1070. LoopSlam.Font = Enum.Font.Highway
  1071. LoopSlam.FontSize = Enum.FontSize.Size24
  1072. LoopSlam.Text = "Loop Slam"
  1073. LoopSlam.TextSize = 20
  1074. LoopSlam.TextWrapped = true
  1075.  
  1076. GuiTopFrame.Name = "Gui TopFrame"
  1077. GuiTopFrame.Parent = MainFrame
  1078. GuiTopFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  1079. GuiTopFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  1080. GuiTopFrame.Size = UDim2.new(0, 460, 0, 32)
  1081.  
  1082. CloseGUI.Name = "CloseGUI"
  1083. CloseGUI.Parent = GuiTopFrame
  1084. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  1085. CloseGUI.BackgroundTransparency = 1
  1086. CloseGUI.Position = UDim2.new(0, 426, 0, 0)
  1087. CloseGUI.Size = UDim2.new(0, 34, 0, 32)
  1088. CloseGUI.Font = Enum.Font.SourceSans
  1089. CloseGUI.FontSize = Enum.FontSize.Size48
  1090. CloseGUI.Text = "X"
  1091. CloseGUI.TextColor3 = Color3.new(0.333333, 0, 0)
  1092. CloseGUI.TextSize = 40
  1093. CloseGUI.TextWrapped = true
  1094.  
  1095. Title.Name = "Title"
  1096. Title.Parent = GuiTopFrame
  1097. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  1098. Title.BackgroundTransparency = 1
  1099. Title.Size = UDim2.new(0, 460, 0, 32)
  1100. Title.FontSize = Enum.FontSize.Size14
  1101. Title.Text = "¦Energize¦"
  1102. Title.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  1103. Title.TextSize = 14
  1104. Title.TextStrokeColor3 = Color3.new(0.384314, 0.917647, 1)
  1105. Title.TextStrokeTransparency = 0.69999998807907
  1106. Title.TextWrapped = true
  1107.  
  1108. CheckR.Name = "CheckR"
  1109. CheckR.Parent = GuiTopFrame
  1110. CheckR.BackgroundColor3 = Color3.new(1, 1, 1)
  1111. CheckR.BackgroundTransparency = 1
  1112. CheckR.Size = UDim2.new(0, 171, 0, 32)
  1113. CheckR.Font = Enum.Font.SourceSansBold
  1114. CheckR.FontSize = Enum.FontSize.Size14
  1115. CheckR.Text = "Text"
  1116. CheckR.TextScaled = true
  1117. CheckR.TextSize = 14
  1118. CheckR.TextWrapped = true
  1119.  
  1120. ScrollingFrameR15.Name = "ScrollingFrameR15"
  1121. ScrollingFrameR15.Parent = MainFrame
  1122. ScrollingFrameR15.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
  1123. ScrollingFrameR15.Position = UDim2.new(0, 0, 0, 32)
  1124. ScrollingFrameR15.Size = UDim2.new(0, 460, 0, 215)
  1125. ScrollingFrameR15.Visible = false
  1126. ScrollingFrameR15.ScrollBarThickness = 13
  1127.  
  1128. CrazySlash.Name = "CrazySlash"
  1129. CrazySlash.Parent = ScrollingFrameR15
  1130. CrazySlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1131. CrazySlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1132. CrazySlash.Position = UDim2.new(0, 17, 0, 16)
  1133. CrazySlash.Size = UDim2.new(0, 119, 0, 34)
  1134. CrazySlash.Font = Enum.Font.Highway
  1135. CrazySlash.FontSize = Enum.FontSize.Size24
  1136. CrazySlash.Text = "CrazySlash"
  1137. CrazySlash.TextSize = 20
  1138. CrazySlash.TextWrapped = true
  1139.  
  1140. Open.Name = "Open"
  1141. Open.Parent = ScrollingFrameR15
  1142. Open.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1143. Open.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1144. Open.Position = UDim2.new(0, 168, 0, 16)
  1145. Open.Size = UDim2.new(0, 119, 0, 34)
  1146. Open.Font = Enum.Font.Highway
  1147. Open.FontSize = Enum.FontSize.Size24
  1148. Open.Text = "Open"
  1149. Open.TextSize = 20
  1150. Open.TextWrapped = true
  1151.  
  1152. R15Spinner.Name = "R15Spinner"
  1153. R15Spinner.Parent = ScrollingFrameR15
  1154. R15Spinner.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1155. R15Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1156. R15Spinner.Position = UDim2.new(0, 17, 0, 60)
  1157. R15Spinner.Size = UDim2.new(0, 119, 0, 34)
  1158. R15Spinner.Font = Enum.Font.Highway
  1159. R15Spinner.FontSize = Enum.FontSize.Size24
  1160. R15Spinner.Text = "Spinner"
  1161. R15Spinner.TextSize = 20
  1162. R15Spinner.TextWrapped = true
  1163.  
  1164. ArmsOut.Name = "ArmsOut"
  1165. ArmsOut.Parent = ScrollingFrameR15
  1166. ArmsOut.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1167. ArmsOut.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1168. ArmsOut.Position = UDim2.new(0, 319, 0, 16)
  1169. ArmsOut.Size = UDim2.new(0, 119, 0, 34)
  1170. ArmsOut.Font = Enum.Font.Highway
  1171. ArmsOut.FontSize = Enum.FontSize.Size24
  1172. ArmsOut.Text = "ArmsOut"
  1173. ArmsOut.TextSize = 20
  1174. ArmsOut.TextWrapped = true
  1175.  
  1176. FloatSlash.Name = "FloatSlash"
  1177. FloatSlash.Parent = ScrollingFrameR15
  1178. FloatSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1179. FloatSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1180. FloatSlash.Position = UDim2.new(0, 168, 0, 148)
  1181. FloatSlash.Size = UDim2.new(0, 119, 0, 34)
  1182. FloatSlash.Font = Enum.Font.Highway
  1183. FloatSlash.FontSize = Enum.FontSize.Size24
  1184. FloatSlash.Text = "FloatSlash"
  1185. FloatSlash.TextSize = 20
  1186. FloatSlash.TextWrapped = true
  1187.  
  1188. WeirdZombie.Name = "WeirdZombie"
  1189. WeirdZombie.Parent = ScrollingFrameR15
  1190. WeirdZombie.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1191. WeirdZombie.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1192. WeirdZombie.Position = UDim2.new(0, 17, 0, 148)
  1193. WeirdZombie.Size = UDim2.new(0, 119, 0, 34)
  1194. WeirdZombie.Font = Enum.Font.Highway
  1195. WeirdZombie.FontSize = Enum.FontSize.Size24
  1196. WeirdZombie.Text = "WeirdZombie"
  1197. WeirdZombie.TextSize = 20
  1198. WeirdZombie.TextWrapped = true
  1199.  
  1200. DownSlash.Name = "DownSlash"
  1201. DownSlash.Parent = ScrollingFrameR15
  1202. DownSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1203. DownSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1204. DownSlash.Position = UDim2.new(0, 319, 0, 148)
  1205. DownSlash.Size = UDim2.new(0, 119, 0, 34)
  1206. DownSlash.Font = Enum.Font.Highway
  1207. DownSlash.FontSize = Enum.FontSize.Size24
  1208. DownSlash.Text = "DownSlash"
  1209. DownSlash.TextSize = 20
  1210. DownSlash.TextWrapped = true
  1211.  
  1212. Pull.Name = "Pull"
  1213. Pull.Parent = ScrollingFrameR15
  1214. Pull.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1215. Pull.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1216. Pull.Position = UDim2.new(0, 17, 0, 104)
  1217. Pull.Size = UDim2.new(0, 119, 0, 34)
  1218. Pull.Font = Enum.Font.Highway
  1219. Pull.FontSize = Enum.FontSize.Size24
  1220. Pull.Text = "Pull"
  1221. Pull.TextSize = 20
  1222. Pull.TextWrapped = true
  1223.  
  1224. CircleArm.Name = "CircleArm"
  1225. CircleArm.Parent = ScrollingFrameR15
  1226. CircleArm.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1227. CircleArm.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1228. CircleArm.Position = UDim2.new(0, 168, 0, 104)
  1229. CircleArm.Size = UDim2.new(0, 119, 0, 34)
  1230. CircleArm.Font = Enum.Font.Highway
  1231. CircleArm.FontSize = Enum.FontSize.Size24
  1232. CircleArm.Text = "CircleArm"
  1233. CircleArm.TextSize = 20
  1234. CircleArm.TextWrapped = true
  1235.  
  1236. Bend.Name = "Bend"
  1237. Bend.Parent = ScrollingFrameR15
  1238. Bend.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1239. Bend.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1240. Bend.Position = UDim2.new(0, 319, 0, 104)
  1241. Bend.Size = UDim2.new(0, 119, 0, 34)
  1242. Bend.Font = Enum.Font.Highway
  1243. Bend.FontSize = Enum.FontSize.Size24
  1244. Bend.Text = "Bend"
  1245. Bend.TextSize = 20
  1246. Bend.TextWrapped = true
  1247.  
  1248. RotateSlash.Name = "RotateSlash"
  1249. RotateSlash.Parent = ScrollingFrameR15
  1250. RotateSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1251. RotateSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1252. RotateSlash.Position = UDim2.new(0, 319, 0, 60)
  1253. RotateSlash.Size = UDim2.new(0, 119, 0, 34)
  1254. RotateSlash.Font = Enum.Font.Highway
  1255. RotateSlash.FontSize = Enum.FontSize.Size24
  1256. RotateSlash.Text = "RotateSlash"
  1257. RotateSlash.TextSize = 20
  1258. RotateSlash.TextWrapped = true
  1259.  
  1260. FlingArms.Name = "FlingArms"
  1261. FlingArms.Parent = ScrollingFrameR15
  1262. FlingArms.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  1263. FlingArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  1264. FlingArms.Position = UDim2.new(0, 168, 0, 60)
  1265. FlingArms.Size = UDim2.new(0, 119, 0, 34)
  1266. FlingArms.Font = Enum.Font.Highway
  1267. FlingArms.FontSize = Enum.FontSize.Size24
  1268. FlingArms.Text = "FlingArms"
  1269. FlingArms.TextSize = 20
  1270. FlingArms.TextWrapped = true
  1271.  
  1272. -- Buttons
  1273. col = Color3.new(0.886275, 0.776471, 0.368627)
  1274. loc = Color3.new(1, 0.906471, 0.568627)
  1275. rcol = Color3.new(0.682353, 0.701961, 0.792157)
  1276. rloc = Color3.new(0.882353, 0.901961, 0.992157)
  1277.  
  1278. CloseGUI.MouseButton1Click:connect(function()
  1279. MainFrame.Visible = false
  1280. SideFrame.Visible = true
  1281. SideFrame.Position = MainFrame.Position
  1282. end)
  1283.  
  1284. OpenGUI.MouseButton1Click:connect(function()
  1285. MainFrame.Visible = true
  1286. SideFrame.Visible = false
  1287. MainFrame.Position = SideFrame.Position
  1288. end)
  1289.  
  1290. if (game:GetService"Players".LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15) then
  1291. ScrollingFrame.Visible = false
  1292. ScrollingFrameR15.Visible = true
  1293. CheckR.Text = "Showing R15 Animations"
  1294. else
  1295. ScrollingFrame.Visible = true
  1296. ScrollingFrameR15.Visible = false
  1297. CheckR.Text = "Showing R6 Animations"
  1298. end
  1299.  
  1300. local Anim = Instance.new("Animation")
  1301. Anim.AnimationId = "rbxassetid://35154961"
  1302. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1303. local HeadThrowACTIVE = false
  1304. HeadThrow.MouseButton1Click:connect(function()
  1305. HeadThrowACTIVE = not HeadThrowACTIVE
  1306. if HeadThrowACTIVE then
  1307. HeadThrow.BackgroundColor3 = loc
  1308. while wait() do
  1309. if track.IsPlaying == false then
  1310. if HeadThrowACTIVE then
  1311. track:Play(.1, 1, 1)
  1312. end
  1313. end
  1314. end
  1315. else
  1316. track:Stop()
  1317. HeadThrow.BackgroundColor3 = col
  1318. end
  1319. end)
  1320.  
  1321. local Anim = Instance.new("Animation")
  1322. Anim.AnimationId = "rbxassetid://121572214"
  1323. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1324. local FloatingHeadACTIVE = false
  1325. FloatingHead.MouseButton1Click:connect(function()
  1326. FloatingHeadACTIVE = not FloatingHeadACTIVE
  1327. if FloatingHeadACTIVE then
  1328. track:Play(.1, 1, 1)
  1329. FloatingHead.BackgroundColor3 = loc
  1330. else
  1331. track:Stop()
  1332. FloatingHead.BackgroundColor3 = col
  1333. end
  1334. end)
  1335.  
  1336. local Anim = Instance.new("Animation")
  1337. Anim.AnimationId = "rbxassetid://182724289"
  1338. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1339. local CrouchACTIVE = false
  1340. Crouch.MouseButton1Click:connect(function()
  1341. CrouchACTIVE = not CrouchACTIVE
  1342. if CrouchACTIVE then
  1343. track:Play(.1, 1, 1)
  1344. Crouch.BackgroundColor3 = loc
  1345. else
  1346. track:Stop()
  1347. Crouch.BackgroundColor3 = col
  1348. end
  1349. end)
  1350.  
  1351. local Anim = Instance.new("Animation")
  1352. Anim.AnimationId = "rbxassetid://282574440"
  1353. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1354. local FloorCrawlACTIVE = false
  1355. FloorCrawl.MouseButton1Click:connect(function()
  1356. FloorCrawlACTIVE = not FloorCrawlACTIVE
  1357. if FloorCrawlACTIVE then
  1358. track:Play(.1, 1, 1)
  1359. FloorCrawl.BackgroundColor3 = loc
  1360. else
  1361. track:Stop()
  1362. FloorCrawl.BackgroundColor3 = col
  1363. end
  1364. end)
  1365.  
  1366. local Anim = Instance.new("Animation")
  1367. Anim.AnimationId = "rbxassetid://204328711"
  1368. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1369. local DinoWalkACTIVE = false
  1370. DinoWalk.MouseButton1Click:connect(function()
  1371. DinoWalkACTIVE = not DinoWalkACTIVE
  1372. if DinoWalkACTIVE then
  1373. track:Play(.1, 1, 1)
  1374. DinoWalk.BackgroundColor3 = loc
  1375. else
  1376. track:Stop()
  1377. DinoWalk.BackgroundColor3 = col
  1378. end
  1379. end)
  1380.  
  1381. local Anim = Instance.new("Animation")
  1382. Anim.AnimationId = "rbxassetid://429681631"
  1383. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1384. local JumpingJacksACTIVE = false
  1385. JumpingJacks.MouseButton1Click:connect(function()
  1386. JumpingJacksACTIVE = not JumpingJacksACTIVE
  1387. if JumpingJacksACTIVE then
  1388. track:Play(.1, 1, 1)
  1389. JumpingJacks.BackgroundColor3 = loc
  1390. else
  1391. track:Stop()
  1392. JumpingJacks.BackgroundColor3 = col
  1393. end
  1394. end)
  1395.  
  1396. local Anim = Instance.new("Animation")
  1397. Anim.AnimationId = "rbxassetid://35154961"
  1398. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1399. local LoopHeadACTIVE = false
  1400. LoopHead.MouseButton1Click:connect(function()
  1401. LoopHeadACTIVE = not LoopHeadACTIVE
  1402. if LoopHeadACTIVE then
  1403. LoopHead.BackgroundColor3 = loc
  1404. while wait() do
  1405. if track.IsPlaying == false then
  1406. if LoopHeadACTIVE then
  1407. track:Play(.5, 1, 1e6)
  1408. end
  1409. end
  1410. end
  1411. else
  1412. track:Stop()
  1413. LoopHead.BackgroundColor3 = col
  1414. end
  1415. end)
  1416.  
  1417. local Anim = Instance.new("Animation")
  1418. Anim.AnimationId = "rbxassetid://184574340"
  1419. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1420. local HeroJumpACTIVE = false
  1421. HeroJump.MouseButton1Click:connect(function()
  1422. HeroJumpACTIVE = not HeroJumpACTIVE
  1423. if HeroJumpACTIVE then
  1424. HeroJump.BackgroundColor3 = loc
  1425. while wait() do
  1426. if track.IsPlaying == false then
  1427. if HeroJumpACTIVE then
  1428. track:Play(.1, 1, 1)
  1429. end
  1430. end
  1431. end
  1432. else
  1433. track:Stop()
  1434. HeroJump.BackgroundColor3 = col
  1435. end
  1436. end)
  1437.  
  1438. local Anim = Instance.new("Animation")
  1439. Anim.AnimationId = "rbxassetid://181526230"
  1440. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1441. local FaintACTIVE = false
  1442. Faint.MouseButton1Click:connect(function()
  1443. FaintACTIVE = not FaintACTIVE
  1444. if FaintACTIVE then
  1445. track:Play(.1, 1, 1)
  1446. Faint.BackgroundColor3 = loc
  1447. else
  1448. track:Stop()
  1449. Faint.BackgroundColor3 = col
  1450. end
  1451. end)
  1452.  
  1453. local Anim = Instance.new("Animation")
  1454. Anim.AnimationId = "rbxassetid://181525546"
  1455. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1456. local FloorFaintACTIVE = false
  1457. FloorFaint.MouseButton1Click:connect(function()
  1458. FloorFaintACTIVE = not FloorFaintACTIVE
  1459. if FloorFaintACTIVE then
  1460. FloorFaint.BackgroundColor3 = loc
  1461. while wait() do
  1462. if track.IsPlaying == false then
  1463. if FloorFaintACTIVE then
  1464. track:Play(.1, 1, 2)
  1465. end
  1466. end
  1467. end
  1468. else
  1469. track:Stop()
  1470. FloorFaint.BackgroundColor3 = col
  1471. end
  1472. end)
  1473.  
  1474. local Anim = Instance.new("Animation")
  1475. Anim.AnimationId = "rbxassetid://181525546"
  1476. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1477. local SuperFaintACTIVE = false
  1478. SuperFaint.MouseButton1Click:connect(function()
  1479. SuperFaintACTIVE = not SuperFaintACTIVE
  1480. if SuperFaintACTIVE then
  1481. SuperFaint.BackgroundColor3 = loc
  1482. while wait() do
  1483. if track.IsPlaying == false then
  1484. if SuperFaintACTIVE then
  1485. track:Play(.1, 0.5, 40)
  1486. end
  1487. end
  1488. end
  1489. else
  1490. track:Stop()
  1491. SuperFaint.BackgroundColor3 = col
  1492. end
  1493. end)
  1494.  
  1495. local Anim = Instance.new("Animation")
  1496. Anim.AnimationId = "rbxassetid://313762630"
  1497. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1498. local LevitateACTIVE = false
  1499. Levitate.MouseButton1Click:connect(function()
  1500. LevitateACTIVE = not LevitateACTIVE
  1501. if LevitateACTIVE then
  1502. track:Play(.1, 1, 1)
  1503. Levitate.BackgroundColor3 = loc
  1504. else
  1505. track:Stop()
  1506. Levitate.BackgroundColor3 = col
  1507. end
  1508. end)
  1509.  
  1510. local Anim = Instance.new("Animation")
  1511. Anim.AnimationId = "rbxassetid://183412246"
  1512. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1513. local DabACTIVE = false
  1514. Dab.MouseButton1Click:connect(function()
  1515. DabACTIVE = not DabACTIVE
  1516. if DabACTIVE then
  1517. Dab.BackgroundColor3 = loc
  1518. while wait() do
  1519. if track.IsPlaying == false then
  1520. if DabACTIVE then
  1521. track:Play(.1, 1, 1)
  1522. end
  1523. end
  1524. end
  1525. else
  1526. track:Stop()
  1527. Dab.BackgroundColor3 = col
  1528. end
  1529. end)
  1530.  
  1531. local Anim = Instance.new("Animation")
  1532. Anim.AnimationId = "rbxassetid://188632011"
  1533. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1534. local SpinACTIVE = false
  1535. Spinner.MouseButton1Click:connect(function()
  1536. SpinACTIVE = not SpinACTIVE
  1537. if SpinACTIVE then
  1538. Spinner.BackgroundColor3 = loc
  1539. while wait() do
  1540. if track.IsPlaying == false then
  1541. if SpinACTIVE then
  1542. track:Play(.1, 1, 2)
  1543. end
  1544. end
  1545. end
  1546. else
  1547. track:Stop()
  1548. Spinner.BackgroundColor3 = col
  1549. end
  1550. end)
  1551.  
  1552. local Anim = Instance.new("Animation")
  1553. Anim.AnimationId = "rbxassetid://179224234"
  1554. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1555. local FloatSitACTIVE = false
  1556. FloatSit.MouseButton1Click:connect(function()
  1557. FloatSitACTIVE = not FloatSitACTIVE
  1558. if FloatSitACTIVE then
  1559. track:Play(.1, 1, 1)
  1560. FloatSit.BackgroundColor3 = loc
  1561. else
  1562. track:Stop()
  1563. FloatSit.BackgroundColor3 = col
  1564. end
  1565. end)
  1566.  
  1567. local Anim = Instance.new("Animation")
  1568. Anim.AnimationId = "rbxassetid://429703734"
  1569. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1570. local MovingDanceACTIVE = false
  1571. MovingDance.MouseButton1Click:connect(function()
  1572. MovingDanceACTIVE = not MovingDanceACTIVE
  1573. if MovingDanceACTIVE then
  1574. MovingDance.BackgroundColor3 = loc
  1575. while wait() do
  1576. if track.IsPlaying == false then
  1577. if MovingDanceACTIVE then
  1578. track:Play(.1, 1, 1)
  1579. end
  1580. end
  1581. end
  1582. else
  1583. track:Stop()
  1584. MovingDance.BackgroundColor3 = col
  1585. end
  1586. end)
  1587.  
  1588. local Anim = Instance.new("Animation")
  1589. Anim.AnimationId = "rbxassetid://215384594"
  1590. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1591. local WeirdMoveACTIVE = false
  1592. WeirdMove.MouseButton1Click:connect(function()
  1593. WeirdMoveACTIVE = not WeirdMoveACTIVE
  1594. if WeirdMoveACTIVE then
  1595. track:Play(.1, 1, 1)
  1596. WeirdMove.BackgroundColor3 = loc
  1597. else
  1598. track:Stop()
  1599. WeirdMove.BackgroundColor3 = col
  1600. end
  1601. end)
  1602.  
  1603. local Anim = Instance.new("Animation")
  1604. Anim.AnimationId = "rbxassetid://215384594"
  1605. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1606. local CloneIllusionACTIVE = false
  1607. CloneIllusion.MouseButton1Click:connect(function()
  1608. CloneIllusionACTIVE = not CloneIllusionACTIVE
  1609. if CloneIllusionACTIVE then
  1610. track:Play(.5, 1, 1e7)
  1611. CloneIllusion.BackgroundColor3 = loc
  1612. else
  1613. track:Stop()
  1614. CloneIllusion.BackgroundColor3 = col
  1615. end
  1616. end)
  1617.  
  1618. local Anim = Instance.new("Animation")
  1619. Anim.AnimationId = "rbxassetid://313762630"
  1620. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1621. local GlitchLevitateACTIVE = false
  1622. GlitchLevitate.MouseButton1Click:connect(function()
  1623. GlitchLevitateACTIVE = not GlitchLevitateACTIVE
  1624. if GlitchLevitateACTIVE then
  1625. track:Play(.5, 1, 1e7)
  1626. GlitchLevitate.BackgroundColor3 = loc
  1627. else
  1628. track:Stop()
  1629. GlitchLevitate.BackgroundColor3 = col
  1630. end
  1631. end)
  1632.  
  1633. local Anim = Instance.new("Animation")
  1634. Anim.AnimationId = "rbxassetid://429730430"
  1635. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1636. local SpinDanceACTIVE = false
  1637. SpinDance.MouseButton1Click:connect(function()
  1638. SpinDanceACTIVE = not SpinDanceACTIVE
  1639. if SpinDanceACTIVE then
  1640. SpinDance.BackgroundColor3 = loc
  1641. while wait() do
  1642. if track.IsPlaying == false then
  1643. if SpinDanceACTIVE then
  1644. track:Play(.1, 1, 1)
  1645. end
  1646. end
  1647. end
  1648. else
  1649. track:Stop()
  1650. SpinDance.BackgroundColor3 = col
  1651. end
  1652. end)
  1653.  
  1654. local Anim = Instance.new("Animation")
  1655. Anim.AnimationId = "rbxassetid://45834924"
  1656. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1657. local MoonDanceACTIVE = false
  1658. MoonDance.MouseButton1Click:connect(function()
  1659. MoonDanceACTIVE = not MoonDanceACTIVE
  1660. if MoonDanceACTIVE then
  1661. MoonDance.BackgroundColor3 = loc
  1662. while wait() do
  1663. if track.IsPlaying == false then
  1664. if MoonDanceACTIVE then
  1665. track:Play(.1, 1, 1)
  1666. end
  1667. end
  1668. end
  1669. else
  1670. track:Stop()
  1671. MoonDance.BackgroundColor3 = col
  1672. end
  1673. end)
  1674.  
  1675. local Anim = Instance.new("Animation")
  1676. Anim.AnimationId = "rbxassetid://204062532"
  1677. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1678. local FullPunchACTIVE = false
  1679. FullPunch.MouseButton1Click:connect(function()
  1680. FullPunchACTIVE = not FullPunchACTIVE
  1681. if FullPunchACTIVE then
  1682. FullPunch.BackgroundColor3 = loc
  1683. while wait() do
  1684. if track.IsPlaying == false then
  1685. if FullPunchACTIVE then
  1686. track:Play(.1, 1, 1)
  1687. end
  1688. end
  1689. end
  1690. else
  1691. track:Stop()
  1692. FullPunch.BackgroundColor3 = col
  1693. end
  1694. end)
  1695.  
  1696. local Anim = Instance.new("Animation")
  1697. Anim.AnimationId = "rbxassetid://186934910"
  1698. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1699. local SpinDance2ACTIVE = false
  1700. SpinDance2.MouseButton1Click:connect(function()
  1701. SpinDance2ACTIVE = not SpinDance2ACTIVE
  1702. if SpinDance2ACTIVE then
  1703. SpinDance2.BackgroundColor3 = loc
  1704. while wait() do
  1705. if track.IsPlaying == false then
  1706. if SpinDance2ACTIVE then
  1707. track:Play(.1, 1, 1)
  1708. end
  1709. end
  1710. end
  1711. else
  1712. track:Stop()
  1713. SpinDance2.BackgroundColor3 = col
  1714. end
  1715. end)
  1716.  
  1717. local Anim = Instance.new("Animation")
  1718. Anim.AnimationId = "rbxassetid://204292303"
  1719. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1720. local BowDownACTIVE = false
  1721. BowDown.MouseButton1Click:connect(function()
  1722. BowDownACTIVE = not BowDownACTIVE
  1723. if BowDownACTIVE then
  1724. BowDown.BackgroundColor3 = loc
  1725. while wait() do
  1726. if track.IsPlaying == false then
  1727. if BowDownACTIVE then
  1728. track:Play(.1, 1, 3)
  1729. end
  1730. end
  1731. end
  1732. else
  1733. track:Stop()
  1734. BowDown.BackgroundColor3 = col
  1735. end
  1736. end)
  1737.  
  1738. local Anim = Instance.new("Animation")
  1739. Anim.AnimationId = "rbxassetid://204295235"
  1740. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1741. local SwordSlamACTIVE = false
  1742. SwordSlam.MouseButton1Click:connect(function()
  1743. SwordSlamACTIVE = not SwordSlamACTIVE
  1744. if SwordSlamACTIVE then
  1745. SwordSlam.BackgroundColor3 = loc
  1746. while wait() do
  1747. if track.IsPlaying == false then
  1748. if SwordSlamACTIVE then
  1749. track:Play(.1, 1, 1)
  1750. end
  1751. end
  1752. end
  1753. else
  1754. track:Stop()
  1755. SwordSlam.BackgroundColor3 = col
  1756. end
  1757. end)
  1758.  
  1759. local Anim = Instance.new("Animation")
  1760. Anim.AnimationId = "rbxassetid://204295235"
  1761. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1762. local LoopSlamACTIVE = false
  1763. LoopSlam.MouseButton1Click:connect(function()
  1764. LoopSlamACTIVE = not LoopSlamACTIVE
  1765. if LoopSlamACTIVE then
  1766. LoopSlam.BackgroundColor3 = loc
  1767. while wait() do
  1768. if track.IsPlaying == false then
  1769. if LoopSlamACTIVE then
  1770. track:Play(.1, 1, 1e4)
  1771. end
  1772. end
  1773. end
  1774. else
  1775. track:Stop()
  1776. LoopSlam.BackgroundColor3 = col
  1777. end
  1778. end)
  1779.  
  1780. local Anim = Instance.new("Animation")
  1781. Anim.AnimationId = "rbxassetid://184574340"
  1782. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1783. local MegaInsaneACTIVE = false
  1784. MegaInsane.MouseButton1Click:connect(function()
  1785. MegaInsaneACTIVE = not MegaInsaneACTIVE
  1786. if MegaInsaneACTIVE then
  1787. MegaInsane.BackgroundColor3 = loc
  1788. while wait() do
  1789. if track.IsPlaying == false then
  1790. if MegaInsaneACTIVE then
  1791. track:Play(.1, 0.5, 40)
  1792. end
  1793. end
  1794. end
  1795. else
  1796. track:Stop()
  1797. MegaInsane.BackgroundColor3 = col
  1798. end
  1799. end)
  1800.  
  1801. local Anim = Instance.new("Animation")
  1802. Anim.AnimationId = "rbxassetid://126753849"
  1803. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1804. local SuperPunchACTIVE = false
  1805. SuperPunch.MouseButton1Click:connect(function()
  1806. SuperPunchACTIVE = not SuperPunchACTIVE
  1807. if SuperPunchACTIVE then
  1808. SuperPunch.BackgroundColor3 = loc
  1809. while wait() do
  1810. if track.IsPlaying == false then
  1811. if SuperPunchACTIVE then
  1812. track:Play(.1, 1, 3)
  1813. end
  1814. end
  1815. end
  1816. else
  1817. track:Stop()
  1818. SuperPunch.BackgroundColor3 = col
  1819. end
  1820. end)
  1821.  
  1822. local Anim = Instance.new("Animation")
  1823. Anim.AnimationId = "rbxassetid://218504594"
  1824. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1825. local FullSwingACTIVE = false
  1826. FullSwing.MouseButton1Click:connect(function()
  1827. FullSwingACTIVE = not FullSwingACTIVE
  1828. if FullSwingACTIVE then
  1829. FullSwing.BackgroundColor3 = loc
  1830. while wait() do
  1831. if track.IsPlaying == false then
  1832. if FullSwingACTIVE then
  1833. track:Play(.1, 1, 1)
  1834. end
  1835. end
  1836. end
  1837. else
  1838. track:Stop()
  1839. FullSwing.BackgroundColor3 = col
  1840. end
  1841. end)
  1842.  
  1843. local Anim = Instance.new("Animation")
  1844. Anim.AnimationId = "rbxassetid://259438880"
  1845. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1846. local ArmTurbineACTIVE = false
  1847. ArmTurbine.MouseButton1Click:connect(function()
  1848. ArmTurbineACTIVE = not ArmTurbineACTIVE
  1849. if ArmTurbineACTIVE then
  1850. track:Play(.1, 1, 1e3)
  1851. ArmTurbine.BackgroundColor3 = loc
  1852. else
  1853. track:Stop()
  1854. ArmTurbine.BackgroundColor3 = col
  1855. end
  1856. end)
  1857.  
  1858. local Anim = Instance.new("Animation")
  1859. Anim.AnimationId = "rbxassetid://136801964"
  1860. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1861. local BarrelRollACTIVE = false
  1862. BarrelRoll.MouseButton1Click:connect(function()
  1863. BarrelRollACTIVE = not BarrelRollACTIVE
  1864. if BarrelRollACTIVE then
  1865. BarrelRoll.BackgroundColor3 = loc
  1866. while wait() do
  1867. if track.IsPlaying == false then
  1868. if BarrelRollACTIVE then
  1869. track:Play(.1, 1, 1)
  1870. end
  1871. end
  1872. end
  1873. else
  1874. track:Stop()
  1875. BarrelRoll.BackgroundColor3 = col
  1876. end
  1877. end)
  1878.  
  1879. local Anim = Instance.new("Animation")
  1880. Anim.AnimationId = "rbxassetid://180612465"
  1881. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1882. local ScaredACTIVE = false
  1883. Scared.MouseButton1Click:connect(function()
  1884. ScaredACTIVE = not ScaredACTIVE
  1885. if ScaredACTIVE then
  1886. Scared.BackgroundColor3 = loc
  1887. while wait() do
  1888. if track.IsPlaying == false then
  1889. if ScaredACTIVE then
  1890. track:Play(.1, 1, 1)
  1891. end
  1892. end
  1893. end
  1894. else
  1895. track:Stop()
  1896. Scared.BackgroundColor3 = col
  1897. end
  1898. end)
  1899.  
  1900. local Anim = Instance.new("Animation")
  1901. Anim.AnimationId = "rbxassetid://33796059"
  1902. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1903. local InsaneACTIVE = false
  1904. Insane.MouseButton1Click:connect(function()
  1905. InsaneACTIVE = not InsaneACTIVE
  1906. if InsaneACTIVE then
  1907. track:Play(.1, 1, 1e8)
  1908. Insane.BackgroundColor3 = loc
  1909. else
  1910. track:Stop()
  1911. Insane.BackgroundColor3 = col
  1912. end
  1913. end)
  1914.  
  1915. local Anim = Instance.new("Animation")
  1916. Anim.AnimationId = "rbxassetid://33169583"
  1917. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1918. local ArmDetachACTIVE = false
  1919. ArmDetach.MouseButton1Click:connect(function()
  1920. ArmDetachACTIVE = not ArmDetachACTIVE
  1921. if ArmDetachACTIVE then
  1922. ArmDetach.BackgroundColor3 = loc
  1923. while wait() do
  1924. if track.IsPlaying == false then
  1925. if ArmDetachACTIVE then
  1926. track:Play(.1, 1, 1e6)
  1927. end
  1928. end
  1929. end
  1930. else
  1931. track:Stop()
  1932. ArmDetach.BackgroundColor3 = col
  1933. end
  1934. end)
  1935.  
  1936. local Anim = Instance.new("Animation")
  1937. Anim.AnimationId = "rbxassetid://35978879"
  1938. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1939. local SwordSliceACTIVE = false
  1940. SwordSlice.MouseButton1Click:connect(function()
  1941. SwordSliceACTIVE = not SwordSliceACTIVE
  1942. if SwordSliceACTIVE then
  1943. track:Play(.1, 1, 1)
  1944. SwordSlice.BackgroundColor3 = loc
  1945. else
  1946. track:Stop()
  1947. SwordSlice.BackgroundColor3 = col
  1948. end
  1949. end)
  1950.  
  1951. local Anim = Instance.new("Animation")
  1952. Anim.AnimationId = "rbxassetid://27432691"
  1953. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1954. local InsaneArmsACTIVE = false
  1955. InsaneArms.MouseButton1Click:connect(function()
  1956. InsaneArmsACTIVE = not InsaneArmsACTIVE
  1957. if InsaneArmsACTIVE then
  1958. InsaneArms.BackgroundColor3 = loc
  1959. while wait() do
  1960. if track.IsPlaying == false then
  1961. if InsaneArmsACTIVE then
  1962. track:Play(.1, 1, 1e4)
  1963. end
  1964. end
  1965. end
  1966. else
  1967. track:Stop()
  1968. InsaneArms.BackgroundColor3 = col
  1969. end
  1970. end)
  1971. -- R15
  1972. local Anim = Instance.new("Animation")
  1973. Anim.AnimationId = "rbxassetid://674871189"
  1974. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1975. local CrazySlashACTIVE = false
  1976. CrazySlash.MouseButton1Click:connect(function()
  1977. CrazySlashACTIVE = not CrazySlashACTIVE
  1978. if CrazySlashACTIVE then
  1979. CrazySlash.BackgroundColor3 = rloc
  1980. while wait() do
  1981. if track.IsPlaying == false then
  1982. if CrazySlashACTIVE then
  1983. track:Play(.1, 1, 1)
  1984. end
  1985. end
  1986. end
  1987. else
  1988. track:Stop()
  1989. CrazySlash.BackgroundColor3 = rcol
  1990. end
  1991. end)
  1992.  
  1993. local Anim = Instance.new("Animation")
  1994. Anim.AnimationId = "rbxassetid://582855105"
  1995. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  1996. local OpenACTIVE = false
  1997. Open.MouseButton1Click:connect(function()
  1998. OpenACTIVE = not OpenACTIVE
  1999. if OpenACTIVE then
  2000. Open.BackgroundColor3 = rloc
  2001. while wait() do
  2002. if track.IsPlaying == false then
  2003. if OpenACTIVE then
  2004. track:Play(.1, 1, 1)
  2005. end
  2006. end
  2007. end
  2008. else
  2009. track:Stop()
  2010. Open.BackgroundColor3 = rcol
  2011. end
  2012. end)
  2013.  
  2014. local Anim = Instance.new("Animation")
  2015. Anim.AnimationId = "rbxassetid://754658275"
  2016. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2017. local R15SpinnerACTIVE = false
  2018. R15Spinner.MouseButton1Click:connect(function()
  2019. R15SpinnerACTIVE = not R15SpinnerACTIVE
  2020. if R15SpinnerACTIVE then
  2021. R15Spinner.BackgroundColor3 = rloc
  2022. while wait() do
  2023. if track.IsPlaying == false then
  2024. if R15SpinnerACTIVE then
  2025. track:Play(.1, 1, 1)
  2026. end
  2027. end
  2028. end
  2029. else
  2030. track:Stop()
  2031. R15Spinner.BackgroundColor3 = rcol
  2032. end
  2033. end)
  2034.  
  2035. local Anim = Instance.new("Animation")
  2036. Anim.AnimationId = "rbxassetid://582384156"
  2037. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2038. local ArmsOutACTIVE = false
  2039. ArmsOut.MouseButton1Click:connect(function()
  2040. ArmsOutACTIVE = not ArmsOutACTIVE
  2041. if ArmsOutACTIVE then
  2042. ArmsOut.BackgroundColor3 = rloc
  2043. while wait() do
  2044. if track.IsPlaying == false then
  2045. if ArmsOutACTIVE then
  2046. track:Play(.1, 1, 1)
  2047. end
  2048. end
  2049. end
  2050. else
  2051. track:Stop()
  2052. ArmsOut.BackgroundColor3 = rcol
  2053. end
  2054. end)
  2055.  
  2056. local Anim = Instance.new("Animation")
  2057. Anim.AnimationId = "rbxassetid://717879555"
  2058. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2059. local FloatSlashACTIVE = false
  2060. FloatSlash.MouseButton1Click:connect(function()
  2061. FloatSlashACTIVE = not FloatSlashACTIVE
  2062. if FloatSlashACTIVE then
  2063. FloatSlash.BackgroundColor3 = rloc
  2064. while wait() do
  2065. if track.IsPlaying == false then
  2066. if FloatSlashACTIVE then
  2067. track:Play(.1, 1, 1)
  2068. end
  2069. end
  2070. end
  2071. else
  2072. track:Stop()
  2073. FloatSlash.BackgroundColor3 = rcol
  2074. end
  2075. end)
  2076.  
  2077. local Anim = Instance.new("Animation")
  2078. Anim.AnimationId = "rbxassetid://708553116"
  2079. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2080. WeirdZombieACTIVE = false
  2081. WeirdZombie.MouseButton1Click:connect(function()
  2082. WeirdZombieACTIVE = not WeirdZombieACTIVE
  2083. if WeirdZombieACTIVE then
  2084. WeirdZombie.BackgroundColor3 = rloc
  2085. while wait() do
  2086. if track.IsPlaying == false then
  2087. if WeirdZombieACTIVE then
  2088. track:Play(.1, 1, 1)
  2089. end
  2090. end
  2091. end
  2092. else
  2093. track:Stop()
  2094. WeirdZombie.BackgroundColor3 = rcol
  2095. end
  2096. end)
  2097.  
  2098. local Anim = Instance.new("Animation")
  2099. Anim.AnimationId = "rbxassetid://746398327"
  2100. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2101. DownSlashACTIVE = false
  2102. DownSlash.MouseButton1Click:connect(function()
  2103. DownSlashACTIVE = not DownSlashACTIVE
  2104. if DownSlashACTIVE then
  2105. DownSlash.BackgroundColor3 = rloc
  2106. while wait() do
  2107. if track.IsPlaying == false then
  2108. if DownSlashACTIVE then
  2109. track:Play(.1, 1, 1)
  2110. end
  2111. end
  2112. end
  2113. else
  2114. track:Stop()
  2115. DownSlash.BackgroundColor3 = rcol
  2116. end
  2117. end)
  2118.  
  2119. local Anim = Instance.new("Animation")
  2120. Anim.AnimationId = "rbxassetid://675025795"
  2121. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2122. PullACTIVE = false
  2123. Pull.MouseButton1Click:connect(function()
  2124. PullACTIVE = not PullACTIVE
  2125. if PullACTIVE then
  2126. Pull.BackgroundColor3 = rloc
  2127. while wait() do
  2128. if track.IsPlaying == false then
  2129. if PullACTIVE then
  2130. track:Play(.1, 1, 1)
  2131. end
  2132. end
  2133. end
  2134. else
  2135. track:Stop()
  2136. Pull.BackgroundColor3 = rcol
  2137. end
  2138. end)
  2139.  
  2140. local Anim = Instance.new("Animation")
  2141. Anim.AnimationId = "rbxassetid://698251653"
  2142. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2143. CircleArmACTIVE = false
  2144. CircleArm.MouseButton1Click:connect(function()
  2145. CircleArmACTIVE = not CircleArmACTIVE
  2146. if CircleArmACTIVE then
  2147. CircleArm.BackgroundColor3 = rloc
  2148. while wait() do
  2149. if track.IsPlaying == false then
  2150. if CircleArmACTIVE then
  2151. track:Play(.1, 1, 1)
  2152. end
  2153. end
  2154. end
  2155. else
  2156. track:Stop()
  2157. CircleArm.BackgroundColor3 = rcol
  2158. end
  2159. end)
  2160.  
  2161. local Anim = Instance.new("Animation")
  2162. Anim.AnimationId = "rbxassetid://696096087"
  2163. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2164. BendACTIVE = false
  2165. Bend.MouseButton1Click:connect(function()
  2166. BendACTIVE = not BendACTIVE
  2167. if BendACTIVE then
  2168. Bend.BackgroundColor3 = rloc
  2169. while wait() do
  2170. if track.IsPlaying == false then
  2171. if BendACTIVE then
  2172. track:Play(.1, 1, 1)
  2173. end
  2174. end
  2175. end
  2176. else
  2177. track:Stop()
  2178. Bend.BackgroundColor3 = rcol
  2179. end
  2180. end)
  2181.  
  2182. local Anim = Instance.new("Animation")
  2183. Anim.AnimationId = "rbxassetid://675025570"
  2184. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2185. RotateSlashACTIVE = false
  2186. RotateSlash.MouseButton1Click:connect(function()
  2187. RotateSlashACTIVE = not RotateSlashACTIVE
  2188. if RotateSlashACTIVE then
  2189. RotateSlash.BackgroundColor3 = rloc
  2190. while wait() do
  2191. if track.IsPlaying == false then
  2192. if RotateSlashACTIVE then
  2193. track:Play(.1, 1, 1)
  2194. end
  2195. end
  2196. end
  2197. else
  2198. track:Stop()
  2199. RotateSlash.BackgroundColor3 = rcol
  2200. end
  2201. end)
  2202.  
  2203. local Anim = Instance.new("Animation")
  2204. Anim.AnimationId = "rbxassetid://754656200"
  2205. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2206. FlingArmsACTIVE = false
  2207. FlingArms.MouseButton1Click:connect(function()
  2208. FlingArmsACTIVE = not FlingArmsACTIVE
  2209. if FlingArmsACTIVE then
  2210. FlingArms.BackgroundColor3 = rloc
  2211. while wait() do
  2212. if track.IsPlaying == false then
  2213. if FlingArmsACTIVE then
  2214. track:Play(.1, 1, 10)
  2215. end
  2216. end
  2217. end
  2218. else
  2219. track:Stop()
  2220. FlingArms.BackgroundColor3 = rcol
  2221. end
  2222. end)
  2223.  
  2224. -- Finished update!
  2225. end)
  2226.  
  2227. RevizAdmin.Name = "Reviz Admin"
  2228. RevizAdmin.Parent = Main
  2229. RevizAdmin.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  2230. RevizAdmin.BorderSizePixel = 0
  2231. RevizAdmin.Position = UDim2.new(0.319612592, 0, 0.747922361, 0)
  2232. RevizAdmin.Size = UDim2.new(0, 149, 0, 43)
  2233. RevizAdmin.Font = Enum.Font.Cartoon
  2234. RevizAdmin.Text = "Reviz Admin"
  2235. RevizAdmin.TextColor3 = Color3.new(0, 0, 0)
  2236. RevizAdmin.TextScaled = true
  2237. RevizAdmin.TextSize = 14
  2238. RevizAdmin.TextWrapped = true
  2239. RevizAdmin.MouseButton1Down:connect(function()
  2240. -- Creator: illremember#3799
  2241.  
  2242. -- Credits to infinite yield, harkinian, dex creators
  2243.  
  2244. prefix = ":"
  2245. wait(0.3)
  2246. Commands = {
  2247. '[-] cmdbar is shown when ; is pressed.',
  2248. '[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player',
  2249. '[2] bring [plr] -- You need a tool! Will bring player to you',
  2250. '[3] spin [plr] -- You need a tool! Makes you and the player spin crazy',
  2251. '[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting',
  2252. '[5] attach [plr] -- You need a tool! Attaches you to player',
  2253. '[6] unattach [plr] -- Attempts to unattach you from a player',
  2254. '[7] follow [plr] -- Makes you follow behind the player',
  2255. '[8] unfollow',
  2256. '[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air',
  2257. '[10] trail [plr] -- The opposite of follow, you stay infront of player',
  2258. '[11] untrail',
  2259. '[12] orbit [plr] -- Makes you orbit the player',
  2260. '[13] unorbit',
  2261. '[14] fling [plr] -- Makes you fling the player',
  2262. '[15] unfling',
  2263. '[16] fecheck -- Checks if the game is FE or not',
  2264. '[17] void [plr] -- Teleports player to the void',
  2265. '[18] noclip -- Gives you noclip to walk through walls',
  2266. '[19] clip -- Removes noclip',
  2267. '[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default',
  2268. '[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default',
  2269. '[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default',
  2270. '[23] default -- Changes your speed, jumppower and hipheight to default values',
  2271. '[24] annoy [plr] -- Loop teleports you to the player',
  2272. '[25] unannoy',
  2273. '[26] headwalk [plr] -- Loop teleports you to the player head',
  2274. '[27] unheadwalk',
  2275. '[28] nolimbs -- Removes your arms and legs',
  2276. '[29] god -- Gives you FE Godmode',
  2277. '[30] drophats -- Drops your accessories',
  2278. '[31] droptool -- Drops any tool you have equipped',
  2279. '[32] loopdhats -- Loop drops your accessories',
  2280. '[33] unloopdhats',
  2281. '[34] loopdtool -- Loop drops any tools you have equipped',
  2282. '[35] unloopdtool',
  2283. '[36] invisible -- Gives you invisibility CREDIT TO TIMELESS',
  2284. '[37] view [plr] -- Changes your camera to the player character',
  2285. '[38] unview',
  2286. '[39] goto [plr] -- Teleports you to player',
  2287. '[40] fly -- Allows you to fly, credit to Infinite Yield',
  2288. '[41] unfly',
  2289. '[42] chat [msg] -- Makes you chat a message',
  2290. '[43] spam [msg] -- Spams a message',
  2291. '[44] unspam',
  2292. '[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second',
  2293. '[46] pmspam [plr] -- Spams a player in private message',
  2294. '[47] unpmspam',
  2295. '[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you',
  2296. '[49] uncfreeze [plr]',
  2297. '[50] unlockws -- Unlocks the workspace',
  2298. '[51] lockws -- Locks the workspace',
  2299. '[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you',
  2300. '[53] pstand -- Enables platform stand',
  2301. '[54] unpstand -- Disables platform stand',
  2302. '[55] blockhead -- Removes your head mesh',
  2303. '[56] sit',
  2304. '[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',
  2305. '[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided',
  2306. '[59] hypertotal -- Loads in my FE GUI Hypertotal',
  2307. '[60] cmds -- Prints all commands',
  2308. '[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats',
  2309. '[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool',
  2310. '[63] spinner -- Makes you spin',
  2311. '[64] nospinner',
  2312. '[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom',
  2313. '[66] noreach -- Removes reach, must have tool equipped',
  2314. '[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying',
  2315. '[68] tp me [plr] -- Alternative to goto',
  2316. '[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player',
  2317. '[70] uncbring',
  2318. '[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players',
  2319. '[72] givetool [plr] -- Gives the tool you have equipped to the player',
  2320. '[73] glitch [plr] -- Glitches you and the player, looks very cool',
  2321. '[74] unglitch -- Unglitches you',
  2322. '[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode',
  2323. '[76] explorer -- Loads up DEX',
  2324. '[77] reset -- Resets your character.',
  2325. '[78] anim [id] -- Applies an animation on you, must be created by ROBLOX',
  2326. '[79] animgui -- Loads up Energize animations GUI',
  2327. '[80] savepos -- Saves your current position',
  2328. '[81] loadpos -- Teleports you to your saved position',
  2329. '[82] bang [plr] -- 18+ will not work if you have FE Godmode on',
  2330. '[83] unbang',
  2331. '[84] delcmdbar -- Removes the command bar completely',
  2332. '[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model',
  2333. '[86] shutdown -- Uses harkinians script to shutdown server',
  2334. '[87] respawn -- If grespawn doesnt work you can use respawn',
  2335. '[88] delobj [obj] -- Deletes a certain brick in workspace, client sided',
  2336. '[89] getplrs -- Prints all players in game',
  2337. '[90] deldecal -- Deletes all decals client sided',
  2338. '[91] opfinality -- Loads in my FE GUI Opfinality',
  2339. '[92] remotes -- Prints all remotes in the game in the console when added',
  2340. '[93] noremotes -- Stops printing remotes',
  2341. '[94] tpdefault -- Stops all loop teleports to a player',
  2342. '[95] stopsit -- Will not allow you to sit',
  2343. '[96] gosit -- Allows you to sit',
  2344. '[97] clicktp -- Enables click tp',
  2345. '[98] noclicktp -- Disables click tp',
  2346. '[99] toolson -- If any tools are dropped in the workspace you will automatically get them',
  2347. '[100] toolsoff -- Stops ;toolson',
  2348. '[101] version -- Gets the admin version',
  2349. '[102] state [num] -- Changes your humanoid state, ;unstate to stop.',
  2350. '[103] gravity [num] -- Changes workspace gravity default is 196.2',
  2351. '[104] pgs -- Checks if the game has PGSPhysicsSolverEnabled enabled',
  2352. '[105] clickdel -- Delete any block you press q on, client sided',
  2353. '[106] noclickdel -- Stops clickdel',
  2354. '[107] looprhats -- Loop removes mesh of your hats/loop block hats',
  2355. '[108] unlooprhats -- Stops loop removing mesh',
  2356. '[109] looprtool -- Loop removes mesh of your tool/loop block tools',
  2357. '[110] unlooprtool -- Stops loop removing mesh',
  2358. '[111] givealltools [plr] -- Gives all the tools you have in your backpack to the player',
  2359. '[112] age [plr] -- Makes you chat the account age of the player',
  2360. '[113] id [plr] -- Makes you chat the account ID of the player',
  2361. '[114] .age [plr] -- Privately shows you the account age of the player',
  2362. '[115] .id [plr] -- Privately shows you the account ID of the player',
  2363. '[116] gameid -- Shows the game ID',
  2364. '[117] removeinvis -- Removes all invisible walls/parts, client sided',
  2365. '[118] removefog -- Removes fog, client sided',
  2366. '[119] disable -- Disables your character by removing humanoid',
  2367. '[120] enable -- Enables your character by adding humanoid',
  2368. '[121] prefix [key] -- Changes the prefix used, default is ;',
  2369. '[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.',
  2370. '[123] flyspeed [num] -- Change your fly speed, default is 1',
  2371. '[124] carpet [plr] -- Makes you a carpet for a player, will not work if FE Godmode is on',
  2372. '[125] uncarpet -- Stops carpet player',
  2373. '[126] stare [plr] -- Turns your character to stare at another player',
  2374. '[127] unstare -- Stops stare player',
  2375. '[128] logchat -- Logs all chat (including /e and whispers) of all players',
  2376. '[129] unlogchat -- Disables logchat',
  2377. '[130] fixcam -- Fixes/resets your camera',
  2378. '[131] unstate -- Stops changing state',
  2379. }
  2380. speedget = 1
  2381.  
  2382. lplayer = game:GetService("Players").LocalPlayer
  2383.  
  2384. lplayer.CharacterAdded:Connect(function(character)
  2385. spin = false
  2386. flying = false
  2387. staring = false
  2388. banpl = false
  2389. end)
  2390.  
  2391. function change()
  2392. prefix = prefix
  2393. speedfly = speedfly
  2394. end
  2395.  
  2396. function GetPlayer(String) -- Credit to Timeless/xFunnieuss
  2397. local Found = {}
  2398. local strl = String:lower()
  2399. if strl == "all" then
  2400. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2401. table.insert(Found,v)
  2402. end
  2403. elseif strl == "others" then
  2404. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2405. if v.Name ~= lplayer.Name then
  2406. table.insert(Found,v)
  2407. end
  2408. end
  2409. elseif strl == "me" then
  2410. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2411. if v.Name == lplayer.Name then
  2412. table.insert(Found,v)
  2413. end
  2414. end
  2415. else
  2416. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2417. if v.Name:lower():sub(1, #String) == String:lower() then
  2418. table.insert(Found,v)
  2419. end
  2420. end
  2421. end
  2422. return Found
  2423. end
  2424.  
  2425. local Mouse = lplayer:GetMouse()
  2426.  
  2427. spin = false
  2428. followed = false
  2429. traill = false
  2430. noclip = false
  2431. annoying = false
  2432. hwalk = false
  2433. droppinghats = false
  2434. droppingtools = false
  2435. flying = false
  2436. spamdelay = 1
  2437. spamming = false
  2438. spammingpm = false
  2439. cbringing = false
  2440. remotes = true
  2441. added = true
  2442. binds = false
  2443. stopsitting = false
  2444. clickgoto = false
  2445. gettingtools = false
  2446. removingmeshhats = false
  2447. removingmeshtool = false
  2448. clickdel = false
  2449. staring = false
  2450. chatlogs = false
  2451. banpl = false
  2452. changingstate = false
  2453. statechosen = 0
  2454.  
  2455. adminversion = "Reviz Admin by illremember, Version 2.0"
  2456.  
  2457. flying = false
  2458. speedfly = 1
  2459.  
  2460. function plrchat(plr, chat)
  2461. print(plr.Name..": "..tick().."\n"..chat)
  2462. end
  2463.  
  2464. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2465. v.Chatted:connect(function(chat)
  2466. if chatlogs then
  2467. plrchat(v, chat)
  2468. end
  2469. end)
  2470. end
  2471. game:GetService("Players").PlayerAdded:connect(function(plr)
  2472. plr.Chatted:connect(function(chat)
  2473. if chatlogs then
  2474. plrchat(plr, chat)
  2475. end
  2476. end)
  2477. end)
  2478.  
  2479.  
  2480. local ScreenGui = Instance.new("ScreenGui")
  2481. local Frame = Instance.new("Frame")
  2482. local CMDBAR = Instance.new("TextBox")
  2483. ScreenGui.Parent = game:GetService("CoreGui")
  2484. Frame.Parent = ScreenGui
  2485. Frame.BackgroundColor3 = Color3.new(0.3, 0.1, 0.1)
  2486. Frame.BackgroundTransparency = 0.3
  2487. Frame.Position = UDim2.new(0.5, 0, 0, 10)
  2488. Frame.Size = UDim2.new(0, 200, 0, 40)
  2489. Frame.Active = true
  2490. Frame.Draggable = true
  2491. CMDBAR.Name = "CMDBAR"
  2492. CMDBAR.Parent = Frame
  2493. CMDBAR.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  2494. CMDBAR.BackgroundTransparency = 0.20000000298023
  2495. CMDBAR.Size = UDim2.new(0, 180, 0, 20)
  2496. CMDBAR.Position = UDim2.new(0.05, 0, 0.25, 0)
  2497. CMDBAR.Font = Enum.Font.SourceSansLight
  2498. CMDBAR.FontSize = Enum.FontSize.Size14
  2499. CMDBAR.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  2500. CMDBAR.TextScaled = true
  2501. CMDBAR.TextSize = 14
  2502. CMDBAR.TextWrapped = true
  2503. CMDBAR.Text = "Press ; to type, Enter to execute"
  2504.  
  2505. local CMDS = Instance.new("ScreenGui")
  2506. local CMDSFRAME = Instance.new("Frame")
  2507. local ScrollingFrame = Instance.new("ScrollingFrame")
  2508. local TextLabel = Instance.new("TextLabel")
  2509. local closegui = Instance.new("TextButton")
  2510. CMDS.Name = "CMDS"
  2511. CMDS.Parent = game:GetService("CoreGui")
  2512. CMDSFRAME.Name = "CMDSFRAME"
  2513. CMDSFRAME.Parent = CMDS
  2514. CMDSFRAME.Active = true
  2515. CMDSFRAME.BackgroundColor3 = Color3.new(0.223529, 0.231373, 0.309804)
  2516. CMDSFRAME.BorderSizePixel = 0
  2517. CMDSFRAME.Draggable = true
  2518. CMDSFRAME.Position = UDim2.new(0, 315, 0, 100)
  2519. CMDSFRAME.Size = UDim2.new(0, 275, 0, 275)
  2520. CMDSFRAME.Visible = false
  2521. ScrollingFrame.Parent = CMDSFRAME
  2522. ScrollingFrame.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.203922)
  2523. ScrollingFrame.BorderSizePixel = 0
  2524. ScrollingFrame.Position = UDim2.new(0, 0, 0.0729999989, 0)
  2525. ScrollingFrame.Size = UDim2.new(1.04999995, 0, 0.92900002, 0)
  2526. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
  2527. TextLabel.Parent = ScrollingFrame
  2528. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  2529. TextLabel.BackgroundTransparency = 1
  2530. TextLabel.Size = UDim2.new(0.930000007, 0, 1, 0)
  2531. TextLabel.Font = Enum.Font.SourceSans
  2532. TextLabel.FontSize = Enum.FontSize.Size18
  2533. 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."
  2534. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  2535. TextLabel.TextSize = 15
  2536. TextLabel.TextWrapped = true
  2537. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  2538. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  2539. closegui.Name = "closegui"
  2540. closegui.Parent = CMDSFRAME
  2541. closegui.BackgroundColor3 = Color3.new(0.890196, 0.223529, 0.0588235)
  2542. closegui.BorderSizePixel = 0
  2543. closegui.Position = UDim2.new(0.995000005, 0, 0, 0)
  2544. closegui.Size = UDim2.new(0.0545952693, 0, 0.0728644878, 0)
  2545. closegui.Font = Enum.Font.SourceSansBold
  2546. closegui.FontSize = Enum.FontSize.Size24
  2547. closegui.Text = "X"
  2548. closegui.TextColor3 = Color3.new(1, 1, 1)
  2549. closegui.TextSize = 20
  2550.  
  2551. closegui.MouseButton1Click:connect(function()
  2552. CMDSFRAME.Visible = false
  2553. end)
  2554.  
  2555. game:GetService('RunService').Stepped:connect(function()
  2556. if spin then
  2557. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[spinplr.Name].Character.HumanoidRootPart.CFrame
  2558. end
  2559. if followed then
  2560. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * -5
  2561. end
  2562. if traill then
  2563. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * 5
  2564. end
  2565. if annoying then
  2566. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[annplr.Name].Character.HumanoidRootPart.CFrame
  2567. end
  2568. if hwalk then
  2569. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[hdwplr.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0, 4, 0)
  2570. end
  2571. if staring then
  2572. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(lplayer.Character.Torso.Position, game:GetService("Players")[stareplr.Name].Character.Torso.Position)
  2573. end
  2574. end)
  2575. game:GetService('RunService').Stepped:connect(function()
  2576. if noclip then
  2577. if lplayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  2578. lplayer.Character.Head.CanCollide = false
  2579. lplayer.Character.Torso.CanCollide = false
  2580. lplayer.Character["Left Leg"].CanCollide = false
  2581. lplayer.Character["Right Leg"].CanCollide = false
  2582. else
  2583. lplayer.Character.Humanoid:ChangeState(11)
  2584. end
  2585. end
  2586. if changingstate then
  2587. lplayer.Character.Humanoid:ChangeState(statechosen)
  2588. end
  2589. end)
  2590. game:GetService('RunService').Stepped:connect(function()
  2591. if droppinghats then
  2592. for i,v in pairs(lplayer.Character:GetChildren()) do
  2593. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  2594. v.Parent = workspace
  2595. end
  2596. end
  2597. end
  2598. if droppingtools then
  2599. for i,v in pairs(lplayer.Character:GetChildren()) do
  2600. if (v:IsA("Tool")) then
  2601. v.Parent = workspace
  2602. end
  2603. end
  2604. end
  2605. if removingmeshhats then
  2606. for i,v in pairs(lplayer.Character:GetChildren()) do
  2607. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  2608. v.Handle.Mesh:Destroy()
  2609. end
  2610. end
  2611. end
  2612. if removingmeshtool then
  2613. for i,v in pairs(lplayer.Character:GetChildren()) do
  2614. if (v:IsA("Tool")) then
  2615. v.Handle.Mesh:Destroy()
  2616. end
  2617. end
  2618. end
  2619. end)
  2620. game:GetService('RunService').Stepped:connect(function()
  2621. if banpl then
  2622. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[bplrr].Character.HumanoidRootPart.CFrame
  2623. end
  2624. end)
  2625. game:GetService('RunService').Stepped:connect(function()
  2626. if stopsitting then
  2627. lplayer.Character.Humanoid.Sit = false
  2628. end
  2629. end)
  2630.  
  2631. plr = lplayer
  2632. hum = plr.Character.HumanoidRootPart
  2633. mouse = plr:GetMouse()
  2634. mouse.KeyDown:connect(function(key)
  2635. if key == "e" then
  2636. if mouse.Target then
  2637. if clickgoto then
  2638. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  2639. elseif clickdel then
  2640. mouse.Target:Destroy()
  2641. end
  2642. end
  2643. end
  2644. end)
  2645.  
  2646. game:GetService("Workspace").ChildAdded:connect(function(part)
  2647. if gettingtools then
  2648. if part:IsA("Tool") then
  2649. part.Handle.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  2650. end
  2651. end
  2652. end)
  2653.  
  2654. lplayer.Chatted:Connect(function(msg)
  2655. if string.sub(msg, 1, 6) == (prefix.."kill ") then
  2656. if string.sub(msg, 7) == "me" then
  2657. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  2658. else
  2659. for i,v in pairs(GetPlayer(string.sub(msg, 7)))do
  2660. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  2661. lplayer.Character.Humanoid.Name = 1
  2662. local l = lplayer.Character["1"]:Clone()
  2663. l.Parent = lplayer.Character
  2664. l.Name = "Humanoid"
  2665. wait(0.1)
  2666. lplayer.Character["1"]:Destroy()
  2667. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2668. lplayer.Character.Animate.Disabled = true
  2669. wait(0.1)
  2670. lplayer.Character.Animate.Disabled = false
  2671. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2672. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2673. lplayer.Character.Humanoid:EquipTool(v)
  2674. end
  2675. local function tp(player,player2)
  2676. local char1,char2=player.Character,player2.Character
  2677. if char1 and char2 then
  2678. char1:MoveTo(char2.Head.Position)
  2679. end
  2680. end
  2681. wait(0.1)
  2682. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2683. wait(0.2)
  2684. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2685. wait(0.5)
  2686. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  2687. wait(0.7)
  2688. tp(lplayer,game:GetService("Players")[v.Name])
  2689. wait(0.7)
  2690. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2691. game:GetService("StarterGui"):SetCore("SendNotification", {
  2692. Title = "Tools needed!";
  2693. Text = "You need a tool in your backpack for this command!";
  2694. })
  2695. end
  2696. end
  2697. end
  2698. if string.sub(msg, 1, 7) == (prefix.."bring ") then
  2699. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  2700. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  2701. lplayer.Character.Humanoid.Name = 1
  2702. local l = lplayer.Character["1"]:Clone()
  2703. l.Parent = lplayer.Character
  2704. l.Name = "Humanoid"
  2705. wait(0.1)
  2706. lplayer.Character["1"]:Destroy()
  2707. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2708. lplayer.Character.Animate.Disabled = true
  2709. wait(0.1)
  2710. lplayer.Character.Animate.Disabled = false
  2711. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2712. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2713. lplayer.Character.Humanoid:EquipTool(v)
  2714. end
  2715. local function tp(player,player2)
  2716. local char1,char2=player.Character,player2.Character
  2717. if char1 and char2 then
  2718. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  2719. end
  2720. end
  2721. local function getout(player,player2)
  2722. local char1,char2=player.Character,player2.Character
  2723. if char1 and char2 then
  2724. char1:MoveTo(char2.Head.Position)
  2725. end
  2726. end
  2727. tp(game:GetService("Players")[v.Name], lplayer)
  2728. wait(0.2)
  2729. tp(game:GetService("Players")[v.Name], lplayer)
  2730. wait(0.5)
  2731. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2732. wait(0.5)
  2733. getout(lplayer, game:GetService("Players")[v.Name])
  2734. wait(0.3)
  2735. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2736. game:GetService("StarterGui"):SetCore("SendNotification", {
  2737. Title = "Tools needed!";
  2738. Text = "You need a tool in your backpack for this command!";
  2739. })
  2740. end
  2741. end
  2742. if string.sub(msg, 1, 6) == (prefix.."spin ") then
  2743. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  2744. lplayer.Character.Humanoid.Name = 1
  2745. local l = lplayer.Character["1"]:Clone()
  2746. l.Parent = lplayer.Character
  2747. l.Name = "Humanoid"
  2748. wait(0.1)
  2749. lplayer.Character["1"]:Destroy()
  2750. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2751. lplayer.Character.Animate.Disabled = true
  2752. wait(0.1)
  2753. lplayer.Character.Animate.Disabled = false
  2754. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2755. lplayer.Character.Animate.Disabled = false
  2756. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2757. lplayer.Character.Humanoid:EquipTool(v)
  2758. end
  2759. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  2760. spinplr = v
  2761. wait(0.5)
  2762. spin = true
  2763. game:GetService("StarterGui"):SetCore("SendNotification", {
  2764. Title = "Tools needed!";
  2765. Text = "You need a tool in your backpack for this command!";
  2766. })
  2767. end
  2768. end
  2769. if string.sub(msg, 1, 7) == (prefix.."unspin") then
  2770. spin = false
  2771. end
  2772. if string.sub(msg, 1, 8) == (prefix.."attach ") then
  2773. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  2774. lplayer.Character.Humanoid.Name = 1
  2775. local l = lplayer.Character["1"]:Clone()
  2776. l.Parent = lplayer.Character
  2777. l.Name = "Humanoid"
  2778. wait(0.1)
  2779. lplayer.Character["1"]:Destroy()
  2780. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2781. lplayer.Character.Animate.Disabled = true
  2782. wait(0.1)
  2783. lplayer.Character.Animate.Disabled = false
  2784. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2785. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2786. lplayer.Character.Humanoid:EquipTool(v)
  2787. end
  2788. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  2789. wait(0.3)
  2790. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  2791. attplr = v
  2792. game:GetService("StarterGui"):SetCore("SendNotification", {
  2793. Title = "Tools needed!";
  2794. Text = "You need a tool in your backpack for this command!";
  2795. })
  2796. end
  2797. end
  2798. if string.sub(msg, 1, 10) == (prefix.."unattach ") then
  2799. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  2800. local function getout(player,player2)
  2801. local char1,char2=player.Character,player2.Character
  2802. if char1 and char2 then
  2803. char1:MoveTo(char2.Head.Position)
  2804. end
  2805. end
  2806. getout(lplayer, game:GetService("Players")[v.Name])
  2807. end
  2808. end
  2809. if string.sub(msg, 1, 8) == (prefix.."follow ") then
  2810. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  2811. followed = true
  2812. flwplr = v
  2813. end
  2814. end
  2815. if string.sub(msg, 1, 9) == (prefix.."unfollow") then
  2816. followed = false
  2817. end
  2818. if string.sub(msg, 1, 10) == (prefix.."freefall ") then
  2819. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  2820. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  2821. lplayer.Character.Humanoid.Name = 1
  2822. local l = lplayer.Character["1"]:Clone()
  2823. l.Parent = lplayer.Character
  2824. l.Name = "Humanoid"
  2825. wait(0.1)
  2826. lplayer.Character["1"]:Destroy()
  2827. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2828. lplayer.Character.Animate.Disabled = true
  2829. wait(0.1)
  2830. lplayer.Character.Animate.Disabled = false
  2831. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2832. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2833. lplayer.Character.Humanoid:EquipTool(v)
  2834. end
  2835. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2836. wait(0.2)
  2837. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2838. wait(0.6)
  2839. lplayer.Character.HumanoidRootPart.CFrame = NOW
  2840. wait(0.6)
  2841. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  2842. game:GetService("StarterGui"):SetCore("SendNotification", {
  2843. Title = "Tools needed!";
  2844. Text = "You need a tool in your backpack for this command!";
  2845. })
  2846. end
  2847. end
  2848. if string.sub(msg, 1, 7) == (prefix.."trail ") then
  2849. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  2850. traill = true
  2851. trlplr = v
  2852. end
  2853. end
  2854. if string.sub(msg, 1, 8) == (prefix.."untrail") then
  2855. traill = false
  2856. end
  2857. if string.sub(msg, 1, 7) == (prefix.."orbit ") then
  2858. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  2859. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  2860. else
  2861. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  2862. local o = Instance.new("RocketPropulsion")
  2863. o.Parent = lplayer.Character.HumanoidRootPart
  2864. o.Name = "Orbit"
  2865. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  2866. o:Fire()
  2867. noclip = true
  2868. end
  2869. end
  2870. end
  2871. if string.sub(msg, 1, 8) == (prefix.."unorbit") then
  2872. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  2873. noclip = false
  2874. end
  2875. if string.sub(msg, 1, 7) == (prefix.."fling ") then
  2876. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  2877. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  2878. else
  2879. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  2880. local y = Instance.new("RocketPropulsion")
  2881. y.Parent = lplayer.Character.HumanoidRootPart
  2882. y.CartoonFactor = 1
  2883. y.MaxThrust = 800000
  2884. y.MaxSpeed = 1000
  2885. y.ThrustP = 200000
  2886. y.Name = "Fling"
  2887. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  2888. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  2889. y:Fire()
  2890. noclip = true
  2891. end
  2892. end
  2893. end
  2894. if string.sub(msg, 1, 8) == (prefix.."unfling") then
  2895. noclip = false
  2896. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  2897. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  2898. wait(0.4)
  2899. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  2900. end
  2901. if string.sub(msg, 1, 8) == (prefix.."fecheck") then
  2902. if game:GetService("Workspace").FilteringEnabled == true then
  2903. warn("FE is Enabled (Filtering Enabled)")
  2904. game:GetService("StarterGui"):SetCore("SendNotification", {
  2905. Title = "FE is Enabled";
  2906. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  2907. })
  2908. else
  2909. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  2910. game:GetService("StarterGui"):SetCore("SendNotification", {
  2911. Title = "FE is Disabled";
  2912. Text = "Filtering Disabled. Consider using a different admin script.";
  2913. })
  2914. end
  2915. end
  2916. if string.sub(msg, 1, 6) == (prefix.."void ") then
  2917. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  2918. lplayer.Character.Humanoid.Name = 1
  2919. local l = lplayer.Character["1"]:Clone()
  2920. l.Parent = lplayer.Character
  2921. l.Name = "Humanoid"
  2922. wait(0.1)
  2923. lplayer.Character["1"]:Destroy()
  2924. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  2925. lplayer.Character.Animate.Disabled = true
  2926. wait(0.1)
  2927. lplayer.Character.Animate.Disabled = false
  2928. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  2929. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  2930. lplayer.Character.Humanoid:EquipTool(v)
  2931. end
  2932. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2933. wait(0.2)
  2934. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  2935. wait(0.6)
  2936. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  2937. game:GetService("StarterGui"):SetCore("SendNotification", {
  2938. Title = "Tools needed!";
  2939. Text = "You need a tool in your backpack for this command!";
  2940. })
  2941. end
  2942. end
  2943. if string.sub(msg, 1, 7) == (prefix.."noclip") then
  2944. noclip = true
  2945. game:GetService("StarterGui"):SetCore("SendNotification", {
  2946. Title = "Noclip enabled";
  2947. Text = "Type ;clip to disable";
  2948. })
  2949. end
  2950. if string.sub(msg, 1, 5) == (prefix.."clip") then
  2951. noclip = false
  2952. game:GetService("StarterGui"):SetCore("SendNotification", {
  2953. Title = "Noclip disabled";
  2954. Text = "Type ;noclip to enable";
  2955. })
  2956. end
  2957. if string.sub(msg, 1, 7) == (prefix.."speed ") then
  2958. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 8))
  2959. end
  2960. if string.sub(msg, 1, 4) == (prefix.."ws ") then
  2961. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 5))
  2962. end
  2963. if string.sub(msg, 1, 11) == (prefix.."hipheight ") then
  2964. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 12))
  2965. end
  2966. if string.sub(msg, 1, 4) == (prefix.."hh ") then
  2967. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 5))
  2968. end
  2969. if string.sub(msg, 1, 11) == (prefix.."jumppower ") then
  2970. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 12))
  2971. end
  2972. if string.sub(msg, 1, 4) == (prefix.."jp ") then
  2973. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 5))
  2974. end
  2975. if string.sub(msg, 1, 8) == (prefix.."default") then
  2976. lplayer.Character.Humanoid.JumpPower = 50
  2977. lplayer.Character.Humanoid.WalkSpeed = 16
  2978. lplayer.Character.Humanoid.HipHeight = 0
  2979. end
  2980. if string.sub(msg, 1, 7) == (prefix.."annoy ") then
  2981. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  2982. annoying = true
  2983. annplr = v
  2984. end
  2985. end
  2986. if string.sub(msg, 1, 8) == (prefix.."unannoy") then
  2987. annoying = false
  2988. end
  2989. if string.sub(msg, 1, 10) == (prefix.."headwalk ") then
  2990. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  2991. hwalk = true
  2992. hdwplr = v
  2993. end
  2994. end
  2995. if string.sub(msg, 1, 11) == (prefix.."unheadwalk") then
  2996. hwalk = false
  2997. end
  2998. if string.sub(msg, 1, 8) == (prefix.."nolimbs") then
  2999. lplayer.Character["Left Leg"]:Destroy()
  3000. lplayer.Character["Left Arm"]:Destroy()
  3001. lplayer.Character["Right Leg"]:Destroy()
  3002. lplayer.Character["Right Arm"]:Destroy()
  3003. end
  3004. if string.sub(msg, 1, 4) == (prefix.."god") then
  3005. lplayer.Character.Humanoid.Name = 1
  3006. local l = lplayer.Character["1"]:Clone()
  3007. l.Parent = lplayer.Character
  3008. l.Name = "Humanoid"
  3009. wait(0.1)
  3010. lplayer.Character["1"]:Destroy()
  3011. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  3012. lplayer.Character.Animate.Disabled = true
  3013. wait(0.1)
  3014. lplayer.Character.Animate.Disabled = false
  3015. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  3016. game:GetService("StarterGui"):SetCore("SendNotification", {
  3017. Title = "FE Godmode enabled";
  3018. Text = "Use ;grespawn or ;respawn to remove";
  3019. })
  3020. end
  3021. if string.sub(msg, 1, 9) == (prefix.."drophats") then
  3022. for i,v in pairs(lplayer.Character:GetChildren()) do
  3023. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  3024. v.Parent = workspace
  3025. end
  3026. end
  3027. end
  3028. if string.sub(msg, 1, 9) == (prefix.."droptool") then
  3029. for i,v in pairs(lplayer.Character:GetChildren()) do
  3030. if (v:IsA("Tool")) then
  3031. v.Parent = workspace
  3032. end
  3033. end
  3034. end
  3035. if string.sub(msg, 1, 10) == (prefix.."loopdhats") then
  3036. droppinghats = true
  3037. game:GetService("StarterGui"):SetCore("SendNotification", {
  3038. Title = "Loop Drop Enabled";
  3039. Text = "Type ;unloopdhats to disable";
  3040. })
  3041. end
  3042. if string.sub(msg, 1, 12) == (prefix.."unloopdhats") then
  3043. droppinghats = false
  3044. game:GetService("StarterGui"):SetCore("SendNotification", {
  3045. Title = "Loop Drop Disabled";
  3046. Text = "Type ;loopdhats to enable.";
  3047. })
  3048. end
  3049. if string.sub(msg, 1, 10) == (prefix.."loopdtool") then
  3050. droppingtools = true
  3051. game:GetService("StarterGui"):SetCore("SendNotification", {
  3052. Title = "Loop Drop Enabled";
  3053. Text = "Type ;unloopdtool to disable";
  3054. })
  3055. end
  3056. if string.sub(msg, 1, 12) == (prefix.."unloopdtool") then
  3057. droppingtools = false
  3058. game:GetService("StarterGui"):SetCore("SendNotification", {
  3059. Title = "Loop Drop Disabled";
  3060. Text = "Type ;loopdtool to enable.";
  3061. })
  3062. end
  3063. if string.sub(msg, 1, 10) == (prefix.."invisible") then -- Credit to Timeless
  3064. Local = game:GetService('Players').LocalPlayer
  3065. Char = Local.Character
  3066. touched,tpdback = false, false
  3067. box = Instance.new('Part',workspace)
  3068. box.Anchored = true
  3069. box.CanCollide = true
  3070. box.Size = Vector3.new(10,1,10)
  3071. box.Position = Vector3.new(0,10000,0)
  3072. box.Touched:connect(function(part)
  3073. if (part.Parent.Name == Local.Name) then
  3074. if touched == false then
  3075. touched = true
  3076. function apply()
  3077. if script.Disabled ~= true then
  3078. no = Char.HumanoidRootPart:Clone()
  3079. wait(.25)
  3080. Char.HumanoidRootPart:Destroy()
  3081. no.Parent = Char
  3082. Char:MoveTo(loc)
  3083. touched = false
  3084. end end
  3085. if Char then
  3086. apply()
  3087. end
  3088. end
  3089. end
  3090. end)
  3091. repeat wait() until Char
  3092. loc = Char.HumanoidRootPart.Position
  3093. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  3094. game:GetService("StarterGui"):SetCore("SendNotification", {
  3095. Title = "Invisibility enabled!";
  3096. Text = "Reset or use ;respawn to remove.";
  3097. })
  3098. end
  3099. if string.sub(msg, 1, 6) == (prefix.."view ") then
  3100. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  3101. if game:GetService("Players")[v.Name].Character.Humanoid then
  3102. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  3103. else
  3104. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  3105. end
  3106. end
  3107. end
  3108. if string.sub(msg, 1, 7) == (prefix.."unview") then
  3109. if lplayer.Character.Humanoid then
  3110. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  3111. else
  3112. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  3113. end
  3114. end
  3115. if string.sub(msg, 1, 6) == (prefix.."goto ") then
  3116. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  3117. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  3118. end
  3119. end
  3120. if string.sub(msg, 1, 4) == (prefix.."fly") then
  3121. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  3122. repeat wait() until Mouse
  3123.  
  3124. local T = lplayer.Character.HumanoidRootPart
  3125. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  3126. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  3127. local SPEED = speedget
  3128.  
  3129. local function fly()
  3130. flying = true
  3131. local BG = Instance.new('BodyGyro', T)
  3132. local BV = Instance.new('BodyVelocity', T)
  3133. BG.P = 9e4
  3134. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  3135. BG.cframe = T.CFrame
  3136. BV.velocity = Vector3.new(0, 0.1, 0)
  3137. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  3138. spawn(function()
  3139. repeat wait()
  3140. lplayer.Character.Humanoid.PlatformStand = true
  3141. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  3142. SPEED = 50
  3143. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  3144. SPEED = 0
  3145. end
  3146. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  3147. 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
  3148. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  3149. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  3150. 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
  3151. else
  3152. BV.velocity = Vector3.new(0, 0.1, 0)
  3153. end
  3154. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  3155. until not flying
  3156. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  3157. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  3158. SPEED = 0
  3159. BG:destroy()
  3160. BV:destroy()
  3161. lplayer.Character.Humanoid.PlatformStand = false
  3162. end)
  3163. end
  3164. Mouse.KeyDown:connect(function(KEY)
  3165. if KEY:lower() == 'w' then
  3166. CONTROL.F = speedfly
  3167. elseif KEY:lower() == 's' then
  3168. CONTROL.B = -speedfly
  3169. elseif KEY:lower() == 'a' then
  3170. CONTROL.L = -speedfly
  3171. elseif KEY:lower() == 'd' then
  3172. CONTROL.R = speedfly
  3173. end
  3174. end)
  3175. Mouse.KeyUp:connect(function(KEY)
  3176. if KEY:lower() == 'w' then
  3177. CONTROL.F = 0
  3178. elseif KEY:lower() == 's' then
  3179. CONTROL.B = 0
  3180. elseif KEY:lower() == 'a' then
  3181. CONTROL.L = 0
  3182. elseif KEY:lower() == 'd' then
  3183. CONTROL.R = 0
  3184. end
  3185. end)
  3186. fly()
  3187. end
  3188. if string.sub(msg, 1, 6) == (prefix.."unfly") then
  3189. flying = false
  3190. lplayer.Character.Humanoid.PlatformStand = false
  3191. end
  3192. if string.sub(msg, 1, 6) == (prefix.."chat ") then
  3193. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(msg, 7)), "All")
  3194. end
  3195. if string.sub(msg, 1, 6) == (prefix.."spam ") then
  3196. spamtext = (string.sub(msg, 7))
  3197. spamming = true
  3198. end
  3199. if string.sub(msg, 1, 7) == (prefix.."unspam") then
  3200. spamming = false
  3201. end
  3202. if string.sub(msg, 1, 10) == (prefix.."spamwait ") then
  3203. spamdelay = (string.sub(msg, 11))
  3204. end
  3205. if string.sub(msg, 1, 8) == (prefix.."pmspam ") then
  3206. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  3207. pmspammed = v.Name
  3208. spammingpm = true
  3209. end
  3210. end
  3211. if string.sub(msg, 1, 9) == (prefix.."unpmspam") then
  3212. spammingpm = false
  3213. end
  3214. if string.sub(msg, 1, 9) == (prefix.."cfreeze ") then
  3215. for i,v in pairs(GetPlayer(string.sub(msg, 10))) do
  3216. v.Character["Left Leg"].Anchored = true
  3217. v.Character["Left Arm"].Anchored = true
  3218. v.Character["Right Leg"].Anchored = true
  3219. v.Character["Right Arm"].Anchored = true
  3220. v.Character.Torso.Anchored = true
  3221. v.Character.Head.Anchored = true
  3222. end
  3223. end
  3224. if string.sub(msg, 1, 11) == (prefix.."uncfreeze ") then
  3225. for i,v in pairs(GetPlayer(string.sub(msg, 12))) do
  3226. v.Character["Left Leg"].Anchored = false
  3227. v.Character["Left Arm"].Anchored = false
  3228. v.Character["Right Leg"].Anchored = false
  3229. v.Character["Right Arm"].Anchored = false
  3230. v.Character.Torso.Anchored = false
  3231. v.Character.Head.Anchored = false
  3232. end
  3233. end
  3234. if string.sub(msg, 1, 9) == (prefix.."unlockws") then
  3235. local a = game:GetService("Workspace"):getChildren()
  3236. for i = 1, #a do
  3237. if a[i].className == "Part" then
  3238. a[i].Locked = false
  3239. elseif a[i].className == "Model" then
  3240. local r = a[i]:getChildren()
  3241. for i = 1, #r do
  3242. if r[i].className == "Part" then
  3243. r[i].Locked = false
  3244. end
  3245. end
  3246. end
  3247. end
  3248. game:GetService("StarterGui"):SetCore("SendNotification", {
  3249. Title = "Success!";
  3250. Text = "Workspace unlocked. Use ;lockws to lock.";
  3251. })
  3252. end
  3253. if string.sub(msg, 1, 7) == (prefix.."lockws") then
  3254. local a = game:GetService("Workspace"):getChildren()
  3255. for i = 1, #a do
  3256. if a[i].className == "Part" then
  3257. a[i].Locked = true
  3258. elseif a[i].className == "Model" then
  3259. local r = a[i]:getChildren()
  3260. for i = 1, #r do
  3261. if r[i].className == "Part" then
  3262. r[i].Locked = true
  3263. end
  3264. end
  3265. end
  3266. end
  3267. end
  3268. if string.sub(msg, 1, 7) == (prefix.."btools") then
  3269. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  3270. Clone_T.BinType = "Clone"
  3271. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  3272. Destruct.BinType = "Hammer"
  3273. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  3274. Hold_T.BinType = "Grab"
  3275. end
  3276. if string.sub(msg, 1, 7) == (prefix.."pstand") then
  3277. lplayer.Character.Humanoid.PlatformStand = true
  3278. end
  3279. if string.sub(msg, 1, 9) == (prefix.."unpstand") then
  3280. lplayer.Character.Humanoid.PlatformStand = false
  3281. end
  3282. if string.sub(msg, 1, 10) == (prefix.."blockhead") then
  3283. lplayer.Character.Head.Mesh:Destroy()
  3284. end
  3285. if string.sub(msg, 1, 4) == (prefix.."sit") then
  3286. lplayer.Character.Humanoid.Sit = true
  3287. end
  3288. if string.sub(msg, 1, 10) == (prefix.."bringobj ") then
  3289. local function bringobjw()
  3290. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  3291. if obj.Name == (string.sub(msg, 11)) then
  3292. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  3293. obj.CanCollide = false
  3294. obj.Transparency = 0.7
  3295. wait()
  3296. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  3297. wait()
  3298. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  3299. wait()
  3300. obj.CFrame = lplayer.Character["Head"].CFrame
  3301. end
  3302. end
  3303. end
  3304. while wait() do
  3305. bringobjw()
  3306. end
  3307. game:GetService("StarterGui"):SetCore("SendNotification", {
  3308. Title = "BringObj";
  3309. Text = "BringObj enabled.";
  3310. })
  3311. end
  3312. if string.sub(msg, 1, 7) == (prefix.."wsvis ") then
  3313. vis = (string.sub(msg, 8))
  3314. local a = game:GetService("Workspace"):GetDescendants()
  3315. for i = 1, #a do
  3316. if a[i].className == "Part" then
  3317. a[i].Transparency = vis
  3318. elseif a[i].className == "Model" then
  3319. local r = a[i]:getChildren()
  3320. for i = 1, #r do
  3321. if r[i].className == "Part" then
  3322. r[i].Transparency = vis
  3323. end
  3324. end
  3325. end
  3326. end
  3327. end
  3328. if string.sub(msg, 1, 11) == (prefix.."hypertotal") then
  3329. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  3330. game:GetService("StarterGui"):SetCore("SendNotification", {
  3331. Title = "Success!";
  3332. Text = "HyperTotal GUI Loaded!";
  3333. })
  3334. end
  3335. if string.sub(msg, 1, 5) == (prefix.."cmds") then
  3336. CMDSFRAME.Visible = true
  3337. end
  3338. if string.sub(msg, 1, 10) == (prefix.."rmeshhats") then
  3339. for i,v in pairs(lplayer.Character:GetChildren()) do
  3340. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  3341. v.Handle.Mesh:Destroy()
  3342. end
  3343. end
  3344. end
  3345. if string.sub(msg, 1, 10) == (prefix.."blockhats") then
  3346. for i,v in pairs(lplayer.Character:GetChildren()) do
  3347. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  3348. v.Handle.Mesh:Destroy()
  3349. end
  3350. end
  3351. end
  3352. if string.sub(msg, 1, 10) == (prefix.."rmeshtool") then
  3353. for i,v in pairs(lplayer.Character:GetChildren()) do
  3354. if (v:IsA("Tool")) then
  3355. v.Handle.Mesh:Destroy()
  3356. end
  3357. end
  3358. end
  3359. if string.sub(msg, 1, 10) == (prefix.."blocktool") then
  3360. for i,v in pairs(lplayer.Character:GetChildren()) do
  3361. if (v:IsA("Tool")) then
  3362. v.Handle.Mesh:Destroy()
  3363. end
  3364. end
  3365. end
  3366. if string.sub(msg, 1, 8) == (prefix.."spinner") then
  3367. local p = Instance.new("RocketPropulsion")
  3368. p.Parent = lplayer.Character.HumanoidRootPart
  3369. p.Name = "Spinner"
  3370. p.Target = lplayer.Character["Left Arm"]
  3371. p:Fire()
  3372. game:GetService("StarterGui"):SetCore("SendNotification", {
  3373. Title = "Spinner enabled";
  3374. Text = "Type ;nospinner to disable.";
  3375. })
  3376. end
  3377. if string.sub(msg, 1, 10) == (prefix.."nospinner") then
  3378. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  3379. end
  3380. if string.sub(msg, 1, 7) == (prefix.."reachd") then
  3381. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  3382. if v:isA("Tool") then
  3383. local a = Instance.new("SelectionBox",v.Handle)
  3384. a.Adornee = v.Handle
  3385. v.Handle.Size = Vector3.new(0.5,0.5,60)
  3386. v.GripPos = Vector3.new(0,0,0)
  3387. lplayer.Character.Humanoid:UnequipTools()
  3388. end
  3389. end
  3390. game:GetService("StarterGui"):SetCore("SendNotification", {
  3391. Title = "Reach applied!";
  3392. Text = "Applied to equipped sword. Use ;noreach to disable.";
  3393. })
  3394. end
  3395. if string.sub(msg, 1, 7) == (prefix.."reach ") then
  3396. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  3397. if v:isA("Tool") then
  3398. handleSize = v.Handle.Size
  3399. wait()
  3400. local a = Instance.new("SelectionBox",v.Handle)
  3401. a.Name = "a"
  3402. a.Adornee = v.Handle
  3403. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(msg, 8)))
  3404. v.GripPos = Vector3.new(0,0,0)
  3405. lplayer.Character.Humanoid:UnequipTools()
  3406. end
  3407. end
  3408. game:GetService("StarterGui"):SetCore("SendNotification", {
  3409. Title = "Reach applied!";
  3410. Text = "Applied to equipped sword. Use ;noreach to disable.";
  3411. })
  3412. end
  3413. if string.sub(msg, 1, 8) == (prefix.."noreach") then
  3414. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  3415. if v:isA("Tool") then
  3416. v.Handle.a:Destroy()
  3417. v.Handle.Size = handleSize
  3418. end
  3419. end
  3420. game:GetService("StarterGui"):SetCore("SendNotification", {
  3421. Title = "Reach removed!";
  3422. Text = "Removed reach from equipped sword.";
  3423. })
  3424. end
  3425. if string.sub(msg, 1, 7) == (prefix.."rkill ") then
  3426. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  3427. lplayer.Character.Humanoid.Name = 1
  3428. local l = lplayer.Character["1"]:Clone()
  3429. l.Parent = lplayer.Character
  3430. l.Name = "Humanoid"
  3431. wait(0.1)
  3432. lplayer.Character["1"]:Destroy()
  3433. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  3434. lplayer.Character.Animate.Disabled = true
  3435. wait(0.1)
  3436. lplayer.Character.Animate.Disabled = false
  3437. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  3438. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  3439. lplayer.Character.Humanoid:EquipTool(v)
  3440. end
  3441. wait(0.1)
  3442. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  3443. wait(0.2)
  3444. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  3445. wait(0.5)
  3446. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  3447. game:GetService("StarterGui"):SetCore("SendNotification", {
  3448. Title = "Tools needed!";
  3449. Text = "You need a tool in your backpack for this command!";
  3450. })
  3451. end
  3452. end
  3453. if string.sub(msg, 1, 7) == (prefix.."tp me ") then
  3454. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  3455. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  3456. end
  3457. end
  3458. if string.sub(msg, 1, 8) == (prefix.."cbring ") then
  3459. if (string.sub(msg, 9)) == "all" or (string.sub(msg, 9)) == "All" or (string.sub(msg, 9)) == "ALL" then
  3460. cbringall = true
  3461. else
  3462. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  3463. brplr = v.Name
  3464. end
  3465. end
  3466. cbring = true
  3467. end
  3468. if string.sub(msg, 1, 9) == (prefix.."uncbring") then
  3469. cbring = false
  3470. cbringall = false
  3471. end
  3472. if string.sub(msg, 1, 6) == (prefix.."swap ") then
  3473. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  3474. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  3475. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  3476. lplayer.Character.Humanoid.Name = 1
  3477. local l = lplayer.Character["1"]:Clone()
  3478. l.Parent = lplayer.Character
  3479. l.Name = "Humanoid"
  3480. wait(0.1)
  3481. lplayer.Character["1"]:Destroy()
  3482. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  3483. lplayer.Character.Animate.Disabled = true
  3484. wait(0.1)
  3485. lplayer.Character.Animate.Disabled = false
  3486. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  3487. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  3488. lplayer.Character.Humanoid:EquipTool(v)
  3489. end
  3490. local function tp(player,player2)
  3491. local char1,char2=player.Character,player2.Character
  3492. if char1 and char2 then
  3493. char1:MoveTo(char2.Head.Position)
  3494. end
  3495. end
  3496. wait(0.1)
  3497. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  3498. wait(0.2)
  3499. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  3500. wait(0.5)
  3501. lplayer.Character.HumanoidRootPart.CFrame = NOW
  3502. wait(0.6)
  3503. tp(lplayer, game:GetService("Players")[v.Name])
  3504. wait(0.4)
  3505. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  3506. game:GetService("StarterGui"):SetCore("SendNotification", {
  3507. Title = "Tools needed!";
  3508. Text = "You need a tool in your backpack for this command!";
  3509. })
  3510. end
  3511. end
  3512. if string.sub(msg, 1, 8) == (prefix.."glitch ") then
  3513. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  3514. lplayer.Character.Humanoid.Name = 1
  3515. local l = lplayer.Character["1"]:Clone()
  3516. l.Parent = lplayer.Character
  3517. l.Name = "Humanoid"
  3518. wait(0.1)
  3519. lplayer.Character["1"]:Destroy()
  3520. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  3521. lplayer.Character.Animate.Disabled = true
  3522. wait(0.1)
  3523. lplayer.Character.Animate.Disabled = false
  3524. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  3525. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  3526. lplayer.Character.Humanoid:EquipTool(v)
  3527. end
  3528. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  3529. wait(0.3)
  3530. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  3531. wait(0.4)
  3532. b = Instance.new("BodyForce")
  3533. b.Parent = lplayer.Character.HumanoidRootPart
  3534. b.Name = "Glitch"
  3535. b.Force = Vector3.new(100000000,5000,0)
  3536. game:GetService("StarterGui"):SetCore("SendNotification", {
  3537. Title = "Tools needed!";
  3538. Text = "You need a tool in your backpack for this command!";
  3539. })
  3540. end
  3541. end
  3542. if string.sub(msg, 1, 9) == (prefix.."unglitch") then
  3543. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  3544. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  3545. b = Instance.new("BodyForce")
  3546. b.Parent = lplayer.Character.HumanoidRootPart
  3547. b.Name = "unGlitch"
  3548. b.Force = Vector3.new(0,-5000000,0)
  3549. wait(2)
  3550. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  3551. end
  3552. if string.sub(msg, 1, 9) == (prefix.."grespawn") then
  3553. lplayer.Character.Humanoid.Health = 0
  3554. wait(1)
  3555. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  3556. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  3557. end
  3558. if string.sub(msg, 1, 9) == (prefix.."explorer") then
  3559. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  3560. game:GetService("StarterGui"):SetCore("SendNotification", {
  3561. Title = "Success!";
  3562. Text = "DEX Explorer has loaded.";
  3563. })
  3564. end
  3565. if string.sub(msg, 1, 6) == (prefix.."anim ") then
  3566. local Anim = Instance.new("Animation")
  3567. Anim.AnimationId = "rbxassetid://"..(string.sub(msg, 7))
  3568. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  3569. track:Play(.1, 1, 1)
  3570. end
  3571. if string.sub(msg, 1, 8) == (prefix.."animgui") then
  3572. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  3573. game:GetService("StarterGui"):SetCore("SendNotification", {
  3574. Title = "Success!";
  3575. Text = "Energize Animations GUI has loaded.";
  3576. })
  3577. end
  3578. if string.sub(msg, 1, 8) == (prefix.."savepos") then
  3579. saved = lplayer.Character.HumanoidRootPart.CFrame
  3580. game:GetService("StarterGui"):SetCore("SendNotification", {
  3581. Title = "Position Saved";
  3582. Text = "Use ;loadpos to return to saved position.";
  3583. })
  3584. end
  3585. if string.sub(msg, 1, 8) == (prefix.."loadpos") then
  3586. lplayer.Character.HumanoidRootPart.CFrame = saved
  3587. end
  3588. if string.sub(msg, 1, 6) == (prefix.."bang ") then
  3589. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  3590. local Anim2 = Instance.new("Animation")
  3591. Anim2.AnimationId = "rbxassetid://148840371"
  3592. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  3593. track2:Play(.1, 1, 1)
  3594. bplrr = v.Name
  3595. banpl = true
  3596. end
  3597. end
  3598. if string.sub(msg, 1, 7) == (prefix.."unbang") then
  3599. banpl = false
  3600. end
  3601. if string.sub(msg, 1, 10) == (prefix.."bringmod ") then
  3602. local function bringmodw()
  3603. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  3604. if obj.Name == (string.sub(msg, 11)) then
  3605. for i,ch in pairs(obj:GetDescendants()) do
  3606. if (ch:IsA("BasePart")) then
  3607. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  3608. ch.CanCollide = false
  3609. ch.Transparency = 0.7
  3610. wait()
  3611. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  3612. wait()
  3613. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  3614. wait()
  3615. ch.CFrame = lplayer.Character["Head"].CFrame
  3616. end
  3617. end
  3618. end
  3619. end
  3620. end
  3621. while wait() do
  3622. bringmodw()
  3623. end
  3624. game:GetService("StarterGui"):SetCore("SendNotification", {
  3625. Title = "BringMod";
  3626. Text = "BringMod enabled.";
  3627. })
  3628. end
  3629. if string.sub(msg, 1, 8) == (prefix.."respawn") then
  3630. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  3631. local hum = Instance.new('Humanoid', mod)
  3632. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  3633. lplayer.Character = mod
  3634. end
  3635. if string.sub(msg, 1, 9) == (prefix.."shutdown") then
  3636. game:GetService'RunService'.Stepped:Connect(function()
  3637. pcall(function()
  3638. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  3639. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  3640. for _,x in pairs(v.Character.Head:GetChildren()) do
  3641. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  3642. end
  3643. end
  3644. end
  3645. end)
  3646. end)
  3647. game:GetService("StarterGui"):SetCore("SendNotification", {
  3648. Title = "Attempting Shutdown";
  3649. Text = "Shutdown Attempt has begun.";
  3650. })
  3651. end
  3652. if string.sub(msg, 1, 8) == (prefix.."delobj ") then
  3653. objtodel = (string.sub(msg, 9))
  3654. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  3655. if v.Name == objtodel then
  3656. v:Destroy()
  3657. end
  3658. end
  3659. end
  3660. if string.sub(msg, 1, 8) == (prefix.."getplrs") then
  3661. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  3662. print(v)
  3663. end
  3664. game:GetService("StarterGui"):SetCore("SendNotification", {
  3665. Title = "Printed";
  3666. Text = "Players have been printed to console. (F9)";
  3667. })
  3668. end
  3669. if string.sub(msg, 1, 9) == (prefix.."deldecal") then
  3670. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  3671. if (v:IsA("Decal")) then
  3672. v:Destroy()
  3673. end
  3674. end
  3675. end
  3676. if string.sub(msg, 1, 11) == (prefix.."opfinality") then
  3677. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  3678. game:GetService("StarterGui"):SetCore("SendNotification", {
  3679. Title = "Success!";
  3680. Text = "OpFinality GUI has loaded.";
  3681. })
  3682. end
  3683. if string.sub(msg, 1, 8) == (prefix.."remotes") then
  3684. remotes = true
  3685. added = true
  3686. game.DescendantAdded:connect(function(rmt)
  3687. if added == true then
  3688. if remotes == true then
  3689. if rmt:IsA("RemoteEvent") then
  3690. print("A RemoteEvent was added!")
  3691. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  3692. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  3693. end end end
  3694. end)
  3695. game.DescendantAdded:connect(function(rmtfnctn)
  3696. if added == true then
  3697. if remotes == true then
  3698. if rmtfnctn:IsA("RemoteFunction") then
  3699. warn("A RemoteFunction was added!")
  3700. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  3701. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  3702. end end end
  3703. end)
  3704.  
  3705. game.DescendantAdded:connect(function(bndfnctn)
  3706. if added == true then
  3707. if binds == true then
  3708. if bndfnctn:IsA("BindableFunction") then
  3709. print("A BindableFunction was added!")
  3710. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  3711. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  3712. end end end
  3713. end)
  3714.  
  3715. game.DescendantAdded:connect(function(bnd)
  3716. if added == true then
  3717. if binds == true then
  3718. if bnd:IsA("BindableEvent") then
  3719. warn("A BindableEvent was added!")
  3720. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  3721. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  3722. end end end
  3723. end)
  3724.  
  3725.  
  3726. if binds == true then
  3727. for i,v in pairs(game:GetDescendants()) do
  3728. if v:IsA("BindableFunction") then
  3729. print(" game." .. v:GetFullName() .. " | BindableFunction")
  3730. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  3731. end end
  3732. for i,v in pairs(game:GetDescendants()) do
  3733. if v:IsA("BindableEvent") then
  3734. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  3735. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  3736. end end
  3737. else
  3738. print("Off")
  3739. end
  3740. if remotes == true then
  3741. for i,v in pairs(game:GetDescendants()) do
  3742. if v:IsA("RemoteFunction") then
  3743. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  3744. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  3745. end end
  3746. wait()
  3747. for i,v in pairs(game:GetDescendants()) do
  3748. if v:IsA("RemoteEvent") then
  3749. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  3750. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  3751. end end
  3752. else
  3753. print("Off")
  3754. end
  3755. game:GetService("StarterGui"):SetCore("SendNotification", {
  3756. Title = "Printing Remotes";
  3757. Text = "Type ;noremotes to disable.";
  3758. })
  3759. end
  3760. if string.sub(msg, 1, 10) == (prefix.."noremotes") then
  3761. remotes = false
  3762. added = false
  3763. game:GetService("StarterGui"):SetCore("SendNotification", {
  3764. Title = "Printing Remotes Disabled";
  3765. Text = "Type ;remotes to enable.";
  3766. })
  3767. end
  3768. if string.sub(msg, 1, 10) == (prefix.."tpdefault") then
  3769. spin = false
  3770. followed = false
  3771. traill = false
  3772. noclip = false
  3773. annoying = false
  3774. hwalk = false
  3775. cbringing = false
  3776. end
  3777. if string.sub(msg, 1, 8) == (prefix.."stopsit") then
  3778. stopsitting = true
  3779. end
  3780. if string.sub(msg, 1, 6) == (prefix.."gosit") then
  3781. stopsitting = false
  3782. end
  3783. if string.sub(msg, 1, 8) == (prefix.."version") then
  3784. print(adminversion)
  3785. game:GetService("StarterGui"):SetCore("SendNotification", {
  3786. Title = "Version";
  3787. Text = adminversion;
  3788. })
  3789. end
  3790. if string.sub(msg, 1, 8) == (prefix.."clicktp") then
  3791. clickgoto = true
  3792. game:GetService("StarterGui"):SetCore("SendNotification", {
  3793. Title = "Click TP";
  3794. Text = "Press E to teleport to mouse position, ;noclicktp to stop";
  3795. })
  3796. end
  3797. if string.sub(msg, 1, 9) == (prefix.."clickdel") then
  3798. clickdel = true
  3799. game:GetService("StarterGui"):SetCore("SendNotification", {
  3800. Title = "Click Delete";
  3801. Text = "Press E to delete part at mouse, ;noclickdel to stop";
  3802. })
  3803. end
  3804. if string.sub(msg, 1, 11) == (prefix.."noclickdel") then
  3805. clickdel = false
  3806. game:GetService("StarterGui"):SetCore("SendNotification", {
  3807. Title = "Click Delete";
  3808. Text = "Click delete has been disabled.";
  3809. })
  3810. end
  3811. if string.sub(msg, 1, 10) == (prefix.."noclicktp") then
  3812. clickgoto = false
  3813. game:GetService("StarterGui"):SetCore("SendNotification", {
  3814. Title = "Click TP";
  3815. Text = "Click TP has been disabled.";
  3816. })
  3817. end
  3818. if string.sub(msg, 1, 8) == (prefix.."toolson") then
  3819. gettingtools = true
  3820. game:GetService("StarterGui"):SetCore("SendNotification", {
  3821. Title = "Tools Enabled";
  3822. Text = "Automatically colleting tools dropped.";
  3823. })
  3824. end
  3825. if string.sub(msg, 1, 9) == (prefix.."toolsoff") then
  3826. gettingtools = false
  3827. game:GetService("StarterGui"):SetCore("SendNotification", {
  3828. Title = "Tools Disabled";
  3829. Text = "Click TP has been disabled.";
  3830. })
  3831. end
  3832. if string.sub(msg, 1, 10) == (prefix.."delcmdbar") then
  3833. ScreenGui:Destroy()
  3834. end
  3835. if string.sub(msg, 1, 6) == (prefix.."reset") then
  3836. lplayer.Character.Head:Destroy()
  3837. end
  3838. if string.sub(msg, 1, 7) == (prefix.."state ") then
  3839. statechosen = string.sub(msg, 8)
  3840. changingstate = true
  3841. end
  3842. if string.sub(msg, 1, 9) == (prefix.."gravity ") then
  3843. game:GetService("Workspace").Gravity = string.sub(msg, 10)
  3844. end
  3845. if string.sub(msg, 1, 10) == (prefix.."looprhats") then
  3846. removingmeshhats = true
  3847. end
  3848. if string.sub(msg, 1, 12) == (prefix.."unlooprhats") then
  3849. removingmeshhats = false
  3850. end
  3851. if string.sub(msg, 1, 10) == (prefix.."looprtool") then
  3852. removingmeshtool = true
  3853. end
  3854. if string.sub(msg, 1, 12) == (prefix.."unlooprtool") then
  3855. removingmeshtool = false
  3856. end
  3857. if string.sub(msg, 1, 10) == (prefix.."givetool ") then
  3858. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  3859. if v:IsA("Tool") then
  3860. for i,player in pairs(GetPlayer(string.sub(msg, 11))) do
  3861. v.Parent = player.Character
  3862. end
  3863. end
  3864. end
  3865. end
  3866. if string.sub(msg, 1, 14) == (prefix.."givealltools ") then
  3867. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  3868. if v:IsA("Tool") then
  3869. v.Parent = lplayer.Character
  3870. wait()
  3871. for i,player in pairs(GetPlayer(string.sub(msg, 15))) do
  3872. v.Parent = player.Character
  3873. end
  3874. end
  3875. end
  3876. end
  3877. if string.sub(msg, 1, 5) == (prefix.."age ") then
  3878. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  3879. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  3880. end
  3881. end
  3882. if string.sub(msg, 1, 4) == (prefix.."id ") then
  3883. for i,player in pairs(GetPlayer(string.sub(msg, 5))) do
  3884. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  3885. end
  3886. end
  3887. if string.sub(msg, 1, 6) == (prefix..".age ") then
  3888. for i,player in pairs(GetPlayer(string.sub(msg, 7))) do
  3889. game:GetService("StarterGui"):SetCore("SendNotification", {
  3890. Title = player.AccountAge.." Days";
  3891. Text = "Account age of "..player.Name;
  3892. })
  3893. end
  3894. end
  3895. if string.sub(msg, 1, 5) == (prefix..".id ") then
  3896. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  3897. game:GetService("StarterGui"):SetCore("SendNotification", {
  3898. Title = player.UserId.." ID";
  3899. Text = "Account ID of "..player.Name;
  3900. })
  3901. end
  3902. end
  3903. if string.sub(msg, 1, 7) == (prefix.."gameid") then
  3904. game:GetService("StarterGui"):SetCore("SendNotification", {
  3905. Title = "Game ID";
  3906. Text = "Game ID: ".. game.GameId;
  3907. })
  3908. end
  3909. if string.sub(msg, 1, 4) == (prefix.."pgs") then
  3910. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  3911. if pgscheck == true then
  3912. game:GetService("StarterGui"):SetCore("SendNotification", {
  3913. Title = "PGSPhysicsSolverEnabled";
  3914. Text = "PGS is Enabled!";
  3915. })
  3916. else
  3917. game:GetService("StarterGui"):SetCore("SendNotification", {
  3918. Title = "PGSPhysicsSolverEnabled";
  3919. Text = "PGS is Disabled!";
  3920. })
  3921. end
  3922. end
  3923. if string.sub(msg, 1, 12) == (prefix.."removeinvis") then
  3924. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  3925. if v:IsA("Part") then
  3926. if v.Transparency == 1 then
  3927. if v.Name ~= "HumanoidRootPart" then
  3928. v:Destroy()
  3929. end
  3930. end
  3931. end
  3932. end
  3933. end
  3934. if string.sub(msg, 1, 10) == (prefix.."removefog") then
  3935. game:GetService("Lighting").FogStart = 0
  3936. game:GetService("Lighting").FogEnd = 9999999999999
  3937. end
  3938. if string.sub(msg, 1, 8) == (prefix.."disable") then
  3939. lplayer.Character.Humanoid.Parent = lplayer
  3940. end
  3941. if string.sub(msg, 1, 7) == (prefix.."enable") then
  3942. lplayer.Humanoid.Parent = lplayer.Character
  3943. end
  3944. if string.sub(msg, 1, 8) == (prefix.."prefix ") then
  3945. prefix = (string.sub(msg, 9, 9))
  3946. wait(0.1)
  3947. change()
  3948. wait(0.1)
  3949. game:GetService("StarterGui"):SetCore("SendNotification", {
  3950. Title = "Prefix changed!";
  3951. Text = "Prefix is now "..prefix..". Use ;resetprefix to reset to ;";
  3952. })
  3953. end
  3954. if string.sub(msg, 1, 12) == (";resetprefix") then
  3955. prefix = ";"
  3956. wait(0.1)
  3957. change()
  3958. wait(0.1)
  3959. game:GetService("StarterGui"):SetCore("SendNotification", {
  3960. Title = "Prefix changed!";
  3961. Text = "Prefix is now "..prefix..". Make sure it's one key!";
  3962. })
  3963. end
  3964. if string.sub(msg, 1, 10) == (prefix.."flyspeed ") then
  3965. speedfly = string.sub(msg, 11)
  3966. wait()
  3967. change()
  3968. end
  3969. if string.sub(msg, 1, 8) == (prefix.."carpet ") then
  3970. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  3971. local Anim3 = Instance.new("Animation")
  3972. Anim3.AnimationId = "rbxassetid://282574440"
  3973. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  3974. track3:Play(.1, 1, 1)
  3975. bplrr = v.Name
  3976. banpl = true
  3977. end
  3978. end
  3979. if string.sub(msg, 1, 9) == (prefix.."uncarpet") then
  3980. banpl = false
  3981. end
  3982. if string.sub(msg, 1, 7) == (prefix.."stare ") then
  3983. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  3984. staring = true
  3985. stareplr = v
  3986. end
  3987. end
  3988. if string.sub(msg, 1, 8) == (prefix.."unstare") then
  3989. staring = false
  3990. end
  3991. if string.sub(msg, 1, 8) == (prefix.."logchat") then
  3992. chatlogs = true
  3993. game:GetService("StarterGui"):SetCore("SendNotification", {
  3994. Title = "LogChat enabled";
  3995. Text = "Now logging all player chat.";
  3996. })
  3997. end
  3998. if string.sub(msg, 1, 10) == (prefix.."unlogchat") then
  3999. chatlogs = false
  4000. game:GetService("StarterGui"):SetCore("SendNotification", {
  4001. Title = "LogChat disabled";
  4002. Text = "Stopped logging all player chat.";
  4003. })
  4004. end
  4005. if string.sub(msg, 1, 7) == (prefix.."fixcam") then
  4006. game:GetService("Workspace").CurrentCamera:Destroy()
  4007. wait(0.1)
  4008. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  4009. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  4010. lplayer.CameraMinZoomDistance = 0.5
  4011. lplayer.CameraMaxZoomDistance = 400
  4012. lplayer.CameraMode = "Classic"
  4013. end
  4014. if string.sub(msg, 1, 8) == (prefix.."unstate") then
  4015. changingstate = false
  4016. end
  4017. end)
  4018.  
  4019. local function tp()
  4020. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  4021. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  4022. if player.Name == brplr then
  4023. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 2
  4024. end
  4025. end
  4026. end
  4027. end
  4028. local function tpall()
  4029. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  4030. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  4031. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 3
  4032. end
  4033. end
  4034. end
  4035. spawn(function()
  4036. while wait(spamdelay) do
  4037. if spamming == true then
  4038. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
  4039. end
  4040. end
  4041. end)
  4042. spawn(function()
  4043. while wait(spamdelay) do
  4044. if spammingpm == true then
  4045. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..pmspammed.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
  4046. end
  4047. end
  4048. end)
  4049. spawn(function()
  4050. while wait() do
  4051. if cbring == true then
  4052. tp()
  4053. end
  4054. end
  4055. end)
  4056. spawn(function()
  4057. while wait() do
  4058. if cbringall == true then
  4059. tpall()
  4060. end
  4061. end
  4062. end)
  4063.  
  4064. Mouse.KeyDown:connect(function(Key)
  4065. if Key == prefix then
  4066. CMDBAR:CaptureFocus()
  4067. end
  4068. end)
  4069.  
  4070. CMDBAR.FocusLost:connect(function(enterPressed)
  4071. if enterPressed then
  4072. if string.sub(CMDBAR.Text, 1, 5) == ("kill ") then
  4073. if string.sub(CMDBAR.Text, 6) == "me" then
  4074. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  4075. else
  4076. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6)))do
  4077. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4078. lplayer.Character.Humanoid.Name = 1
  4079. local l = lplayer.Character["1"]:Clone()
  4080. l.Parent = lplayer.Character
  4081. l.Name = "Humanoid"
  4082. wait(0.1)
  4083. lplayer.Character["1"]:Destroy()
  4084. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4085. lplayer.Character.Animate.Disabled = true
  4086. wait(0.1)
  4087. lplayer.Character.Animate.Disabled = false
  4088. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4089. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4090. lplayer.Character.Humanoid:EquipTool(v)
  4091. end
  4092. local function tp(player,player2)
  4093. local char1,char2=player.Character,player2.Character
  4094. if char1 and char2 then
  4095. char1:MoveTo(char2.Head.Position)
  4096. end
  4097. end
  4098. wait(0.1)
  4099. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4100. wait(0.2)
  4101. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4102. wait(0.5)
  4103. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  4104. wait(0.7)
  4105. tp(lplayer,game:GetService("Players")[v.Name])
  4106. wait(0.7)
  4107. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4108. game:GetService("StarterGui"):SetCore("SendNotification", {
  4109. Title = "Tools needed!";
  4110. Text = "You need a tool in your backpack for this command!";
  4111. })
  4112. end
  4113. end
  4114. end
  4115. if string.sub(CMDBAR.Text, 1, 6) == ("bring ") then
  4116. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  4117. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4118. lplayer.Character.Humanoid.Name = 1
  4119. local l = lplayer.Character["1"]:Clone()
  4120. l.Parent = lplayer.Character
  4121. l.Name = "Humanoid"
  4122. wait(0.1)
  4123. lplayer.Character["1"]:Destroy()
  4124. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4125. lplayer.Character.Animate.Disabled = true
  4126. wait(0.1)
  4127. lplayer.Character.Animate.Disabled = false
  4128. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4129. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4130. lplayer.Character.Humanoid:EquipTool(v)
  4131. end
  4132. local function tp(player,player2)
  4133. local char1,char2=player.Character,player2.Character
  4134. if char1 and char2 then
  4135. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  4136. end
  4137. end
  4138. local function getout(player,player2)
  4139. local char1,char2=player.Character,player2.Character
  4140. if char1 and char2 then
  4141. char1:MoveTo(char2.Head.Position)
  4142. end
  4143. end
  4144. tp(game:GetService("Players")[v.Name], lplayer)
  4145. wait(0.2)
  4146. tp(game:GetService("Players")[v.Name], lplayer)
  4147. wait(0.5)
  4148. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4149. wait(0.5)
  4150. getout(lplayer, game:GetService("Players")[v.Name])
  4151. wait(0.3)
  4152. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4153. game:GetService("StarterGui"):SetCore("SendNotification", {
  4154. Title = "Tools needed!";
  4155. Text = "You need a tool in your backpack for this command!";
  4156. })
  4157. end
  4158. end
  4159. if string.sub(CMDBAR.Text, 1, 5) == ("spin ") then
  4160. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  4161. lplayer.Character.Humanoid.Name = 1
  4162. local l = lplayer.Character["1"]:Clone()
  4163. l.Parent = lplayer.Character
  4164. l.Name = "Humanoid"
  4165. wait(0.1)
  4166. lplayer.Character["1"]:Destroy()
  4167. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4168. lplayer.Character.Animate.Disabled = true
  4169. wait(0.1)
  4170. lplayer.Character.Animate.Disabled = false
  4171. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4172. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4173. lplayer.Character.Humanoid:EquipTool(v)
  4174. end
  4175. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4176. spinplr = v
  4177. wait(0.5)
  4178. spin = true
  4179. game:GetService("StarterGui"):SetCore("SendNotification", {
  4180. Title = "Tools needed!";
  4181. Text = "You need a tool in your backpack for this command!";
  4182. })
  4183. end
  4184. end
  4185. if string.sub(CMDBAR.Text, 1, 6) == ("unspin") then
  4186. spin = false
  4187. end
  4188. if string.sub(CMDBAR.Text, 1, 7) == ("attach ") then
  4189. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  4190. lplayer.Character.Humanoid.Name = 1
  4191. local l = lplayer.Character["1"]:Clone()
  4192. l.Parent = lplayer.Character
  4193. l.Name = "Humanoid"
  4194. wait(0.1)
  4195. lplayer.Character["1"]:Destroy()
  4196. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4197. lplayer.Character.Animate.Disabled = true
  4198. wait(0.1)
  4199. lplayer.Character.Animate.Disabled = false
  4200. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4201. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4202. lplayer.Character.Humanoid:EquipTool(v)
  4203. end
  4204. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4205. wait(0.3)
  4206. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4207. attplr = v
  4208. game:GetService("StarterGui"):SetCore("SendNotification", {
  4209. Title = "Tools needed!";
  4210. Text = "You need a tool in your backpack for this command!";
  4211. })
  4212. end
  4213. end
  4214. if string.sub(CMDBAR.Text, 1, 9) == ("unattach ") then
  4215. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  4216. local function getout(player,player2)
  4217. local char1,char2=player.Character,player2.Character
  4218. if char1 and char2 then
  4219. char1:MoveTo(char2.Head.Position)
  4220. end
  4221. end
  4222. getout(lplayer, game:GetService("Players")[v.Name])
  4223. end
  4224. end
  4225. if string.sub(CMDBAR.Text, 1, 7) == ("follow ") then
  4226. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  4227. followed = true
  4228. flwplr = v
  4229. end
  4230. end
  4231. if string.sub(CMDBAR.Text, 1, 8) == ("unfollow") then
  4232. followed = false
  4233. end
  4234. if string.sub(CMDBAR.Text, 1, 9) == ("freefall ") then
  4235. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  4236. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4237. lplayer.Character.Humanoid.Name = 1
  4238. local l = lplayer.Character["1"]:Clone()
  4239. l.Parent = lplayer.Character
  4240. l.Name = "Humanoid"
  4241. wait(0.1)
  4242. lplayer.Character["1"]:Destroy()
  4243. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4244. lplayer.Character.Animate.Disabled = true
  4245. wait(0.1)
  4246. lplayer.Character.Animate.Disabled = false
  4247. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4248. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4249. lplayer.Character.Humanoid:EquipTool(v)
  4250. end
  4251. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4252. wait(0.2)
  4253. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4254. wait(0.6)
  4255. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4256. wait(0.6)
  4257. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  4258. game:GetService("StarterGui"):SetCore("SendNotification", {
  4259. Title = "Tools needed!";
  4260. Text = "You need a tool in your backpack for this command!";
  4261. })
  4262. end
  4263. end
  4264. if string.sub(CMDBAR.Text, 1, 6) == ("trail ") then
  4265. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  4266. traill = true
  4267. trlplr = v
  4268. end
  4269. end
  4270. if string.sub(CMDBAR.Text, 1, 7) == ("untrail") then
  4271. traill = false
  4272. end
  4273. if string.sub(CMDBAR.Text, 1, 6) == ("orbit ") then
  4274. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  4275. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4276. else
  4277. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  4278. local o = Instance.new("RocketPropulsion")
  4279. o.Parent = lplayer.Character.HumanoidRootPart
  4280. o.Name = "Orbit"
  4281. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  4282. o:Fire()
  4283. noclip = true
  4284. end
  4285. end
  4286. end
  4287. if string.sub(CMDBAR.Text, 1, 7) == ("unorbit") then
  4288. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  4289. noclip = false
  4290. end
  4291. if string.sub(CMDBAR.Text, 1, 6) == ("fling ") then
  4292. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  4293. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4294. else
  4295. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  4296. local y = Instance.new("RocketPropulsion")
  4297. y.Parent = lplayer.Character.HumanoidRootPart
  4298. y.CartoonFactor = 1
  4299. y.MaxThrust = 800000
  4300. y.MaxSpeed = 1000
  4301. y.ThrustP = 200000
  4302. y.Name = "Fling"
  4303. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  4304. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  4305. y:Fire()
  4306. noclip = true
  4307. end
  4308. end
  4309. end
  4310. if string.sub(CMDBAR.Text, 1, 7) == ("unfling") then
  4311. noclip = false
  4312. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  4313. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  4314. wait(0.4)
  4315. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  4316. end
  4317. if string.sub(CMDBAR.Text, 1, 7) == ("fecheck") then
  4318. if game:GetService("Workspace").FilteringEnabled == true then
  4319. warn("FE is Enabled (Filtering Enabled)")
  4320. game:GetService("StarterGui"):SetCore("SendNotification", {
  4321. Title = "FE is Enabled";
  4322. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  4323. })
  4324. else
  4325. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  4326. game:GetService("StarterGui"):SetCore("SendNotification", {
  4327. Title = "FE is Disabled";
  4328. Text = "Filtering Disabled. Consider using a different admin script.";
  4329. })
  4330. end
  4331. end
  4332. if string.sub(CMDBAR.Text, 1, 5) == ("void ") then
  4333. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  4334. lplayer.Character.Humanoid.Name = 1
  4335. local l = lplayer.Character["1"]:Clone()
  4336. l.Parent = lplayer.Character
  4337. l.Name = "Humanoid"
  4338. wait(0.1)
  4339. lplayer.Character["1"]:Destroy()
  4340. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4341. lplayer.Character.Animate.Disabled = true
  4342. wait(0.1)
  4343. lplayer.Character.Animate.Disabled = false
  4344. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4345. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4346. lplayer.Character.Humanoid:EquipTool(v)
  4347. end
  4348. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4349. wait(0.2)
  4350. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4351. wait(0.6)
  4352. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  4353. game:GetService("StarterGui"):SetCore("SendNotification", {
  4354. Title = "Tools needed!";
  4355. Text = "You need a tool in your backpack for this command!";
  4356. })
  4357. end
  4358. end
  4359. if string.sub(CMDBAR.Text, 1, 6) == ("noclip") then
  4360. noclip = true
  4361. game:GetService("StarterGui"):SetCore("SendNotification", {
  4362. Title = "Noclip enabled";
  4363. Text = "Type ;clip to disable";
  4364. })
  4365. end
  4366. if string.sub(CMDBAR.Text, 1, 4) == ("clip") then
  4367. noclip = false
  4368. game:GetService("StarterGui"):SetCore("SendNotification", {
  4369. Title = "Noclip disabled";
  4370. Text = "Type ;noclip to enable";
  4371. })
  4372. end
  4373. if string.sub(CMDBAR.Text, 1, 6) == ("speed ") then
  4374. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 7))
  4375. end
  4376. if string.sub(CMDBAR.Text, 1, 3) == ("ws ") then
  4377. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 4))
  4378. end
  4379. if string.sub(CMDBAR.Text, 1, 10) == ("hipheight ") then
  4380. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 11))
  4381. end
  4382. if string.sub(CMDBAR.Text, 1, 3) == ("hh ") then
  4383. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 4))
  4384. end
  4385. if string.sub(CMDBAR.Text, 1, 10) == ("jumppower ") then
  4386. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 11))
  4387. end
  4388. if string.sub(CMDBAR.Text, 1, 3) == ("jp ") then
  4389. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 4))
  4390. end
  4391. if string.sub(CMDBAR.Text, 1, 7) == ("default") then
  4392. lplayer.Character.Humanoid.JumpPower = 50
  4393. lplayer.Character.Humanoid.WalkSpeed = 16
  4394. lplayer.Character.Humanoid.HipHeight = 0
  4395. end
  4396. if string.sub(CMDBAR.Text, 1, 6) == ("annoy ") then
  4397. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  4398. annoying = true
  4399. annplr = v
  4400. end
  4401. end
  4402. if string.sub(CMDBAR.Text, 1, 7) == ("unannoy") then
  4403. annoying = false
  4404. end
  4405. if string.sub(CMDBAR.Text, 1, 9) == ("headwalk ") then
  4406. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  4407. hwalk = true
  4408. hdwplr = v
  4409. end
  4410. end
  4411. if string.sub(CMDBAR.Text, 1, 10) == ("unheadwalk") then
  4412. hwalk = false
  4413. end
  4414. if string.sub(CMDBAR.Text, 1, 7) == ("nolimbs") then
  4415. lplayer.Character["Left Leg"]:Destroy()
  4416. lplayer.Character["Left Arm"]:Destroy()
  4417. lplayer.Character["Right Leg"]:Destroy()
  4418. lplayer.Character["Right Arm"]:Destroy()
  4419. end
  4420. if string.sub(CMDBAR.Text, 1, 3) == ("god") then
  4421. lplayer.Character.Humanoid.Name = 1
  4422. local l = lplayer.Character["1"]:Clone()
  4423. l.Parent = lplayer.Character
  4424. l.Name = "Humanoid"
  4425. wait(0.1)
  4426. lplayer.Character["1"]:Destroy()
  4427. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4428. lplayer.Character.Animate.Disabled = true
  4429. wait(0.1)
  4430. lplayer.Character.Animate.Disabled = false
  4431. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4432. game:GetService("StarterGui"):SetCore("SendNotification", {
  4433. Title = "FE Godmode enabled";
  4434. Text = "Use ;grespawn or ;respawn to remove.";
  4435. })
  4436. end
  4437. if string.sub(CMDBAR.Text, 1, 8) == ("drophats") then
  4438. for i,v in pairs(lplayer.Character:GetChildren()) do
  4439. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  4440. v.Parent = workspace
  4441. end
  4442. end
  4443. end
  4444. if string.sub(CMDBAR.Text, 1, 8) == ("droptool") then
  4445. for i,v in pairs(lplayer.Character:GetChildren()) do
  4446. if (v:IsA("Tool")) then
  4447. v.Parent = workspace
  4448. end
  4449. end
  4450. end
  4451. if string.sub(CMDBAR.Text, 1, 9) == ("loopdhats") then
  4452. droppinghats = true
  4453. game:GetService("StarterGui"):SetCore("SendNotification", {
  4454. Title = "Loop Drop Enabled";
  4455. Text = "Type ;unloopdhats to disable";
  4456. })
  4457. end
  4458. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdhats") then
  4459. droppinghats = false
  4460. game:GetService("StarterGui"):SetCore("SendNotification", {
  4461. Title = "Loop Drop Disabled";
  4462. Text = "Type ;loopdhats to enable.";
  4463. })
  4464. end
  4465. if string.sub(CMDBAR.Text, 1, 9) == ("loopdtool") then
  4466. droppingtools = true
  4467. game:GetService("StarterGui"):SetCore("SendNotification", {
  4468. Title = "Loop Drop Enabled";
  4469. Text = "Type ;unloopdtool to disable";
  4470. })
  4471. end
  4472. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdtool") then
  4473. droppingtools = false
  4474. game:GetService("StarterGui"):SetCore("SendNotification", {
  4475. Title = "Loop Drop Disabled";
  4476. Text = "Type ;loopdtool to enable.";
  4477. })
  4478. end
  4479. if string.sub(CMDBAR.Text, 1, 9) == ("invisible") then -- Credit to Timeless
  4480. Local = game:GetService('Players').LocalPlayer
  4481. Char = Local.Character
  4482. touched,tpdback = false, false
  4483. box = Instance.new('Part',workspace)
  4484. box.Anchored = true
  4485. box.CanCollide = true
  4486. box.Size = Vector3.new(10,1,10)
  4487. box.Position = Vector3.new(0,10000,0)
  4488. box.Touched:connect(function(part)
  4489. if (part.Parent.Name == Local.Name) then
  4490. if touched == false then
  4491. touched = true
  4492. function apply()
  4493. if script.Disabled ~= true then
  4494. no = Char.HumanoidRootPart:Clone()
  4495. wait(.25)
  4496. Char.HumanoidRootPart:Destroy()
  4497. no.Parent = Char
  4498. Char:MoveTo(loc)
  4499. touched = false
  4500. end end
  4501. if Char then
  4502. apply()
  4503. end
  4504. end
  4505. end
  4506. end)
  4507. repeat wait() until Char
  4508. loc = Char.HumanoidRootPart.Position
  4509. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  4510. game:GetService("StarterGui"):SetCore("SendNotification", {
  4511. Title = "Invisibility enabled!";
  4512. Text = "Reset or use ;respawn to remove.";
  4513. })
  4514. end
  4515. if string.sub(CMDBAR.Text, 1, 5) == ("view ") then
  4516. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  4517. if game:GetService("Players")[v.Name].Character.Humanoid then
  4518. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  4519. else
  4520. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  4521. end
  4522. end
  4523. end
  4524. if string.sub(CMDBAR.Text, 1, 6) == ("unview") then
  4525. if lplayer.Character.Humanoid then
  4526. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  4527. else
  4528. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  4529. end
  4530. end
  4531. if string.sub(CMDBAR.Text, 1, 5) == ("goto ") then
  4532. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  4533. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4534. end
  4535. end
  4536. if string.sub(CMDBAR.Text, 1, 3) == ("fly") then
  4537. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  4538. repeat wait() until Mouse
  4539.  
  4540. local T = lplayer.Character.HumanoidRootPart
  4541. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  4542. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  4543. local SPEED = speedget
  4544.  
  4545. local function fly()
  4546. flying = true
  4547. local BG = Instance.new('BodyGyro', T)
  4548. local BV = Instance.new('BodyVelocity', T)
  4549. BG.P = 9e4
  4550. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  4551. BG.cframe = T.CFrame
  4552. BV.velocity = Vector3.new(0, 0.1, 0)
  4553. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  4554. spawn(function()
  4555. repeat wait()
  4556. lplayer.Character.Humanoid.PlatformStand = true
  4557. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  4558. SPEED = 50
  4559. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  4560. SPEED = 0
  4561. end
  4562. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  4563. 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
  4564. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  4565. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  4566. 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
  4567. else
  4568. BV.velocity = Vector3.new(0, 0.1, 0)
  4569. end
  4570. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  4571. until not flying
  4572. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  4573. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  4574. SPEED = 0
  4575. BG:destroy()
  4576. BV:destroy()
  4577. lplayer.Character.Humanoid.PlatformStand = false
  4578. end)
  4579. end
  4580. Mouse.KeyDown:connect(function(KEY)
  4581. if KEY:lower() == 'w' then
  4582. CONTROL.F = speedfly
  4583. elseif KEY:lower() == 's' then
  4584. CONTROL.B = -speedfly
  4585. elseif KEY:lower() == 'a' then
  4586. CONTROL.L = -speedfly
  4587. elseif KEY:lower() == 'd' then
  4588. CONTROL.R = speedfly
  4589. end
  4590. end)
  4591. Mouse.KeyUp:connect(function(KEY)
  4592. if KEY:lower() == 'w' then
  4593. CONTROL.F = 0
  4594. elseif KEY:lower() == 's' then
  4595. CONTROL.B = 0
  4596. elseif KEY:lower() == 'a' then
  4597. CONTROL.L = 0
  4598. elseif KEY:lower() == 'd' then
  4599. CONTROL.R = 0
  4600. end
  4601. end)
  4602. fly()
  4603. end
  4604. if string.sub(CMDBAR.Text, 1, 5) == ("unfly") then
  4605. flying = false
  4606. lplayer.Character.Humanoid.PlatformStand = false
  4607. end
  4608. if string.sub(CMDBAR.Text, 1, 5) == ("chat ") then
  4609. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(CMDBAR.Text, 6)), "All")
  4610. end
  4611. if string.sub(CMDBAR.Text, 1, 5) == ("spam ") then
  4612. spamtext = (string.sub(CMDBAR.Text, 6))
  4613. spamming = true
  4614. end
  4615. if string.sub(CMDBAR.Text, 1, 6) == ("unspam") then
  4616. spamming = false
  4617. end
  4618. if string.sub(CMDBAR.Text, 1, 9) == ("spamwait ") then
  4619. spamdelay = (string.sub(CMDBAR.Text, 10))
  4620. end
  4621. if string.sub(CMDBAR.Text, 1, 7) == ("pmspam ") then
  4622. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  4623. pmspammed = v.Name
  4624. spammingpm = true
  4625. end
  4626. end
  4627. if string.sub(CMDBAR.Text, 1, 8) == ("unpmspam") then
  4628. spammingpm = false
  4629. end
  4630. if string.sub(CMDBAR.Text, 1, 8) == ("cfreeze ") then
  4631. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 9))) do
  4632. v.Character["Left Leg"].Anchored = true
  4633. v.Character["Left Arm"].Anchored = true
  4634. v.Character["Right Leg"].Anchored = true
  4635. v.Character["Right Arm"].Anchored = true
  4636. v.Character.Torso.Anchored = true
  4637. v.Character.Head.Anchored = true
  4638. end
  4639. end
  4640. if string.sub(CMDBAR.Text, 1, 10) == ("uncfreeze ") then
  4641. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 11))) do
  4642. v.Character["Left Leg"].Anchored = false
  4643. v.Character["Left Arm"].Anchored = false
  4644. v.Character["Right Leg"].Anchored = false
  4645. v.Character["Right Arm"].Anchored = false
  4646. v.Character.Torso.Anchored = false
  4647. v.Character.Head.Anchored = false
  4648. end
  4649. end
  4650. if string.sub(CMDBAR.Text, 1, 8) == ("unlockws") then
  4651. local a = game:GetService("Workspace"):getChildren()
  4652. for i = 1, #a do
  4653. if a[i].className == "Part" then
  4654. a[i].Locked = false
  4655. elseif a[i].className == "Model" then
  4656. local r = a[i]:getChildren()
  4657. for i = 1, #r do
  4658. if r[i].className == "Part" then
  4659. r[i].Locked = false
  4660. end
  4661. end
  4662. end
  4663. end
  4664. game:GetService("StarterGui"):SetCore("SendNotification", {
  4665. Title = "Success!";
  4666. Text = "Workspace unlocked. Use ;lockws to lock.";
  4667. })
  4668. end
  4669. if string.sub(CMDBAR.Text, 1, 6) == ("lockws") then
  4670. local a = game:GetService("Workspace"):getChildren()
  4671. for i = 1, #a do
  4672. if a[i].className == "Part" then
  4673. a[i].Locked = true
  4674. elseif a[i].className == "Model" then
  4675. local r = a[i]:getChildren()
  4676. for i = 1, #r do
  4677. if r[i].className == "Part" then
  4678. r[i].Locked = true
  4679. end
  4680. end
  4681. end
  4682. end
  4683. end
  4684. if string.sub(CMDBAR.Text, 1, 6) == ("btools") then
  4685. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  4686. Clone_T.BinType = "Clone"
  4687. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  4688. Destruct.BinType = "Hammer"
  4689. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  4690. Hold_T.BinType = "Grab"
  4691. end
  4692. if string.sub(CMDBAR.Text, 1, 6) == ("pstand") then
  4693. lplayer.Character.Humanoid.PlatformStand = true
  4694. end
  4695. if string.sub(CMDBAR.Text, 1, 8) == ("unpstand") then
  4696. lplayer.Character.Humanoid.PlatformStand = false
  4697. end
  4698. if string.sub(CMDBAR.Text, 1, 9) == ("blockhead") then
  4699. lplayer.Character.Head.Mesh:Destroy()
  4700. end
  4701. if string.sub(CMDBAR.Text, 1, 3) == ("sit") then
  4702. lplayer.Character.Humanoid.Sit = true
  4703. end
  4704. if string.sub(CMDBAR.Text, 1, 9) == ("bringobj ") then
  4705. local function bringobjw()
  4706. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  4707. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  4708. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4709. obj.CanCollide = false
  4710. obj.Transparency = 0.7
  4711. wait()
  4712. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  4713. wait()
  4714. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  4715. wait()
  4716. obj.CFrame = lplayer.Character["Head"].CFrame
  4717. end
  4718. end
  4719. end
  4720. while wait() do
  4721. bringobjw()
  4722. end
  4723. game:GetService("StarterGui"):SetCore("SendNotification", {
  4724. Title = "BringObj";
  4725. Text = "BringObj enabled.";
  4726. })
  4727. end
  4728. if string.sub(CMDBAR.Text, 1, 6) == ("wsvis ") then
  4729. vis = (string.sub(CMDBAR.Text, 7))
  4730. local a = game:GetService("Workspace"):GetDescendants()
  4731. for i = 1, #a do
  4732. if a[i].className == "Part" then
  4733. a[i].Transparency = vis
  4734. elseif a[i].className == "Model" then
  4735. local r = a[i]:getChildren()
  4736. for i = 1, #r do
  4737. if r[i].className == "Part" then
  4738. r[i].Transparency = vis
  4739. end
  4740. end
  4741. end
  4742. end
  4743. end
  4744. if string.sub(CMDBAR.Text, 1, 10) == ("hypertotal") then
  4745. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  4746. game:GetService("StarterGui"):SetCore("SendNotification", {
  4747. Title = "Success!";
  4748. Text = "HyperTotal GUI Loaded!";
  4749. })
  4750. end
  4751. if string.sub(CMDBAR.Text, 1, 4) == ("cmds") then
  4752. CMDSFRAME.Visible = true
  4753. end
  4754. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshhats") then
  4755. for i,v in pairs(lplayer.Character:GetChildren()) do
  4756. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  4757. v.Handle.Mesh:Destroy()
  4758. end
  4759. end
  4760. end
  4761. if string.sub(CMDBAR.Text, 1, 9) == ("blockhats") then
  4762. for i,v in pairs(lplayer.Character:GetChildren()) do
  4763. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  4764. v.Handle.Mesh:Destroy()
  4765. end
  4766. end
  4767. end
  4768. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshtool") then
  4769. for i,v in pairs(lplayer.Character:GetChildren()) do
  4770. if (v:IsA("Tool")) then
  4771. v.Handle.Mesh:Destroy()
  4772. end
  4773. end
  4774. end
  4775. if string.sub(CMDBAR.Text, 1, 9) == ("blocktool") then
  4776. for i,v in pairs(lplayer.Character:GetChildren()) do
  4777. if (v:IsA("Tool")) then
  4778. v.Handle.Mesh:Destroy()
  4779. end
  4780. end
  4781. end
  4782. if string.sub(CMDBAR.Text, 1, 7) == ("spinner") then
  4783. local p = Instance.new("RocketPropulsion")
  4784. p.Parent = lplayer.Character.HumanoidRootPart
  4785. p.Name = "Spinner"
  4786. p.Target = lplayer.Character["Left Arm"]
  4787. p:Fire()
  4788. game:GetService("StarterGui"):SetCore("SendNotification", {
  4789. Title = "Spinner enabled";
  4790. Text = "Type ;nospinner to disable.";
  4791. })
  4792. end
  4793. if string.sub(CMDBAR.Text, 1, 9) == ("nospinner") then
  4794. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  4795. end
  4796. if string.sub(CMDBAR.Text, 1, 6) == ("reachd") then
  4797. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  4798. if v:isA("Tool") then
  4799. local a = Instance.new("SelectionBox",v.Handle)
  4800. a.Adornee = v.Handle
  4801. v.Handle.Size = Vector3.new(0.5,0.5,60)
  4802. v.GripPos = Vector3.new(0,0,0)
  4803. lplayer.Character.Humanoid:UnequipTools()
  4804. end
  4805. end
  4806. game:GetService("StarterGui"):SetCore("SendNotification", {
  4807. Title = "Reach applied!";
  4808. Text = "Applied to equipped sword. Use ;noreach to disable.";
  4809. })
  4810. end
  4811. if string.sub(CMDBAR.Text, 1, 6) == ("reach ") then
  4812. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  4813. if v:isA("Tool") then
  4814. local a = Instance.new("SelectionBox",v.Handle)
  4815. a.Name = "Reach"
  4816. a.Adornee = v.Handle
  4817. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(CMDBAR.Text, 7)))
  4818. v.GripPos = Vector3.new(0,0,0)
  4819. lplayer.Character.Humanoid:UnequipTools()
  4820. end
  4821. end
  4822. game:GetService("StarterGui"):SetCore("SendNotification", {
  4823. Title = "Reach applied!";
  4824. Text = "Applied to equipped sword. Use ;noreach to disable.";
  4825. })
  4826. end
  4827. if string.sub(CMDBAR.Text, 1, 7) == ("noreach") then
  4828. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  4829. if v:isA("Tool") then
  4830. v.Handle.Reach:Destroy()
  4831. end
  4832. end
  4833. game:GetService("StarterGui"):SetCore("SendNotification", {
  4834. Title = "Reach removed!";
  4835. Text = "Removed reach from equipped sword.";
  4836. })
  4837. end
  4838. if string.sub(CMDBAR.Text, 1, 6) == ("rkill ") then
  4839. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  4840. lplayer.Character.Humanoid.Name = 1
  4841. local l = lplayer.Character["1"]:Clone()
  4842. l.Parent = lplayer.Character
  4843. l.Name = "Humanoid"
  4844. wait(0.1)
  4845. lplayer.Character["1"]:Destroy()
  4846. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4847. lplayer.Character.Animate.Disabled = true
  4848. wait(0.1)
  4849. lplayer.Character.Animate.Disabled = false
  4850. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4851. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4852. lplayer.Character.Humanoid:EquipTool(v)
  4853. end
  4854. wait(0.1)
  4855. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4856. wait(0.2)
  4857. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4858. wait(0.5)
  4859. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  4860. game:GetService("StarterGui"):SetCore("SendNotification", {
  4861. Title = "Tools needed!";
  4862. Text = "You need a tool in your backpack for this command!";
  4863. })
  4864. end
  4865. end
  4866. if string.sub(CMDBAR.Text, 1, 6) == ("tp me ") then
  4867. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  4868. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4869. end
  4870. end
  4871. if string.sub(CMDBAR.Text, 1, 7) == ("cbring ") then
  4872. if (string.sub(CMDBAR.Text, 8)) == "all" or (string.sub(CMDBAR.Text, 8)) == "All" or (string.sub(CMDBAR.Text, 8)) == "ALL" then
  4873. cbringall = true
  4874. else
  4875. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  4876. brplr = v.Name
  4877. end
  4878. end
  4879. cbring = true
  4880. end
  4881. if string.sub(CMDBAR.Text, 1, 8) == ("uncbring") then
  4882. cbring = false
  4883. cbringall = false
  4884. end
  4885. if string.sub(CMDBAR.Text, 1, 5) == ("swap ") then
  4886. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  4887. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4888. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4889. lplayer.Character.Humanoid.Name = 1
  4890. local l = lplayer.Character["1"]:Clone()
  4891. l.Parent = lplayer.Character
  4892. l.Name = "Humanoid"
  4893. wait(0.1)
  4894. lplayer.Character["1"]:Destroy()
  4895. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4896. lplayer.Character.Animate.Disabled = true
  4897. wait(0.1)
  4898. lplayer.Character.Animate.Disabled = false
  4899. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4900. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4901. lplayer.Character.Humanoid:EquipTool(v)
  4902. end
  4903. local function tp(player,player2)
  4904. local char1,char2=player.Character,player2.Character
  4905. if char1 and char2 then
  4906. char1:MoveTo(char2.Head.Position)
  4907. end
  4908. end
  4909. wait(0.1)
  4910. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4911. wait(0.2)
  4912. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4913. wait(0.5)
  4914. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4915. wait(0.6)
  4916. tp(lplayer, game:GetService("Players")[v.Name])
  4917. wait(0.4)
  4918. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  4919. game:GetService("StarterGui"):SetCore("SendNotification", {
  4920. Title = "Tools needed!";
  4921. Text = "You need a tool in your backpack for this command!";
  4922. })
  4923. end
  4924. end
  4925. if string.sub(CMDBAR.Text, 1, 7) == ("glitch ") then
  4926. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  4927. lplayer.Character.Humanoid.Name = 1
  4928. local l = lplayer.Character["1"]:Clone()
  4929. l.Parent = lplayer.Character
  4930. l.Name = "Humanoid"
  4931. wait(0.1)
  4932. lplayer.Character["1"]:Destroy()
  4933. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4934. lplayer.Character.Animate.Disabled = true
  4935. wait(0.1)
  4936. lplayer.Character.Animate.Disabled = false
  4937. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4938. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4939. lplayer.Character.Humanoid:EquipTool(v)
  4940. end
  4941. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4942. wait(0.3)
  4943. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4944. wait(0.4)
  4945. b = Instance.new("BodyForce")
  4946. b.Parent = lplayer.Character.HumanoidRootPart
  4947. b.Name = "Glitch"
  4948. b.Force = Vector3.new(100000000,5000,0)
  4949. game:GetService("StarterGui"):SetCore("SendNotification", {
  4950. Title = "Tools needed!";
  4951. Text = "You need a tool in your backpack for this command!";
  4952. })
  4953. end
  4954. end
  4955. if string.sub(CMDBAR.Text, 1, 8) == ("unglitch") then
  4956. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  4957. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  4958. b = Instance.new("BodyForce")
  4959. b.Parent = lplayer.Character.HumanoidRootPart
  4960. b.Name = "unGlitch"
  4961. b.Force = Vector3.new(0,-5000000,0)
  4962. wait(2)
  4963. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  4964. end
  4965. if string.sub(CMDBAR.Text, 1, 8) == ("grespawn") then
  4966. lplayer.Character.Humanoid.Health = 0
  4967. wait(1)
  4968. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  4969. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  4970. end
  4971. if string.sub(CMDBAR.Text, 1, 8) == ("explorer") then
  4972. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  4973. game:GetService("StarterGui"):SetCore("SendNotification", {
  4974. Title = "Success!";
  4975. Text = "DEX Explorer has loaded.";
  4976. })
  4977. end
  4978. if string.sub(CMDBAR.Text, 1, 5) == ("anim ") then
  4979. local Anim = Instance.new("Animation")
  4980. Anim.AnimationId = "rbxassetid://"..(string.sub(CMDBAR.Text, 6))
  4981. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  4982. track:Play(.1, 1, 1)
  4983. end
  4984. if string.sub(CMDBAR.Text, 1, 7) == ("animgui") then
  4985. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  4986. game:GetService("StarterGui"):SetCore("SendNotification", {
  4987. Title = "Success!";
  4988. Text = "Energize Animations GUI has loaded.";
  4989. })
  4990. end
  4991. if string.sub(CMDBAR.Text, 1, 7) == ("savepos") then
  4992. saved = lplayer.Character.HumanoidRootPart.CFrame
  4993. game:GetService("StarterGui"):SetCore("SendNotification", {
  4994. Title = "Position Saved";
  4995. Text = "Use ;loadpos to return to saved position.";
  4996. })
  4997. end
  4998. if string.sub(CMDBAR.Text, 1, 7) == ("loadpos") then
  4999. lplayer.Character.HumanoidRootPart.CFrame = saved
  5000. end
  5001. if string.sub(CMDBAR.Text, 1, 5) == ("bang ") then
  5002. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  5003. local Anim2 = Instance.new("Animation")
  5004. Anim2.AnimationId = "rbxassetid://148840371"
  5005. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  5006. track2:Play(.1, 1, 1)
  5007. bplrr = v.Name
  5008. banpl = true
  5009. end
  5010. end
  5011. if string.sub(CMDBAR.Text, 1, 6) == ("unbang") then
  5012. banpl = false
  5013. end
  5014. if string.sub(CMDBAR.Text, 1, 9) == ("bringmod ") then
  5015. local function bringmodw()
  5016. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  5017. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  5018. for i,ch in pairs(obj:GetDescendants()) do
  5019. if (ch:IsA("BasePart")) then
  5020. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  5021. ch.CanCollide = false
  5022. ch.Transparency = 0.7
  5023. wait()
  5024. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  5025. wait()
  5026. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  5027. wait()
  5028. ch.CFrame = lplayer.Character["Head"].CFrame
  5029. end
  5030. end
  5031. end
  5032. end
  5033. end
  5034. while wait() do
  5035. bringmodw()
  5036. end
  5037. game:GetService("StarterGui"):SetCore("SendNotification", {
  5038. Title = "BringMod";
  5039. Text = "BringMod enabled.";
  5040. })
  5041. end
  5042. if string.sub(CMDBAR.Text, 1, 7) == ("respawn") then
  5043. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  5044. local hum = Instance.new('Humanoid', mod)
  5045. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  5046. lplayer.Character = mod
  5047. end
  5048. if string.sub(CMDBAR.Text, 1, 8) == ("shutdown") then
  5049. game:GetService'RunService'.Stepped:Connect(function()
  5050. pcall(function()
  5051. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  5052. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  5053. for _,x in pairs(v.Character.Head:GetChildren()) do
  5054. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  5055. end
  5056. end
  5057. end
  5058. end)
  5059. end)
  5060. game:GetService("StarterGui"):SetCore("SendNotification", {
  5061. Title = "Attempting Shutdown";
  5062. Text = "Shutdown Attempt has begun.";
  5063. })
  5064. end
  5065. if string.sub(CMDBAR.Text, 1, 7) == ("delobj ") then
  5066. objtodel = (string.sub(CMDBAR.Text, 8))
  5067. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  5068. if v.Name == objtodel then
  5069. v:Destroy()
  5070. end
  5071. end
  5072. end
  5073. if string.sub(CMDBAR.Text, 1, 7) == ("getplrs") then
  5074. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  5075. print(v)
  5076. end
  5077. game:GetService("StarterGui"):SetCore("SendNotification", {
  5078. Title = "Printed";
  5079. Text = "Players have been printed to console. (F9)";
  5080. })
  5081. end
  5082. if string.sub(CMDBAR.Text, 1, 8) == ("deldecal") then
  5083. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  5084. if (v:IsA("Decal")) then
  5085. v:Destroy()
  5086. end
  5087. end
  5088. end
  5089. if string.sub(CMDBAR.Text, 1, 10) == ("opfinality") then
  5090. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  5091. game:GetService("StarterGui"):SetCore("SendNotification", {
  5092. Title = "Success!";
  5093. Text = "OpFinality GUI has loaded.";
  5094. })
  5095. end
  5096. if string.sub(CMDBAR.Text, 1, 7) == ("remotes") then
  5097. remotes = true
  5098. added = true
  5099. game.DescendantAdded:connect(function(rmt)
  5100. if added == true then
  5101. if remotes == true then
  5102. if rmt:IsA("RemoteEvent") then
  5103. print("A RemoteEvent was added!")
  5104. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  5105. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  5106. end end end
  5107. end)
  5108. game.DescendantAdded:connect(function(rmtfnctn)
  5109. if added == true then
  5110. if remotes == true then
  5111. if rmtfnctn:IsA("RemoteFunction") then
  5112. warn("A RemoteFunction was added!")
  5113. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  5114. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  5115. end end end
  5116. end)
  5117.  
  5118. game.DescendantAdded:connect(function(bndfnctn)
  5119. if added == true then
  5120. if binds == true then
  5121. if bndfnctn:IsA("BindableFunction") then
  5122. print("A BindableFunction was added!")
  5123. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  5124. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  5125. end end end
  5126. end)
  5127.  
  5128. game.DescendantAdded:connect(function(bnd)
  5129. if added == true then
  5130. if binds == true then
  5131. if bnd:IsA("BindableEvent") then
  5132. warn("A BindableEvent was added!")
  5133. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  5134. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  5135. end end end
  5136. end)
  5137.  
  5138.  
  5139. if binds == true then
  5140. for i,v in pairs(game:GetDescendants()) do
  5141. if v:IsA("BindableFunction") then
  5142. print(" game." .. v:GetFullName() .. " | BindableFunction")
  5143. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  5144. end end
  5145. for i,v in pairs(game:GetDescendants()) do
  5146. if v:IsA("BindableEvent") then
  5147. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  5148. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  5149. end end
  5150. else
  5151. print("Off")
  5152. end
  5153. if remotes == true then
  5154. for i,v in pairs(game:GetDescendants()) do
  5155. if v:IsA("RemoteFunction") then
  5156. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  5157. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  5158. end end
  5159. wait()
  5160. for i,v in pairs(game:GetDescendants()) do
  5161. if v:IsA("RemoteEvent") then
  5162. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  5163. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  5164. end end
  5165. else
  5166. print("Off")
  5167. end
  5168. game:GetService("StarterGui"):SetCore("SendNotification", {
  5169. Title = "Printing Remotes";
  5170. Text = "Type ;noremotes to disable.";
  5171. })
  5172. end
  5173. if string.sub(CMDBAR.Text, 1, 9) == ("noremotes") then
  5174. remotes = false
  5175. added = false
  5176. game:GetService("StarterGui"):SetCore("SendNotification", {
  5177. Title = "Printing Remotes Disabled";
  5178. Text = "Type ;remotes to enable.";
  5179. })
  5180. end
  5181. if string.sub(CMDBAR.Text, 1, 9) == ("tpdefault") then
  5182. spin = false
  5183. followed = false
  5184. traill = false
  5185. noclip = false
  5186. annoying = false
  5187. hwalk = false
  5188. cbringing = false
  5189. end
  5190. if string.sub(CMDBAR.Text, 1, 7) == ("stopsit") then
  5191. stopsitting = true
  5192. end
  5193. if string.sub(CMDBAR.Text, 1, 5) == ("gosit") then
  5194. stopsitting = false
  5195. end
  5196. if string.sub(CMDBAR.Text, 1, 7) == ("version") then
  5197. print(adminversion)
  5198. game:GetService("StarterGui"):SetCore("SendNotification", {
  5199. Title = "Version";
  5200. Text = adminversion;
  5201. })
  5202. end
  5203. if string.sub(CMDBAR.Text, 1, 7) == ("clicktp") then
  5204. clickgoto = true
  5205. game:GetService("StarterGui"):SetCore("SendNotification", {
  5206. Title = "Click TP";
  5207. Text = "Press E to teleport to mouse position";
  5208. })
  5209. end
  5210. if string.sub(CMDBAR.Text, 1, 9) == ("noclicktp") then
  5211. clickgoto = false
  5212. game:GetService("StarterGui"):SetCore("SendNotification", {
  5213. Title = "Click TP";
  5214. Text = "Click TP has been disabled.";
  5215. })
  5216. end
  5217. if string.sub(CMDBAR.Text, 1, 7) == ("toolson") then
  5218. gettingtools = true
  5219. game:GetService("StarterGui"):SetCore("SendNotification", {
  5220. Title = "Tools Enabled";
  5221. Text = "Automatically colleting tools dropped.";
  5222. })
  5223. end
  5224. if string.sub(CMDBAR.Text, 1, 8) == ("toolsoff") then
  5225. gettingtools = false
  5226. game:GetService("StarterGui"):SetCore("SendNotification", {
  5227. Title = "Tools Disabled";
  5228. Text = "Click TP has been disabled.";
  5229. })
  5230. end
  5231. if string.sub(CMDBAR.Text, 1, 9) == ("delcmdbar") then
  5232. ScreenGui:Destroy()
  5233. end
  5234. if string.sub(CMDBAR.Text, 1, 5) == ("reset") then
  5235. lplayer.Character.Head:Destroy()
  5236. end
  5237. if string.sub(CMDBAR.Text, 1, 6) == ("state ") then
  5238. statechosen = string.sub(CMDBAR.Text, 7)
  5239. changingstate = true
  5240. end
  5241. if string.sub(CMDBAR.Text, 1, 8) == ("gravity ") then
  5242. game:GetService("Workspace").Gravity = string.sub(CMDBAR.Text, 9)
  5243. end
  5244. if string.sub(CMDBAR.Text, 1, 9) == ("looprhats") then
  5245. removingmeshhats = true
  5246. end
  5247. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprhats") then
  5248. removingmeshhats = false
  5249. end
  5250. if string.sub(CMDBAR.Text, 1, 9) == ("looprtool") then
  5251. removingmeshtool = true
  5252. end
  5253. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprtool") then
  5254. removingmeshtool = false
  5255. end
  5256. if string.sub(CMDBAR.Text, 1, 9) == ("givetool ") then
  5257. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  5258. if v:IsA("Tool") then
  5259. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  5260. v.Parent = player.Character
  5261. end
  5262. end
  5263. end
  5264. end
  5265. if string.sub(CMDBAR.Text, 1, 4) == ("age ") then
  5266. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  5267. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  5268. end
  5269. end
  5270. if string.sub(CMDBAR.Text, 1, 3) == ("id ") then
  5271. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 4))) do
  5272. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  5273. end
  5274. end
  5275. if string.sub(CMDBAR.Text, 1, 5) == (".age ") then
  5276. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  5277. game:GetService("StarterGui"):SetCore("SendNotification", {
  5278. Title = player.AccountAge.." Days";
  5279. Text = "Account age of "..player.Name;
  5280. })
  5281. end
  5282. end
  5283. if string.sub(CMDBAR.Text, 1, 4) == (".id ") then
  5284. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  5285. game:GetService("StarterGui"):SetCore("SendNotification", {
  5286. Title = player.UserId.." ID";
  5287. Text = "Account ID of "..player.Name;
  5288. })
  5289. end
  5290. end
  5291. if string.sub(CMDBAR.Text, 1, 6) == ("gameid") then
  5292. game:GetService("StarterGui"):SetCore("SendNotification", {
  5293. Title = "Game ID";
  5294. Text = "Game ID: ".. game.GameId;
  5295. })
  5296. end
  5297. if string.sub(CMDBAR.Text, 1, 3) == ("pgs") then
  5298. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  5299. if pgscheck == true then
  5300. game:GetService("StarterGui"):SetCore("SendNotification", {
  5301. Title = "PGSPhysicsSolverEnabled";
  5302. Text = "PGS is Enabled!";
  5303. })
  5304. else
  5305. game:GetService("StarterGui"):SetCore("SendNotification", {
  5306. Title = "PGSPhysicsSolverEnabled";
  5307. Text = "PGS is Disabled!";
  5308. })
  5309. end
  5310. end
  5311. if string.sub(CMDBAR.Text, 1, 11) == ("removeinvis") then
  5312. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  5313. if v:IsA("Part") then
  5314. if v.Transparency == 1 then
  5315. if v.Name ~= "HumanoidRootPart" then
  5316. v:Destroy()
  5317. end
  5318. end
  5319. end
  5320. end
  5321. end
  5322. if string.sub(CMDBAR.Text, 1, 9) == ("removefog") then
  5323. game:GetService("Lighting").FogStart = 0
  5324. game:GetService("Lighting").FogEnd = 9999999999999
  5325. end
  5326. if string.sub(CMDBAR.Text, 1, 7) == ("disable") then
  5327. lplayer.Character.Humanoid.Parent = lplayer
  5328. end
  5329. if string.sub(CMDBAR.Text, 1, 6) == ("enable") then
  5330. lplayer.Humanoid.Parent = lplayer.Character
  5331. end
  5332. if string.sub(CMDBAR.Text, 1, 13) == ("givealltools ") then
  5333. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  5334. if v:IsA("Tool") then
  5335. v.Parent = lplayer.Character
  5336. wait()
  5337. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 14))) do
  5338. v.Parent = player.Character
  5339. end
  5340. end
  5341. end
  5342. end
  5343. if string.sub(CMDBAR.Text, 1, 9) == ("flyspeed ") then
  5344. speedfly = string.sub(CMDBAR.Text, 10)
  5345. wait()
  5346. change()
  5347. end
  5348. if string.sub(CMDBAR.Text, 1, 7) == ("carpet ") then
  5349. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  5350. local Anim3 = Instance.new("Animation")
  5351. Anim3.AnimationId = "rbxassetid://282574440"
  5352. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  5353. track3:Play(.1, 1, 1)
  5354. bplrr = v.Name
  5355. banpl = true
  5356. end
  5357. end
  5358. if string.sub(CMDBAR.Text, 1, 8) == ("uncarpet") then
  5359. banpl = false
  5360. end
  5361. if string.sub(CMDBAR.Text, 1, 6) == ("stare ") then
  5362. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  5363. staring = true
  5364. stareplr = v
  5365. end
  5366. end
  5367. if string.sub(CMDBAR.Text, 1, 7) == ("unstare") then
  5368. staring = false
  5369. end
  5370. if string.sub(CMDBAR.Text, 1, 7) == ("logchat") then
  5371. chatlogs = true
  5372. game:GetService("StarterGui"):SetCore("SendNotification", {
  5373. Title = "LogChat enabled";
  5374. Text = "Now logging all player chat.";
  5375. })
  5376. end
  5377. if string.sub(CMDBAR.Text, 1, 9) == ("unlogchat") then
  5378. chatlogs = false
  5379. game:GetService("StarterGui"):SetCore("SendNotification", {
  5380. Title = "LogChat disabled";
  5381. Text = "Stopped logging all player chat.";
  5382. })
  5383. end
  5384. if string.sub(CMDBAR.Text, 1, 6) == ("fixcam") then
  5385. game:GetService("Workspace").CurrentCamera:Destroy()
  5386. wait(0.1)
  5387. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  5388. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  5389. lplayer.CameraMinZoomDistance = 0.5
  5390. lplayer.CameraMaxZoomDistance = 400
  5391. lplayer.CameraMode = "Classic"
  5392. end
  5393. if string.sub(CMDBAR.Text, 1, 7) == ("unstate") then
  5394. changingstate = false
  5395. end
  5396. CMDBAR.Text = ""
  5397. end
  5398. end)
  5399.  
  5400. wait(0.3)
  5401. game:GetService("StarterGui"):SetCore("SendNotification", {
  5402. Title = "Loaded successfully!";
  5403. Text = "Reviz Admin V2 by illremember";
  5404. })
  5405. wait(0.1)
  5406. print("Reviz Admin V2 loaded!")
  5407. if game:GetService("Workspace").FilteringEnabled == true then
  5408. warn("FE is Enabled (Filtering Enabled)")
  5409. game:GetService("StarterGui"):SetCore("SendNotification", {
  5410. Title = "FE is Enabled";
  5411. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  5412. })
  5413. else
  5414. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  5415. game:GetService("StarterGui"):SetCore("SendNotification", {
  5416. Title = "FE is Disabled";
  5417. Text = "Filtering Disabled. Consider using a different admin script.";
  5418. })
  5419. end
  5420.  
  5421. local intro = Instance.new("ScreenGui")
  5422. local Frame = Instance.new("Frame")
  5423. local ImageLabel = Instance.new("ImageLabel")
  5424. intro.Parent = game:GetService("CoreGui")
  5425. Frame.Parent = intro
  5426. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  5427. Frame.BackgroundTransparency = 1
  5428. Frame.Size = UDim2.new(1, 0, 0, 300)
  5429. Frame.Position = UDim2.new(0, 0, -0.4, 0)
  5430. ImageLabel.Parent = Frame
  5431. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  5432. ImageLabel.BackgroundTransparency = 1
  5433. ImageLabel.Position = UDim2.new(0, 0, 0, 0)
  5434. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  5435. ImageLabel.Image = "http://www.roblox.com/asset/?id=1542162618"
  5436. Frame:TweenPosition(UDim2.new(0, 0, 0.2, 0), "Out", "Elastic", 3)
  5437. wait(3.01)
  5438. Frame:TweenPosition(UDim2.new(0, 0, 1.5, 0), "Out", "Elastic", 5)
  5439. wait(5.01)
  5440. intro:Destroy()
  5441. end)
  5442.  
  5443. Mini.Name = "Mini"
  5444. Mini.Parent = Main
  5445. Mini.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  5446. Mini.BorderSizePixel = 0
  5447. Mini.Position = UDim2.new(0.782082319, 0, 0, 0)
  5448. Mini.Size = UDim2.new(0, 45, 0, 40)
  5449. Mini.Font = Enum.Font.Cartoon
  5450. Mini.Text = "-"
  5451. Mini.TextColor3 = Color3.new(0, 0, 0)
  5452. Mini.TextScaled = true
  5453. Mini.TextSize = 14
  5454. Mini.TextWrapped = true
  5455. Mini.MouseButton1Down:connect(function()
  5456. Main.Visible = false
  5457. Open.Visible = true
  5458. end)
  5459.  
  5460. Open.Name = "Open"
  5461. Open.Parent = ScreenGui
  5462. Open.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  5463. Open.BorderSizePixel = 0
  5464. Open.Position = UDim2.new(0.0112464847, 0, 0.440707952, 0)
  5465. Open.Size = UDim2.new(0, 137, 0, 31)
  5466. Open.Font = Enum.Font.Cartoon
  5467. Open.Text = "Open"
  5468. Open.TextColor3 = Color3.new(0, 0, 0)
  5469. Open.TextScaled = true
  5470. Open.TextSize = 14
  5471. Open.TextWrapped = true
  5472. Open.MouseButton1Down:connect(function()
  5473. Main.Visible = true
  5474. Open.Visible = false
  5475. end)
  5476. -- Scripts:
Add Comment
Please, Sign In to add comment