Advertisement
Guest User

Untitled

a guest
Nov 26th, 2018
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 138.22 KB | None | 0 0
  1. -- Objects
  2.  
  3. local LoginGui = Instance.new("ScreenGui")
  4. local MainLogin = Instance.new("Frame")
  5. local Username = Instance.new("TextBox")
  6. local Password = Instance.new("TextBox")
  7. local Label = Instance.new("TextLabel")
  8. local Submit = Instance.new("TextButton")
  9. local GameFrame = Instance.new("Frame")
  10. local Deathrun = Instance.new("TextButton")
  11. local PrisonLife = Instance.new("TextButton")
  12. local FeScripts = Instance.new("TextButton")
  13. local TextLabel = Instance.new("TextLabel")
  14. local Close = Instance.new("TextButton")
  15. local Deathrun_2 = Instance.new("Frame")
  16. local ClcikTp = Instance.new("TextButton")
  17. local FeFly = Instance.new("TextButton")
  18. local ExitForDeathrun = Instance.new("TextButton")
  19. local PrisonLife_2 = Instance.new("Frame")
  20. local PrisonLifeGui = Instance.new("TextButton")
  21. local Moresoon = Instance.new("TextButton")
  22. local ExitForPrison = Instance.new("TextButton")
  23. local FeScripts_2 = Instance.new("Frame")
  24. local Creeper = Instance.new("TextButton")
  25. local FeFlyForScripts = Instance.new("TextButton")
  26. local AnimationGui = Instance.new("TextButton")
  27. local KillFling = Instance.new("TextButton")
  28. local ExitForFunScripts = Instance.new("TextButton")
  29. local Open = Instance.new("TextButton")
  30.  
  31. -- Properties
  32.  
  33. LoginGui.Name = "Login Gui"
  34. LoginGui.Parent = game.CoreGui
  35.  
  36. MainLogin.Name = "MainLogin"
  37. MainLogin.Parent = LoginGui
  38. MainLogin.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  39. MainLogin.Position = UDim2.new(0.097560972, 0, 0.265171498, 0)
  40. MainLogin.Size = UDim2.new(0, 217, 0, 282)
  41.  
  42. Username.Name = "Username"
  43. Username.Parent = MainLogin
  44. Username.BackgroundColor3 = Color3.new(0, 0, 0)
  45. Username.Position = UDim2.new(0.0368663594, 0, 0.251773059, 0)
  46. Username.Size = UDim2.new(0, 200, 0, 50)
  47. Username.Font = Enum.Font.Code
  48. Username.Text = "Username"
  49. Username.TextColor3 = Color3.new(1, 1, 1)
  50. Username.TextScaled = true
  51. Username.TextSize = 14
  52. Username.TextWrapped = true
  53.  
  54. Password.Name = "Password"
  55. Password.Parent = MainLogin
  56. Password.BackgroundColor3 = Color3.new(0, 0, 0)
  57. Password.Position = UDim2.new(0.0368663594, 0, 0.5, 0)
  58. Password.Size = UDim2.new(0, 200, 0, 50)
  59. Password.Font = Enum.Font.Code
  60. Password.Text = "Password"
  61. Password.TextColor3 = Color3.new(1, 1, 1)
  62. Password.TextScaled = true
  63. Password.TextSize = 14
  64. Password.TextWrapped = true
  65.  
  66. Label.Name = "Label"
  67. Label.Parent = MainLogin
  68. Label.BackgroundColor3 = Color3.new(1, 1, 1)
  69. Label.BackgroundTransparency = 1
  70. Label.Size = UDim2.new(0, 218, 0, 71)
  71. Label.Font = Enum.Font.Cartoon
  72. Label.Text = "Game Scripts 1.0"
  73. Label.TextColor3 = Color3.new(0.972549, 0.972549, 0.972549)
  74. Label.TextScaled = true
  75. Label.TextSize = 14
  76. Label.TextWrapped = true
  77.  
  78. Submit.Name = "Submit"
  79. Submit.Parent = MainLogin
  80. Submit.BackgroundColor3 = Color3.new(1, 1, 1)
  81. Submit.BackgroundTransparency = 1
  82. Submit.Position = UDim2.new(0.0368663594, 0, 0.755319178, 0)
  83. Submit.Size = UDim2.new(0, 200, 0, 50)
  84. Submit.Font = Enum.Font.Garamond
  85. Submit.Text = "Submit"
  86. Submit.TextColor3 = Color3.new(1, 1, 1)
  87. Submit.TextScaled = true
  88. Submit.TextSize = 14
  89. Submit.TextWrapped = true
  90.  
  91. Submit.MouseButton1Down:connect(function()
  92. if Username.Text == "Mark" and Password.Text == "Pass" then
  93. MainLogin.Visible = false
  94. GameFrame.Visible = false
  95. Open.Visible = true
  96. end
  97. end)
  98.  
  99. GameFrame.Name = "Game Frame"
  100. GameFrame.Parent = LoginGui
  101. GameFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  102. GameFrame.Position = UDim2.new(0.503048778, 0, 0.265171498, 0)
  103. GameFrame.Size = UDim2.new(0, 283, 0, 282)
  104. GameFrame.Visible = false
  105. GameFrame.Active = true
  106. GameFrame.Draggable = true
  107.  
  108.  
  109. Deathrun.Name = "Deathrun"
  110. Deathrun.Parent = GameFrame
  111. Deathrun.BackgroundColor3 = Color3.new(1, 1, 1)
  112. Deathrun.Position = UDim2.new(0.144876331, 0, 0.0957446769, 0)
  113. Deathrun.Size = UDim2.new(0, 200, 0, 50)
  114. Deathrun.Font = Enum.Font.SourceSans
  115. Deathrun.Text = "Roblox Deathrun"
  116. Deathrun.TextColor3 = Color3.new(0, 0, 0)
  117. Deathrun.TextSize = 14
  118.  
  119. Deathrun.MouseButton1Down:connect(function()
  120. Deathrun_2.Visible = true
  121. GameFrame.Visible = false
  122. end)
  123.  
  124. PrisonLife.Name = "Prison Life"
  125. PrisonLife.Parent = GameFrame
  126. PrisonLife.BackgroundColor3 = Color3.new(1, 1, 1)
  127. PrisonLife.Position = UDim2.new(0.144876331, 0, 0.322695047, 0)
  128. PrisonLife.Size = UDim2.new(0, 200, 0, 50)
  129. PrisonLife.Font = Enum.Font.SourceSans
  130. PrisonLife.Text = "Prison Life"
  131. PrisonLife.TextColor3 = Color3.new(0, 0, 0)
  132. PrisonLife.TextSize = 14
  133.  
  134. PrisonLife.MouseButton1Down:connect(function()
  135. PrisonLife_2.Visible = true
  136. GameFrame.Visible = false
  137. end)
  138.  
  139. FeScripts.Name = "Fe Scripts"
  140. FeScripts.Parent = GameFrame
  141. FeScripts.BackgroundColor3 = Color3.new(1, 1, 1)
  142. FeScripts.Position = UDim2.new(0.144876331, 0, 0.542553186, 0)
  143. FeScripts.Size = UDim2.new(0, 200, 0, 50)
  144. FeScripts.Font = Enum.Font.SourceSans
  145. FeScripts.Text = "Fun FE Scripts"
  146. FeScripts.TextColor3 = Color3.new(0, 0, 0)
  147. FeScripts.TextSize = 14
  148.  
  149. FeScripts.MouseButton1Down:connect(function()
  150. FeScripts_2.Visible = true
  151. GameFrame.Visible = false
  152. end)
  153.  
  154. TextLabel.Parent = GameFrame
  155. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  156. TextLabel.BackgroundTransparency = 1
  157. TextLabel.Position = UDim2.new(0, 0, 0.861702144, 0)
  158. TextLabel.Size = UDim2.new(0, 112, 0, 39)
  159. TextLabel.Font = Enum.Font.SourceSans
  160. TextLabel.Text = "Made by: Itzmarkzz Gaming"
  161. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  162. TextLabel.TextScaled = true
  163. TextLabel.TextSize = 14
  164. TextLabel.TextWrapped = true
  165.  
  166. Close.Name = "Close"
  167. Close.Parent = GameFrame
  168. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  169. Close.BackgroundTransparency = 1
  170. Close.Position = UDim2.new(0.851590097, 0, 0.822695017, 0)
  171. Close.Size = UDim2.new(0, 42, 0, 50)
  172. Close.Font = Enum.Font.SourceSans
  173. Close.Text = "X"
  174. Close.TextColor3 = Color3.new(1, 0, 0)
  175. Close.TextScaled = true
  176. Close.TextSize = 14
  177. Close.TextWrapped = true
  178.  
  179. Close.MouseButton1Down:connect(function()
  180. GameFrame.Visible = false
  181. end)
  182.  
  183. Deathrun_2.Name = "Deathrun"
  184. Deathrun_2.Parent = LoginGui
  185. Deathrun_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  186. Deathrun_2.Position = UDim2.new(0.097560972, 0, 0.0514511876, 0)
  187. Deathrun_2.Size = UDim2.new(0, 218, 0, 144)
  188. Deathrun_2.Visible = false
  189.  
  190. ClcikTp.Name = "Clcik Tp"
  191. ClcikTp.Parent = Deathrun_2
  192. ClcikTp.BackgroundColor3 = Color3.new(1, 1, 1)
  193. ClcikTp.BackgroundTransparency = 1
  194. ClcikTp.Size = UDim2.new(0, 217, 0, 50)
  195. ClcikTp.Font = Enum.Font.SourceSans
  196. ClcikTp.Text = "Click Tp"
  197. ClcikTp.TextColor3 = Color3.new(1, 1, 1)
  198. ClcikTp.TextScaled = true
  199. ClcikTp.TextSize = 14
  200. ClcikTp.TextWrapped = true
  201.  
  202. ClcikTp.MouseButton1Down:connect(function()
  203. -- << K1LL0X >> --
  204.  
  205.  
  206. local UIS = game:GetService("UserInputService")
  207.  
  208. local Player = game.Players.LocalPlayer
  209. local Mouse = Player:GetMouse()
  210.  
  211.  
  212. function GetCharacter()
  213. return game.Players.LocalPlayer.Character
  214. end
  215.  
  216. function Teleport(pos)
  217. local Char = GetCharacter()
  218. if Char then
  219. Char:MoveTo(pos)
  220. end
  221. end
  222.  
  223.  
  224. UIS.InputBegan:Connect(function(input)
  225. if input.UserInputType == Enum.UserInputType.MouseButton1 and UIS:IsKeyDown(Enum.KeyCode.LeftControl) then
  226. Teleport(Mouse.Hit.p)
  227. end
  228. end)
  229. end)
  230.  
  231. FeFly.Name = "Fe Fly"
  232. FeFly.Parent = Deathrun_2
  233. FeFly.BackgroundColor3 = Color3.new(1, 1, 1)
  234. FeFly.BackgroundTransparency = 1
  235. FeFly.Position = UDim2.new(0, 0, 0.555555582, 0)
  236. FeFly.Size = UDim2.new(0, 217, 0, 50)
  237. FeFly.Font = Enum.Font.SourceSans
  238. FeFly.Text = "Fe Fly"
  239. FeFly.TextColor3 = Color3.new(1, 1, 1)
  240. FeFly.TextScaled = true
  241. FeFly.TextSize = 14
  242. FeFly.TextWrapped = true
  243.  
  244. FeFly.MouseButton1Down:connect(function()
  245. -- FE Fly (Push E)
  246. repeat wait()
  247. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  248. local mouse = game.Players.LocalPlayer:GetMouse()
  249. repeat wait() until mouse
  250. local plr = game.Players.LocalPlayer
  251. local torso = plr.Character.Torso
  252. local flying = true
  253. local deb = true
  254. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  255. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  256. local maxspeed = 50
  257. local speed = 0
  258.  
  259. function Fly()
  260. local bg = Instance.new("BodyGyro", torso)
  261. bg.P = 9e4
  262. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  263. bg.cframe = torso.CFrame
  264. local bv = Instance.new("BodyVelocity", torso)
  265. bv.velocity = Vector3.new(0,0.1,0)
  266. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  267. repeat wait()
  268. plr.Character.Humanoid.PlatformStand = true
  269. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  270. speed = speed+.5+(speed/maxspeed)
  271. if speed > maxspeed then
  272. speed = maxspeed
  273. end
  274. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  275. speed = speed-1
  276. if speed < 0 then
  277. speed = 0
  278. end
  279. end
  280. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  281. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  282. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  283. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  284. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  285. else
  286. bv.velocity = Vector3.new(0,0.1,0)
  287. end
  288. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  289. until not flying
  290. ctrl = {f = 0, b = 0, l = 0, r = 0}
  291. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  292. speed = 0
  293. bg:Destroy()
  294. bv:Destroy()
  295. plr.Character.Humanoid.PlatformStand = false
  296. end
  297. mouse.KeyDown:connect(function(key)
  298. if key:lower() == "e" then
  299. if flying then flying = false
  300. else
  301. flying = true
  302. Fly()
  303. end
  304. elseif key:lower() == "w" then
  305. ctrl.f = 1
  306. elseif key:lower() == "s" then
  307. ctrl.b = -1
  308. elseif key:lower() == "a" then
  309. ctrl.l = -1
  310. elseif key:lower() == "d" then
  311. ctrl.r = 1
  312. end
  313. end)
  314. mouse.KeyUp:connect(function(key)
  315. if key:lower() == "w" then
  316. ctrl.f = 0
  317. elseif key:lower() == "s" then
  318. ctrl.b = 0
  319. elseif key:lower() == "a" then
  320. ctrl.l = 0
  321. elseif key:lower() == "d" then
  322. ctrl.r = 0
  323. end
  324. end)
  325. Fly()
  326. end)
  327.  
  328. ExitForDeathrun.Name = "Exit For Deathrun"
  329. ExitForDeathrun.Parent = Deathrun_2
  330. ExitForDeathrun.BackgroundColor3 = Color3.new(1, 0, 0)
  331. ExitForDeathrun.Position = UDim2.new(0.0366972461, 0, 0.388888896, 0)
  332. ExitForDeathrun.Size = UDim2.new(0, 200, 0, 24)
  333. ExitForDeathrun.Font = Enum.Font.SourceSans
  334. ExitForDeathrun.Text = "Exit"
  335. ExitForDeathrun.TextColor3 = Color3.new(0, 0, 0)
  336. ExitForDeathrun.TextScaled = true
  337. ExitForDeathrun.TextSize = 14
  338. ExitForDeathrun.TextWrapped = true
  339.  
  340. ExitForDeathrun.MouseButton1Down:connect(function()
  341. Deathrun_2.Visible = false
  342. GameFrame.Visible = true
  343. end)
  344.  
  345. PrisonLife_2.Name = "Prison Life"
  346. PrisonLife_2.Parent = LoginGui
  347. PrisonLife_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  348. PrisonLife_2.Position = UDim2.new(0.503048778, 0, 0.0514511876, 0)
  349. PrisonLife_2.Size = UDim2.new(0, 185, 0, 144)
  350. PrisonLife_2.Visible = false
  351.  
  352. PrisonLifeGui.Name = "Prison Life Gui"
  353. PrisonLifeGui.Parent = PrisonLife_2
  354. PrisonLifeGui.BackgroundColor3 = Color3.new(1, 1, 1)
  355. PrisonLifeGui.BackgroundTransparency = 1
  356. PrisonLifeGui.Size = UDim2.new(0, 185, 0, 50)
  357. PrisonLifeGui.Font = Enum.Font.SourceSans
  358. PrisonLifeGui.Text = "Prison Life Gui"
  359. PrisonLifeGui.TextColor3 = Color3.new(1, 1, 1)
  360. PrisonLifeGui.TextScaled = true
  361. PrisonLifeGui.TextSize = 14
  362. PrisonLifeGui.TextWrapped = true
  363.  
  364. PrisonLifeGui.MouseButton1Down:connect(function()
  365. -- Objects
  366.  
  367. local PrisonLife = Instance.new("ScreenGui")
  368. local Topbar = Instance.new("TextLabel")
  369. local MainFrame = Instance.new("Frame")
  370. local Frame4 = Instance.new("Frame")
  371. local ESP = Instance.new("TextButton")
  372. local TextLabel = Instance.new("TextLabel")
  373. local SuperPunch = Instance.new("TextButton")
  374. local TextLabel_2 = Instance.new("TextLabel")
  375. local Noclip = Instance.new("TextButton")
  376. local TextLabel_3 = Instance.new("TextLabel")
  377. local LA = Instance.new("TextButton")
  378. local TextLabel_4 = Instance.new("TextLabel")
  379. local KillAura = Instance.new("TextButton")
  380. local TextLabel_5 = Instance.new("TextLabel")
  381. local ClickTp = Instance.new("TextButton")
  382. local TextLabel_6 = Instance.new("TextLabel")
  383. local BPT = Instance.new("TextButton")
  384. local TextLabel_7 = Instance.new("TextLabel")
  385. local ArrestAura = Instance.new("TextButton")
  386. local TextLabel_8 = Instance.new("TextLabel")
  387. local Frame2 = Instance.new("Frame")
  388. local Tp1 = Instance.new("TextButton")
  389. local Tp5 = Instance.new("TextButton")
  390. local Tp10 = Instance.new("TextButton")
  391. local Tp9 = Instance.new("TextButton")
  392. local Tp6 = Instance.new("TextButton")
  393. local Tp2 = Instance.new("TextButton")
  394. local Tp3 = Instance.new("TextButton")
  395. local Tp4 = Instance.new("TextButton")
  396. local Tp8 = Instance.new("TextButton")
  397. local Players = Instance.new("ScrollingFrame")
  398. local Player = Instance.new("TextButton")
  399. local Frame3 = Instance.new("Frame")
  400. local M9 = Instance.new("TextButton")
  401. local Ak47 = Instance.new("TextButton")
  402. local Shotgun = Instance.new("TextButton")
  403. local M4A1 = Instance.new("TextButton")
  404. local Knife = Instance.new("TextButton")
  405. local Mirror = Instance.new("TextButton")
  406. local Frame1 = Instance.new("ScrollingFrame")
  407. local BT = Instance.new("TextButton")
  408. local God = Instance.new("TextButton")
  409. local LOCK = Instance.new("TextButton")
  410. local QuickEscape = Instance.new("TextButton")
  411. local RemDoors = Instance.new("TextButton")
  412. local TPArrest = Instance.new("TextButton")
  413. local TpCar = Instance.new("TextButton")
  414. local Value = Instance.new("TextBox")
  415. local WS = Instance.new("TextButton")
  416. local melee = Instance.new("TextButton")
  417. local PlayerNameBox = Instance.new("TextBox")
  418. local ArrestPlr = Instance.new("TextButton")
  419. local KillAll = Instance.new("TextButton")
  420. local HeadTp = Instance.new("TextButton")
  421. local KillPlr = Instance.new("TextButton")
  422. local TeamC1 = Instance.new("TextButton")
  423. local TeamC2 = Instance.new("TextButton")
  424. local TeamC3 = Instance.new("TextButton")
  425. local Blackout = Instance.new("Frame")
  426. local SettingsTab = Instance.new("Frame")
  427. local Hotkeys = Instance.new("ScrollingFrame")
  428. local Hotkey1 = Instance.new("Frame")
  429. local HotkeyLabel = Instance.new("TextLabel")
  430. local Hotkey = Instance.new("TextBox")
  431. local Menu = Instance.new("Frame")
  432. local Functions = Instance.new("TextButton")
  433. local MenuB = Instance.new("TextButton")
  434. local Guns = Instance.new("TextButton")
  435. local Togglables = Instance.new("TextButton")
  436. local Teleports = Instance.new("TextButton")
  437. local Settings = Instance.new("TextButton")
  438. local Open = Instance.new("TextButton")
  439. local LoginScreen = Instance.new("Frame")
  440. local LoginButton = Instance.new("TextButton")
  441. local LoginDesc = Instance.new("TextLabel")
  442. local LoginTitle = Instance.new("TextLabel")
  443.  
  444. -- Properties
  445.  
  446. PrisonLife.Name = "PrisonLife"
  447. PrisonLife.Parent = game.Players.LocalPlayer.PlayerGui
  448. PrisonLife.ResetOnSpawn = false
  449.  
  450. Topbar.Name = "Topbar"
  451. Topbar.Parent = PrisonLife
  452. Topbar.Active = true
  453. Topbar.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  454. Topbar.Draggable = true
  455. Topbar.Position = UDim2.new(0, 800, 0, 200)
  456. Topbar.Size = UDim2.new(0, 500, 0, 25)
  457. Topbar.Visible = false
  458. Topbar.Font = Enum.Font.SourceSans
  459. Topbar.Text = "Prisoners GUI by Noobdudeispro2 @V3RM"
  460. Topbar.TextColor3 = Color3.new(1, 1, 1)
  461. Topbar.TextScaled = true
  462. Topbar.TextSize = 14
  463. Topbar.TextWrapped = true
  464.  
  465. MainFrame.Name = "MainFrame"
  466. MainFrame.Parent = Topbar
  467. MainFrame.Active = true
  468. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  469. MainFrame.BackgroundTransparency = 1
  470. MainFrame.BorderColor3 = Color3.new(0.223529, 0.34902, 0.439216)
  471. MainFrame.BorderSizePixel = 0
  472. MainFrame.Position = UDim2.new(0, 0, 0, 25)
  473. MainFrame.Size = UDim2.new(0, 500, 0, 300)
  474.  
  475. SettingsTab.Name = "SettingsTab"
  476. SettingsTab.Parent = MainFrame
  477. SettingsTab.BackgroundColor3 = Color3.new(1, 1, 1)
  478. SettingsTab.BorderSizePixel = 0
  479. SettingsTab.Selectable = true
  480. SettingsTab.Size = UDim2.new(0, 500, 0, 300)
  481.  
  482. Frame4.Name = "Frame4"
  483. Frame4.Parent = MainFrame
  484. Frame4.BackgroundColor3 = Color3.new(1, 1, 1)
  485. Frame4.BorderColor3 = Color3.new(0.223529, 0.34902, 0.439216)
  486. Frame4.BorderSizePixel = 0
  487. Frame4.Size = UDim2.new(0, 500, 0, 300)
  488.  
  489. ESP.Name = "ESP"
  490. ESP.Parent = Frame4
  491. ESP.BackgroundColor3 = Color3.new(1, 1, 1)
  492. ESP.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  493. ESP.BorderSizePixel = 5
  494. ESP.Position = UDim2.new(0, 170, 0, 40)
  495. ESP.Size = UDim2.new(0, 25, 0, 25)
  496. ESP.Font = Enum.Font.SourceSans
  497. ESP.Text = ""
  498. ESP.TextSize = 14
  499.  
  500. TextLabel.Parent = ESP
  501. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  502. TextLabel.BorderSizePixel = 0
  503. TextLabel.Position = UDim2.new(0, 35, 0, 0)
  504. TextLabel.Size = UDim2.new(0, 110, 0, 25)
  505. TextLabel.Font = Enum.Font.SourceSansBold
  506. TextLabel.Text = "Player ESP"
  507. TextLabel.TextScaled = true
  508. TextLabel.TextSize = 50
  509. TextLabel.TextWrapped = true
  510. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  511.  
  512. SuperPunch.Name = "Super Punch"
  513. SuperPunch.Parent = Frame4
  514. SuperPunch.BackgroundColor3 = Color3.new(1, 1, 1)
  515. SuperPunch.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  516. SuperPunch.BorderSizePixel = 5
  517. SuperPunch.Position = UDim2.new(0, 10, 0, 240)
  518. SuperPunch.Size = UDim2.new(0, 25, 0, 25)
  519. SuperPunch.Font = Enum.Font.SourceSans
  520. SuperPunch.Text = ""
  521. SuperPunch.TextSize = 14
  522. SuperPunch.TextXAlignment = Enum.TextXAlignment.Left
  523.  
  524. TextLabel_2.Parent = SuperPunch
  525. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  526. TextLabel_2.BorderSizePixel = 0
  527. TextLabel_2.Position = UDim2.new(0, 35, 0, 0)
  528. TextLabel_2.Size = UDim2.new(0, 110, 0, 25)
  529. TextLabel_2.Font = Enum.Font.SourceSansBold
  530. TextLabel_2.Text = "Super Punch"
  531. TextLabel_2.TextScaled = true
  532. TextLabel_2.TextSize = 50
  533. TextLabel_2.TextWrapped = true
  534.  
  535. Noclip.Name = "Noclip"
  536. Noclip.Parent = Frame4
  537. Noclip.BackgroundColor3 = Color3.new(1, 1, 1)
  538. Noclip.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  539. Noclip.BorderSizePixel = 5
  540. Noclip.Position = UDim2.new(0, 10, 0, 80)
  541. Noclip.Size = UDim2.new(0, 25, 0, 25)
  542. Noclip.Font = Enum.Font.SourceSans
  543. Noclip.Text = ""
  544. Noclip.TextSize = 14
  545.  
  546. TextLabel_3.Parent = Noclip
  547. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  548. TextLabel_3.BorderSizePixel = 0
  549. TextLabel_3.Position = UDim2.new(0, 35, 0, 0)
  550. TextLabel_3.Size = UDim2.new(0, 75, 0, 25)
  551. TextLabel_3.Font = Enum.Font.SourceSansBold
  552. TextLabel_3.Text = "Noclip"
  553. TextLabel_3.TextScaled = true
  554. TextLabel_3.TextSize = 50
  555. TextLabel_3.TextWrapped = true
  556. TextLabel_3.TextXAlignment = Enum.TextXAlignment.Left
  557.  
  558. LA.Name = "Airwalk"
  559. LA.Parent = Frame4
  560. LA.BackgroundColor3 = Color3.new(1, 1, 1)
  561. LA.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  562. LA.BorderSizePixel = 5
  563. LA.Position = UDim2.new(0, 10, 0, 120)
  564. LA.Size = UDim2.new(0, 25, 0, 25)
  565. LA.Font = Enum.Font.SourceSans
  566. LA.Text = ""
  567. LA.TextSize = 14
  568.  
  569. TextLabel_4.Parent = LA
  570. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  571. TextLabel_4.BorderSizePixel = 0
  572. TextLabel_4.Position = UDim2.new(0, 35, 0, 0)
  573. TextLabel_4.Size = UDim2.new(0, 110, 0, 25)
  574. TextLabel_4.Font = Enum.Font.SourceSansBold
  575. TextLabel_4.Text = "Air Walk"
  576. TextLabel_4.TextScaled = true
  577. TextLabel_4.TextSize = 50
  578. TextLabel_4.TextWrapped = true
  579. TextLabel_4.TextXAlignment = Enum.TextXAlignment.Left
  580.  
  581. KillAura.Name = "KillAura"
  582. KillAura.Parent = Frame4
  583. KillAura.BackgroundColor3 = Color3.new(1, 1, 1)
  584. KillAura.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  585. KillAura.BorderSizePixel = 5
  586. KillAura.Position = UDim2.new(0, 10, 0, 200)
  587. KillAura.Size = UDim2.new(0, 25, 0, 25)
  588. KillAura.Font = Enum.Font.SourceSans
  589. KillAura.Text = ""
  590. KillAura.TextSize = 14
  591.  
  592. TextLabel_5.Parent = KillAura
  593. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  594. TextLabel_5.BorderSizePixel = 0
  595. TextLabel_5.Position = UDim2.new(0, 35, 0, 0)
  596. TextLabel_5.Size = UDim2.new(0, 100, 0, 25)
  597. TextLabel_5.Font = Enum.Font.SourceSansBold
  598. TextLabel_5.Text = "Kill Aura"
  599. TextLabel_5.TextScaled = true
  600. TextLabel_5.TextSize = 50
  601. TextLabel_5.TextWrapped = true
  602. TextLabel_5.TextXAlignment = Enum.TextXAlignment.Left
  603.  
  604. ClickTp.Name = "Click Tp"
  605. ClickTp.Parent = Frame4
  606. ClickTp.BackgroundColor3 = Color3.new(1, 1, 1)
  607. ClickTp.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  608. ClickTp.BorderSizePixel = 5
  609. ClickTp.Position = UDim2.new(0, 10, 0, 40)
  610. ClickTp.Size = UDim2.new(0, 25, 0, 25)
  611. ClickTp.Font = Enum.Font.SourceSans
  612. ClickTp.Text = ""
  613. ClickTp.TextSize = 14
  614.  
  615. TextLabel_6.Parent = ClickTp
  616. TextLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  617. TextLabel_6.BorderSizePixel = 0
  618. TextLabel_6.Position = UDim2.new(0, 35, 0, 0)
  619. TextLabel_6.Size = UDim2.new(0, 75, 0, 25)
  620. TextLabel_6.Font = Enum.Font.SourceSansBold
  621. TextLabel_6.Text = "ClickTp"
  622. TextLabel_6.TextScaled = true
  623. TextLabel_6.TextSize = 50
  624. TextLabel_6.TextWrapped = true
  625. TextLabel_6.TextXAlignment = Enum.TextXAlignment.Left
  626.  
  627. BPT.Name = "Taser Bypass"
  628. BPT.Parent = Frame4
  629. BPT.BackgroundColor3 = Color3.new(1, 1, 1)
  630. BPT.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  631. BPT.BorderSizePixel = 5
  632. BPT.Position = UDim2.new(0, 170, 0, 80)
  633. BPT.Size = UDim2.new(0, 25, 0, 25)
  634. BPT.Font = Enum.Font.SourceSans
  635. BPT.Text = ""
  636. BPT.TextSize = 14
  637.  
  638. TextLabel_7.Parent = BPT
  639. TextLabel_7.BackgroundColor3 = Color3.new(1, 1, 1)
  640. TextLabel_7.BorderSizePixel = 0
  641. TextLabel_7.Position = UDim2.new(0, 35, 0, 0)
  642. TextLabel_7.Size = UDim2.new(0, 100, 0, 25)
  643. TextLabel_7.Font = Enum.Font.SourceSansBold
  644. TextLabel_7.Text = "Taser Bypass"
  645. TextLabel_7.TextScaled = true
  646. TextLabel_7.TextSize = 50
  647. TextLabel_7.TextWrapped = true
  648. TextLabel_7.TextXAlignment = Enum.TextXAlignment.Left
  649.  
  650. ArrestAura.Name = "Arrest Aura"
  651. ArrestAura.Parent = Frame4
  652. ArrestAura.BackgroundColor3 = Color3.new(1, 1, 1)
  653. ArrestAura.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  654. ArrestAura.BorderSizePixel = 5
  655. ArrestAura.Position = UDim2.new(0, 10, 0, 160)
  656. ArrestAura.Size = UDim2.new(0, 25, 0, 25)
  657. ArrestAura.Font = Enum.Font.SourceSans
  658. ArrestAura.Text = ""
  659. ArrestAura.TextSize = 14
  660.  
  661. TextLabel_8.Parent = ArrestAura
  662. TextLabel_8.BackgroundColor3 = Color3.new(1, 1, 1)
  663. TextLabel_8.BorderSizePixel = 0
  664. TextLabel_8.Position = UDim2.new(0, 35, 0, 0)
  665. TextLabel_8.Size = UDim2.new(0, 100, 0, 25)
  666. TextLabel_8.Font = Enum.Font.SourceSansBold
  667. TextLabel_8.Text = "Arrest Aura"
  668. TextLabel_8.TextScaled = true
  669. TextLabel_8.TextSize = 50
  670. TextLabel_8.TextWrapped = true
  671. TextLabel_8.TextXAlignment = Enum.TextXAlignment.Left
  672.  
  673. Frame2.Name = "Frame2"
  674. Frame2.Parent = MainFrame
  675. Frame2.BackgroundColor3 = Color3.new(1, 1, 1)
  676. Frame2.BorderColor3 = Color3.new(0.223529, 0.34902, 0.439216)
  677. Frame2.BorderSizePixel = 0
  678. Frame2.Size = UDim2.new(0, 500, 0, 300)
  679. Frame2.Visible = false
  680.  
  681. Tp1.Name = "Tp1"
  682. Tp1.Parent = Frame2
  683. Tp1.BackgroundColor3 = Color3.new(1, 1, 1)
  684. Tp1.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  685. Tp1.BorderSizePixel = 4
  686. Tp1.Position = UDim2.new(0, 180, 0, 140)
  687. Tp1.Size = UDim2.new(0, 150, 0, 35)
  688. Tp1.Font = Enum.Font.SourceSans
  689. Tp1.Text = "Quick Escape"
  690. Tp1.TextScaled = true
  691. Tp1.TextSize = 14
  692. Tp1.TextWrapped = true
  693.  
  694. Tp5.Name = "Tp5"
  695. Tp5.Parent = Frame2
  696. Tp5.BackgroundColor3 = Color3.new(1, 1, 1)
  697. Tp5.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  698. Tp5.BorderSizePixel = 4
  699. Tp5.Position = UDim2.new(0, 180, 0, 90)
  700. Tp5.Size = UDim2.new(0, 150, 0, 35)
  701. Tp5.Font = Enum.Font.SourceSans
  702. Tp5.Text = "Guards Room"
  703. Tp5.TextScaled = true
  704. Tp5.TextSize = 14
  705. Tp5.TextWrapped = true
  706.  
  707. Tp10.Name = "Tp10"
  708. Tp10.Parent = Frame2
  709. Tp10.BackgroundColor3 = Color3.new(1, 1, 1)
  710. Tp10.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  711. Tp10.BorderSizePixel = 4
  712. Tp10.Position = UDim2.new(0, 180, 0, 190)
  713. Tp10.Size = UDim2.new(0, 150, 0, 35)
  714. Tp10.Font = Enum.Font.SourceSans
  715. Tp10.Text = "Cells"
  716. Tp10.TextScaled = true
  717. Tp10.TextSize = 14
  718. Tp10.TextWrapped = true
  719.  
  720. Tp9.Name = "Tp9"
  721. Tp9.Parent = Frame2
  722. Tp9.BackgroundColor3 = Color3.new(1, 1, 1)
  723. Tp9.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  724. Tp9.BorderSizePixel = 4
  725. Tp9.Position = UDim2.new(0, 180, 0, 40)
  726. Tp9.Size = UDim2.new(0, 150, 0, 35)
  727. Tp9.Font = Enum.Font.SourceSans
  728. Tp9.Text = "Teleport To Player"
  729. Tp9.TextScaled = true
  730. Tp9.TextSize = 14
  731. Tp9.TextWrapped = true
  732.  
  733. Tp6.Name = "Tp6"
  734. Tp6.Parent = Frame2
  735. Tp6.BackgroundColor3 = Color3.new(1, 1, 1)
  736. Tp6.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  737. Tp6.BorderSizePixel = 4
  738. Tp6.Position = UDim2.new(0, 10, 0, 190)
  739. Tp6.Size = UDim2.new(0, 150, 0, 35)
  740. Tp6.Font = Enum.Font.SourceSans
  741. Tp6.Text = "Cafeteria"
  742. Tp6.TextScaled = true
  743. Tp6.TextSize = 14
  744. Tp6.TextWrapped = true
  745.  
  746. Tp2.Name = "Tp2"
  747. Tp2.Parent = Frame2
  748. Tp2.BackgroundColor3 = Color3.new(1, 1, 1)
  749. Tp2.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  750. Tp2.BorderSizePixel = 4
  751. Tp2.Position = UDim2.new(0, 10, 0, 90)
  752. Tp2.Size = UDim2.new(0, 150, 0, 35)
  753. Tp2.Font = Enum.Font.SourceSans
  754. Tp2.Text = "Country Yard"
  755. Tp2.TextScaled = true
  756. Tp2.TextSize = 14
  757. Tp2.TextWrapped = true
  758.  
  759. Tp3.Name = "Tp3"
  760. Tp3.Parent = Frame2
  761. Tp3.BackgroundColor3 = Color3.new(1, 1, 1)
  762. Tp3.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  763. Tp3.BorderSizePixel = 4
  764. Tp3.Position = UDim2.new(0, 180, 0, 240)
  765. Tp3.Size = UDim2.new(0, 150, 0, 35)
  766. Tp3.Font = Enum.Font.SourceSans
  767. Tp3.Text = "Criminal Base"
  768. Tp3.TextScaled = true
  769. Tp3.TextSize = 14
  770. Tp3.TextWrapped = true
  771.  
  772. Tp4.Name = "Tp4"
  773. Tp4.Parent = Frame2
  774. Tp4.BackgroundColor3 = Color3.new(1, 1, 1)
  775. Tp4.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  776. Tp4.BorderSizePixel = 4
  777. Tp4.Position = UDim2.new(0, 10, 0, 140)
  778. Tp4.Size = UDim2.new(0, 150, 0, 35)
  779. Tp4.Font = Enum.Font.SourceSans
  780. Tp4.Text = "Camping Tower"
  781. Tp4.TextScaled = true
  782. Tp4.TextSize = 14
  783. Tp4.TextWrapped = true
  784.  
  785. Tp8.Name = "Tp8"
  786. Tp8.Parent = Frame2
  787. Tp8.BackgroundColor3 = Color3.new(1, 1, 1)
  788. Tp8.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  789. Tp8.BorderSizePixel = 4
  790. Tp8.Position = UDim2.new(0, 10, 0, 240)
  791. Tp8.Size = UDim2.new(0, 150, 0, 35)
  792. Tp8.Font = Enum.Font.SourceSans
  793. Tp8.Text = "Secret room"
  794. Tp8.TextScaled = true
  795. Tp8.TextSize = 14
  796. Tp8.TextWrapped = true
  797.  
  798. Players.Name = "Players"
  799. Players.Parent = Frame2
  800. Players.BackgroundColor3 = Color3.new(1, 1, 1)
  801. Players.Position = UDim2.new(0, 350, 0, 0)
  802. Players.Size = UDim2.new(0, 150, 0, 290)
  803.  
  804. Player.Name = "Player"
  805. Player.Parent = Frame2
  806. Player.BackgroundColor3 = Color3.new(1, 1, 1)
  807. Player.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  808. Player.BorderSizePixel = 4
  809. Player.Position = UDim2.new(0, 10, 0, 40)
  810. Player.Size = UDim2.new(0, 150, 0, 35)
  811. Player.Font = Enum.Font.SourceSans
  812. Player.Text = "Player"
  813. Player.TextScaled = true
  814. Player.TextSize = 14
  815. Player.TextWrapped = true
  816.  
  817. Frame3.Name = "Frame3"
  818. Frame3.Parent = MainFrame
  819. Frame3.BackgroundColor3 = Color3.new(1, 1, 1)
  820. Frame3.BorderColor3 = Color3.new(0.223529, 0.34902, 0.439216)
  821. Frame3.BorderSizePixel = 0
  822. Frame3.Size = UDim2.new(0, 500, 0, 300)
  823. Frame3.Visible = false
  824.  
  825. M9.Name = "M9"
  826. M9.Parent = Frame3
  827. M9.BackgroundColor3 = Color3.new(1, 1, 1)
  828. M9.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  829. M9.BorderSizePixel = 4
  830. M9.Position = UDim2.new(0, 10, 0, 40)
  831. M9.Size = UDim2.new(0, 200, 0, 70)
  832. M9.Font = Enum.Font.SourceSans
  833. M9.Text = "Tp M9"
  834. M9.TextScaled = true
  835. M9.TextSize = 14
  836. M9.TextWrapped = true
  837.  
  838. Ak47.Name = "Ak47"
  839. Ak47.Parent = Frame3
  840. Ak47.BackgroundColor3 = Color3.new(1, 1, 1)
  841. Ak47.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  842. Ak47.BorderSizePixel = 4
  843. Ak47.Position = UDim2.new(0, 10, 0, 200)
  844. Ak47.Size = UDim2.new(0, 200, 0, 70)
  845. Ak47.Font = Enum.Font.SourceSans
  846. Ak47.Text = "Give Ak-47"
  847. Ak47.TextScaled = true
  848. Ak47.TextSize = 14
  849. Ak47.TextWrapped = true
  850.  
  851. Shotgun.Name = "Shotgun"
  852. Shotgun.Parent = Frame3
  853. Shotgun.BackgroundColor3 = Color3.new(1, 1, 1)
  854. Shotgun.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  855. Shotgun.BorderSizePixel = 4
  856. Shotgun.Position = UDim2.new(0, 10, 0, 120)
  857. Shotgun.Size = UDim2.new(0, 200, 0, 70)
  858. Shotgun.Font = Enum.Font.SourceSans
  859. Shotgun.Text = "Give Remington"
  860. Shotgun.TextScaled = true
  861. Shotgun.TextSize = 14
  862. Shotgun.TextWrapped = true
  863.  
  864. M4A1.Name = "M4A1"
  865. M4A1.Parent = Frame3
  866. M4A1.BackgroundColor3 = Color3.new(1, 1, 1)
  867. M4A1.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  868. M4A1.BorderSizePixel = 4
  869. M4A1.Position = UDim2.new(0, 290, 0, 40)
  870. M4A1.Size = UDim2.new(0, 200, 0, 70)
  871. M4A1.Font = Enum.Font.SourceSans
  872. M4A1.Text = "Give M4A1"
  873. M4A1.TextScaled = true
  874. M4A1.TextSize = 14
  875. M4A1.TextWrapped = true
  876.  
  877. Knife.Name = "Knife"
  878. Knife.Parent = Frame3
  879. Knife.BackgroundColor3 = Color3.new(1, 1, 1)
  880. Knife.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  881. Knife.BorderSizePixel = 4
  882. Knife.Position = UDim2.new(0, 290, 0, 120)
  883. Knife.Size = UDim2.new(0, 200, 0, 70)
  884. Knife.Font = Enum.Font.SourceSans
  885. Knife.Text = "Give All Guns"
  886. Knife.TextScaled = true
  887. Knife.TextSize = 14
  888. Knife.TextWrapped = true
  889.  
  890. Mirror.Name = "Mirror"
  891. Mirror.BackgroundColor3 = Color3.new(1, 1, 1)
  892. Mirror.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  893. Mirror.BorderSizePixel = 4
  894. Mirror.Position = UDim2.new(0, 290, 0, 200)
  895. Mirror.Size = UDim2.new(0, 200, 0, 70)
  896. Mirror.Font = Enum.Font.SourceSans
  897. Mirror.Text = "Give All Melee Weapons"
  898. Mirror.TextScaled = true
  899. Mirror.TextSize = 14
  900. Mirror.TextWrapped = true
  901.  
  902. Frame1.Name = "Frame1"
  903. Frame1.Parent = MainFrame
  904. Frame1.BackgroundColor3 = Color3.new(1, 1, 1)
  905. Frame1.BorderColor3 = Color3.new(0.219608, 0.34902, 0.439216)
  906. Frame1.BorderSizePixel = 0
  907. Frame1.Selectable = false
  908. Frame1.Size = UDim2.new(0, 500, 0, 300)
  909. Frame1.Visible = false
  910. Frame1.CanvasSize = UDim2.new(0, 0, 1, 40)
  911. Frame1.ScrollBarThickness = 0
  912.  
  913. BT.Name = "BT"
  914. BT.Parent = Frame1
  915. BT.BackgroundColor3 = Color3.new(1, 1, 1)
  916. BT.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  917. BT.BorderSizePixel = 4
  918. BT.Position = UDim2.new(0, 180, 0, 140)
  919. BT.Size = UDim2.new(0, 150, 0, 35)
  920. BT.Font = Enum.Font.SourceSans
  921. BT.Text = "Btools"
  922. BT.TextScaled = true
  923. BT.TextSize = 14
  924. BT.TextWrapped = true
  925.  
  926. God.Name = "God"
  927. God.Parent = Frame1
  928. God.BackgroundColor3 = Color3.new(1, 1, 1)
  929. God.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  930. God.BorderSizePixel = 4
  931. God.Position = UDim2.new(0, 10, 0, 90)
  932. God.Size = UDim2.new(0, 150, 0, 35)
  933. God.Font = Enum.Font.SourceSans
  934. God.Text = "God Mode"
  935. God.TextScaled = true
  936. God.TextSize = 14
  937. God.TextWrapped = true
  938.  
  939. LOCK.Name = "LOCK"
  940. LOCK.Parent = Frame1
  941. LOCK.BackgroundColor3 = Color3.new(1, 1, 1)
  942. LOCK.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  943. LOCK.BorderSizePixel = 4
  944. LOCK.Position = UDim2.new(0, 10, 0, 40)
  945. LOCK.Size = UDim2.new(0, 150, 0, 35)
  946. LOCK.Font = Enum.Font.SourceSans
  947. LOCK.Text = "Respawn(only when using godmode)"
  948. LOCK.TextScaled = true
  949. LOCK.TextSize = 14
  950. LOCK.TextWrapped = true
  951.  
  952. QuickEscape.Name = "QuickEscape"
  953. QuickEscape.Parent = Frame1
  954. QuickEscape.BackgroundColor3 = Color3.new(1, 1, 1)
  955. QuickEscape.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  956. QuickEscape.BorderSizePixel = 4
  957. QuickEscape.Position = UDim2.new(0, 10, 0, 140)
  958. QuickEscape.Size = UDim2.new(0, 150, 0, 35)
  959. QuickEscape.Font = Enum.Font.SourceSans
  960. QuickEscape.Text = "Quick Escape"
  961. QuickEscape.TextScaled = true
  962. QuickEscape.TextSize = 14
  963. QuickEscape.TextWrapped = true
  964.  
  965. RemDoors.Name = "RemDoors"
  966. RemDoors.Parent = Frame1
  967. RemDoors.BackgroundColor3 = Color3.new(1, 1, 1)
  968. RemDoors.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  969. RemDoors.BorderSizePixel = 4
  970. RemDoors.Position = UDim2.new(0, 180, 0, 90)
  971. RemDoors.Size = UDim2.new(0, 150, 0, 35)
  972. RemDoors.Font = Enum.Font.SourceSans
  973. RemDoors.Text = "Remove Doors"
  974. RemDoors.TextScaled = true
  975. RemDoors.TextSize = 14
  976. RemDoors.TextWrapped = true
  977.  
  978. TPArrest.Name = "TPArrest"
  979. TPArrest.Parent = Frame1
  980. TPArrest.BackgroundColor3 = Color3.new(1, 1, 1)
  981. TPArrest.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  982. TPArrest.BorderSizePixel = 4
  983. TPArrest.Position = UDim2.new(0, 180, 0, 190)
  984. TPArrest.Size = UDim2.new(0, 150, 0, 35)
  985. TPArrest.Font = Enum.Font.SourceSans
  986. TPArrest.Text = "Auto Arrest Current Criminals"
  987. TPArrest.TextScaled = true
  988. TPArrest.TextSize = 14
  989. TPArrest.TextWrapped = true
  990.  
  991. TpCar.Name = "TpCar"
  992. TpCar.Parent = Frame1
  993. TpCar.BackgroundColor3 = Color3.new(1, 1, 1)
  994. TpCar.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  995. TpCar.BorderSizePixel = 4
  996. TpCar.Position = UDim2.new(0, 10, 0, 190)
  997. TpCar.Size = UDim2.new(0, 150, 0, 35)
  998. TpCar.Font = Enum.Font.SourceSans
  999. TpCar.Text = "Change Jumppower"
  1000. TpCar.TextScaled = true
  1001. TpCar.TextSize = 14
  1002. TpCar.TextWrapped = true
  1003.  
  1004. Value.Name = "Value"
  1005. Value.Parent = Frame1
  1006. Value.BackgroundColor3 = Color3.new(1, 1, 1)
  1007. Value.BorderColor3 = Color3.new(0, 0, 0)
  1008. Value.BorderSizePixel = 4
  1009. Value.Position = UDim2.new(0, 180, 0, 240)
  1010. Value.Size = UDim2.new(0, 150, 0, 35)
  1011. Value.Font = Enum.Font.SourceSans
  1012. Value.Text = "Walkspeed/Jumppower"
  1013. Value.TextScaled = true
  1014. Value.TextSize = 14
  1015. Value.TextWrapped = true
  1016.  
  1017. WS.Name = "WS"
  1018. WS.Parent = Frame1
  1019. WS.BackgroundColor3 = Color3.new(1, 1, 1)
  1020. WS.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1021. WS.BorderSizePixel = 4
  1022. WS.Position = UDim2.new(0, 10, 0, 240)
  1023. WS.Size = UDim2.new(0, 150, 0, 35)
  1024. WS.Font = Enum.Font.SourceSans
  1025. WS.Text = "Change Walkspeed"
  1026. WS.TextScaled = true
  1027. WS.TextSize = 14
  1028. WS.TextWrapped = true
  1029.  
  1030. melee.Name = "melee"
  1031. melee.Parent = Frame1
  1032. melee.BackgroundColor3 = Color3.new(1, 1, 1)
  1033. melee.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1034. melee.BorderSizePixel = 4
  1035. melee.Position = UDim2.new(0, 180, 0, 40)
  1036. melee.Size = UDim2.new(0, 150, 0, 35)
  1037. melee.Font = Enum.Font.SourceSans
  1038. melee.Text = "Get All Weapons On Ground"
  1039. melee.TextScaled = true
  1040. melee.TextSize = 14
  1041. melee.TextWrapped = true
  1042.  
  1043. PlayerNameBox.Name = "PlayerNameBox"
  1044. PlayerNameBox.Parent = Frame1
  1045. PlayerNameBox.BackgroundColor3 = Color3.new(1, 1, 1)
  1046. PlayerNameBox.BorderColor3 = Color3.new(0, 0, 0)
  1047. PlayerNameBox.BorderSizePixel = 4
  1048. PlayerNameBox.Position = UDim2.new(0, 345, 0, 40)
  1049. PlayerNameBox.Size = UDim2.new(0, 150, 0, 35)
  1050. PlayerNameBox.Font = Enum.Font.SourceSans
  1051. PlayerNameBox.Text = "Player"
  1052. PlayerNameBox.TextColor3 = Color3.new(0, 0, 0)
  1053. PlayerNameBox.TextScaled = true
  1054. PlayerNameBox.TextSize = 14
  1055. PlayerNameBox.TextWrapped = true
  1056.  
  1057. ArrestPlr.Name = "ArrestPlr"
  1058. ArrestPlr.Parent = Frame1
  1059. ArrestPlr.BackgroundColor3 = Color3.new(1, 1, 1)
  1060. ArrestPlr.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1061. ArrestPlr.BorderSizePixel = 4
  1062. ArrestPlr.Position = UDim2.new(0, 345, 0, 90)
  1063. ArrestPlr.Size = UDim2.new(0, 150, 0, 35)
  1064. ArrestPlr.Font = Enum.Font.SourceSans
  1065. ArrestPlr.Text = "Arrest Player"
  1066. ArrestPlr.TextScaled = true
  1067. ArrestPlr.TextSize = 14
  1068. ArrestPlr.TextWrapped = true
  1069.  
  1070. KillAll.Name = "KillAll"
  1071. KillAll.Parent = Frame1
  1072. KillAll.BackgroundColor3 = Color3.new(1, 1, 1)
  1073. KillAll.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1074. KillAll.BorderSizePixel = 4
  1075. KillAll.Position = UDim2.new(0, 345, 0, 140)
  1076. KillAll.Size = UDim2.new(0, 150, 0, 35)
  1077. KillAll.Font = Enum.Font.SourceSans
  1078. KillAll.Text = "Kill All"
  1079. KillAll.TextScaled = true
  1080. KillAll.TextSize = 14
  1081. KillAll.TextWrapped = true
  1082.  
  1083. HeadTp.Name = "HeadTp"
  1084. HeadTp.Parent = Frame1
  1085. HeadTp.BackgroundColor3 = Color3.new(1, 1, 1)
  1086. HeadTp.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1087. HeadTp.BorderSizePixel = 4
  1088. HeadTp.Position = UDim2.new(0, 345, 0, 190)
  1089. HeadTp.Size = UDim2.new(0, 150, 0, 35)
  1090. HeadTp.Font = Enum.Font.SourceSans
  1091. HeadTp.Text = "Tp all heads"
  1092. HeadTp.TextScaled = true
  1093. HeadTp.TextSize = 14
  1094. HeadTp.TextWrapped = true
  1095.  
  1096. KillPlr.Name = "KillPlr"
  1097. KillPlr.Parent = Frame1
  1098. KillPlr.BackgroundColor3 = Color3.new(1, 1, 1)
  1099. KillPlr.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1100. KillPlr.BorderSizePixel = 4
  1101. KillPlr.Position = UDim2.new(0, 345, 0, 240)
  1102. KillPlr.Size = UDim2.new(0, 150, 0, 35)
  1103. KillPlr.Font = Enum.Font.SourceSans
  1104. KillPlr.Text = "Kill Player"
  1105. KillPlr.TextScaled = true
  1106. KillPlr.TextSize = 14
  1107. KillPlr.TextWrapped = true
  1108.  
  1109. TeamC1.Name = "TeamC1"
  1110. TeamC1.Parent = Frame1
  1111. TeamC1.BackgroundColor3 = Color3.new(1, 1, 1)
  1112. TeamC1.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1113. TeamC1.BorderSizePixel = 4
  1114. TeamC1.Position = UDim2.new(0, 10, 0, 290)
  1115. TeamC1.Size = UDim2.new(0, 150, 0, 35)
  1116. TeamC1.Font = Enum.Font.SourceSans
  1117. TeamC1.Text = "Change to Criminal"
  1118. TeamC1.TextScaled = true
  1119. TeamC1.TextSize = 14
  1120. TeamC1.TextWrapped = true
  1121.  
  1122. TeamC2.Name = "TeamC2"
  1123. TeamC2.Parent = Frame1
  1124. TeamC2.BackgroundColor3 = Color3.new(1, 1, 1)
  1125. TeamC2.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1126. TeamC2.BorderSizePixel = 4
  1127. TeamC2.Position = UDim2.new(0, 180, 0, 290)
  1128. TeamC2.Size = UDim2.new(0, 150, 0, 35)
  1129. TeamC2.Font = Enum.Font.SourceSans
  1130. TeamC2.Text = "Change to Guard"
  1131. TeamC2.TextScaled = true
  1132. TeamC2.TextSize = 14
  1133. TeamC2.TextWrapped = true
  1134.  
  1135. TeamC3.Name = "TeamC3"
  1136. TeamC3.Parent = Frame1
  1137. TeamC3.BackgroundColor3 = Color3.new(1, 1, 1)
  1138. TeamC3.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1139. TeamC3.BorderSizePixel = 4
  1140. TeamC3.Position = UDim2.new(0, 345, 0, 290)
  1141. TeamC3.Size = UDim2.new(0, 150, 0, 35)
  1142. TeamC3.Font = Enum.Font.SourceSans
  1143. TeamC3.Text = "Change to Prisoner"
  1144. TeamC3.TextScaled = true
  1145. TeamC3.TextSize = 14
  1146. TeamC3.TextWrapped = true
  1147.  
  1148. Blackout.Name = "Blackout"
  1149. Blackout.Parent = MainFrame
  1150. Blackout.BackgroundColor3 = Color3.new(0, 0, 0)
  1151. Blackout.BackgroundTransparency = 1
  1152. Blackout.BorderSizePixel = 0
  1153. Blackout.Position = UDim2.new(0, 170, 0, 0)
  1154. Blackout.Size = UDim2.new(0, 330, 0, 300)
  1155.  
  1156.  
  1157.  
  1158. Hotkeys.Name = "Hotkeys"
  1159. Hotkeys.Parent = SettingsTab
  1160. Hotkeys.BackgroundColor3 = Color3.new(1, 1, 1)
  1161. Hotkeys.Position = UDim2.new(0, 250, 0, 0)
  1162. Hotkeys.Size = UDim2.new(0, 250, 0, 300)
  1163. Hotkeys.ScrollBarThickness = 0
  1164.  
  1165. Hotkey1.Name = "Hotkey1"
  1166. Hotkey1.BackgroundColor3 = Color3.new(1, 1, 1)
  1167. Hotkey1.BackgroundTransparency = 1
  1168. Hotkey1.Size = UDim2.new(0, 250, 0, 50)
  1169.  
  1170. HotkeyLabel.Name = "HotkeyLabel"
  1171. HotkeyLabel.Parent = Hotkey1
  1172. HotkeyLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  1173. HotkeyLabel.BorderSizePixel = 0
  1174. HotkeyLabel.Size = UDim2.new(0, 200, 0, 50)
  1175. HotkeyLabel.Font = Enum.Font.SourceSans
  1176. HotkeyLabel.Text = "Sample hotkey:"
  1177. HotkeyLabel.TextScaled = true
  1178. HotkeyLabel.TextSize = 14
  1179. HotkeyLabel.TextWrapped = true
  1180.  
  1181. Hotkey.Name = "Hotkey"
  1182. Hotkey.Parent = Hotkey1
  1183. Hotkey.BackgroundColor3 = Color3.new(1, 1, 1)
  1184. Hotkey.Position = UDim2.new(0, 200, 0, 0)
  1185. Hotkey.Size = UDim2.new(0, 50, 0, 50)
  1186. Hotkey.Font = Enum.Font.SourceSans
  1187. Hotkey.Text = ""
  1188. Hotkey.TextScaled = true
  1189. Hotkey.TextSize = 14
  1190. Hotkey.TextWrapped = true
  1191.  
  1192. Menu.Name = "Menu"
  1193. Menu.Parent = MainFrame
  1194. Menu.BackgroundColor3 = Color3.new(1, 1, 1)
  1195. Menu.ClipsDescendants = true
  1196. Menu.Selectable = true
  1197. Menu.Size = UDim2.new(0, 170, 0, 30)
  1198.  
  1199. Functions.Name = "Functions"
  1200. Functions.Parent = Menu
  1201. Functions.BackgroundColor3 = Color3.new(1, 1, 1)
  1202. Functions.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1203. Functions.BorderSizePixel = 0
  1204. Functions.Position = UDim2.new(0, 0, 0, 30)
  1205. Functions.Size = UDim2.new(0, 170, 0, 40)
  1206. Functions.Font = Enum.Font.SciFi
  1207. Functions.Text = "Functions"
  1208. Functions.TextScaled = true
  1209. Functions.TextSize = 14
  1210. Functions.TextWrapped = true
  1211.  
  1212. MenuB.Name = "MenuB"
  1213. MenuB.Parent = Menu
  1214. MenuB.BackgroundColor3 = Color3.new(1, 1, 1)
  1215. MenuB.BorderColor3 = Color3.new(0.0862745, 0.164706, 0.345098)
  1216. MenuB.Size = UDim2.new(0, 170, 0, 30)
  1217. MenuB.Font = Enum.Font.SourceSans
  1218. MenuB.Text = "Menu"
  1219. MenuB.TextScaled = true
  1220. MenuB.TextSize = 14
  1221. MenuB.TextWrapped = true
  1222.  
  1223. Guns.Name = "Guns"
  1224. Guns.Parent = Menu
  1225. Guns.BackgroundColor3 = Color3.new(1, 1, 1)
  1226. Guns.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1227. Guns.BorderSizePixel = 0
  1228. Guns.Position = UDim2.new(0, 0, 0, 130)
  1229. Guns.Size = UDim2.new(0, 170, 0, 40)
  1230. Guns.Font = Enum.Font.SciFi
  1231. Guns.Text = "Weapons"
  1232. Guns.TextScaled = true
  1233. Guns.TextSize = 14
  1234. Guns.TextWrapped = true
  1235.  
  1236. Togglables.Name = "Togglables"
  1237. Togglables.Parent = Menu
  1238. Togglables.BackgroundColor3 = Color3.new(1, 1, 1)
  1239. Togglables.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1240. Togglables.BorderSizePixel = 0
  1241. Togglables.Position = UDim2.new(0, 0, 0, 180)
  1242. Togglables.Size = UDim2.new(0, 170, 0, 40)
  1243. Togglables.Font = Enum.Font.SciFi
  1244. Togglables.Text = "Toggleables"
  1245. Togglables.TextScaled = true
  1246. Togglables.TextSize = 14
  1247. Togglables.TextWrapped = true
  1248.  
  1249. Teleports.Name = "Teleports"
  1250. Teleports.Parent = Menu
  1251. Teleports.BackgroundColor3 = Color3.new(1, 1, 1)
  1252. Teleports.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1253. Teleports.BorderSizePixel = 0
  1254. Teleports.Position = UDim2.new(0, 0, 0, 80)
  1255. Teleports.Size = UDim2.new(0, 170, 0, 40)
  1256. Teleports.Font = Enum.Font.SciFi
  1257. Teleports.Text = "Teleports"
  1258. Teleports.TextScaled = true
  1259. Teleports.TextSize = 14
  1260. Teleports.TextWrapped = true
  1261.  
  1262. Settings.Name = "Settings"
  1263. Settings.Parent = Menu
  1264. Settings.BackgroundColor3 = Color3.new(1, 1, 1)
  1265. Settings.BorderColor3 = Color3.new(0.176471, 0.27451, 0.345098)
  1266. Settings.BorderSizePixel = 0
  1267. Settings.Position = UDim2.new(0, 0, 0, 230)
  1268. Settings.Size = UDim2.new(0, 170, 0, 40)
  1269. Settings.Font = Enum.Font.SciFi
  1270. Settings.Text = "Settings"
  1271. Settings.TextScaled = true
  1272. Settings.TextSize = 14
  1273. Settings.TextWrapped = true
  1274.  
  1275. Open.Name = "Open"
  1276. Open.Parent = PrisonLife
  1277. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  1278. Open.BorderSizePixel = 4
  1279. Open.Position = UDim2.new(0, 0, 0, 500)
  1280. Open.Size = UDim2.new(0, 100, 0, 25)
  1281. Open.Visible = false
  1282. Open.Font = Enum.Font.SourceSans
  1283. Open.Text = "Open"
  1284. Open.TextScaled = true
  1285. Open.TextSize = 14
  1286. Open.TextWrapped = true
  1287.  
  1288. LoginScreen.Name = "LoginScreen"
  1289. LoginScreen.Active = true
  1290. LoginScreen.BackgroundColor3 = Color3.new(1, 1, 1)
  1291. LoginScreen.BorderSizePixel = 4
  1292. LoginScreen.Draggable = true
  1293. LoginScreen.Position = UDim2.new(0.5, -200, 0.5, -125)
  1294. LoginScreen.Size = UDim2.new(0, 400, 0, 250)
  1295.  
  1296. LoginButton.Name = "LoginButton"
  1297. LoginButton.Parent = LoginScreen
  1298. LoginButton.BackgroundColor3 = Color3.new(1, 1, 1)
  1299. LoginButton.BorderSizePixel = 4
  1300. LoginButton.Position = UDim2.new(0.5, -75, 0.5, -20)
  1301. LoginButton.Size = UDim2.new(0, 150, 0, 40)
  1302. LoginButton.Font = Enum.Font.SourceSans
  1303. LoginButton.Text = "Login"
  1304. LoginButton.TextScaled = true
  1305. LoginButton.TextSize = 14
  1306. LoginButton.TextWrapped = true
  1307.  
  1308. LoginDesc.Name = "LoginDesc"
  1309. LoginDesc.Parent = LoginScreen
  1310. LoginDesc.BackgroundColor3 = Color3.new(1, 1, 1)
  1311. LoginDesc.BackgroundTransparency = 1
  1312. LoginDesc.Position = UDim2.new(0.5, -200, 1, -75)
  1313. LoginDesc.Size = UDim2.new(0, 400, 0, 75)
  1314. LoginDesc.Font = Enum.Font.SourceSans
  1315. LoginDesc.Text = "Press login to start wrecking the game!"
  1316. LoginDesc.TextScaled = true
  1317. LoginDesc.TextSize = 14
  1318. LoginDesc.TextWrapped = true
  1319.  
  1320. LoginTitle.Name = "LoginTitle"
  1321. LoginTitle.Parent = LoginScreen
  1322. LoginTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  1323. LoginTitle.BackgroundTransparency = 1
  1324. LoginTitle.Size = UDim2.new(0, 400, 0, 75)
  1325. LoginTitle.Font = Enum.Font.SourceSans
  1326. LoginTitle.Text = "Prison wrecker V1"
  1327. LoginTitle.TextScaled = true
  1328. LoginTitle.TextSize = 14
  1329. LoginTitle.TextWrapped = true
  1330.  
  1331.  
  1332.  
  1333. LocalPlayer = game.Players.LocalPlayer
  1334. Mouse = LocalPlayer:GetMouse()
  1335. UserInputService = game:GetService('UserInputService')
  1336. NoClipF = false
  1337. ctpF = false
  1338. ArrestF = false
  1339. sprintF = false
  1340. killAuraF = false
  1341. BypassF = false
  1342. ArrestAuraF = false
  1343. ESPF = false
  1344. SuperPunchF = false
  1345. focus = false
  1346. cooldown = 1
  1347. timeDeb = false
  1348.  
  1349. Tp1P = CFrame.new(283, 72, 2213)
  1350. Tp2P = CFrame.new(778, 97, 2498)
  1351. Tp3P = CFrame.new(944, 94, -2055)
  1352. Tp4P = CFrame.new(821, 130, 2587)
  1353. Tp5P = CFrame.new(821, 99, 2274)
  1354. Tp6P = CFrame.new(874, 99, 2319)
  1355. Tp8P = CFrame.new(681, 100, 2330)
  1356. Tp9P = CFrame.new(914, 99, 2444)
  1357.  
  1358.  
  1359.  
  1360.  
  1361.  
  1362.  
  1363.  
  1364. Noclip.MouseButton1Down:connect(function()
  1365.  
  1366. if not game.Players.LocalPlayer.Character:FindFirstChild("ForceField") then
  1367. print("im working")
  1368. if NoClipF == false then
  1369. NoClipF = true
  1370. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  1371. repeat
  1372. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11);
  1373. wait()
  1374. until NoClipF == false
  1375. else
  1376. NoClipF = false
  1377. Noclip.BackgroundColor3 = MainFrame.BackgroundColor3
  1378. end
  1379. end
  1380.  
  1381. end)
  1382.  
  1383. function SN(target)
  1384. for i,v in pairs(game.Players:GetChildren())do
  1385. if v.Name:lower():sub(1, #target) == target:lower() then
  1386. return v.Name
  1387. end
  1388. end
  1389. end
  1390.  
  1391.  
  1392.  
  1393. function Notify(title, msg, button)
  1394. local function callback(text)
  1395. print(text)
  1396. end
  1397.  
  1398. local bindableFunction = Instance.new("BindableFunction")
  1399. bindableFunction.OnInvoke = callback
  1400.  
  1401. game.StarterGui:SetCore("SendNotification", {
  1402. Title = title; -- Required. Has to be a string!
  1403. Text = msg; -- Required. Has to be a string!
  1404. Icon = ""; -- Optional, defaults to "" (no icon)
  1405. Duration = 15; -- Optional, defaults to 5 seconds
  1406. Callback = bindableFunction; -- Optional, gets invoked with the text of the button the user pressed
  1407. Button1 = button; -- Optional, makes a button appear with the given text that, when clicked, fires the Callback if it's given
  1408. })
  1409.  
  1410. print(string.byte(title, 1, #title), string.byte(msg, 1, #msg), string.byte(button, 1, #button))
  1411. end
  1412.  
  1413.  
  1414.  
  1415.  
  1416. ClickTp.MouseButton1Click:connect(function()
  1417. if ctpF == false then
  1418. ctpF = true
  1419. ClickTp.BackgroundColor3 = Color3.new(0, 0, 0)
  1420. else
  1421. ctpF = false
  1422. ClickTp.BackgroundColor3 = MainFrame.BackgroundColor3
  1423. end
  1424. end)
  1425.  
  1426.  
  1427.  
  1428.  
  1429. LA.MouseButton1Click:connect(function()
  1430. if ArrestF == false then
  1431. ArrestF = true
  1432. LA.BackgroundColor3 = Color3.new(0, 0, 0)
  1433. repeat
  1434. wait()
  1435. game.Players.LocalPlayer.Character.Humanoid:ChangeState(10);
  1436. until ArrestF == false
  1437.  
  1438. else
  1439. ArrestF = false
  1440. LA.BackgroundColor3 = MainFrame.BackgroundColor3
  1441. end
  1442. end)
  1443.  
  1444. BPT.MouseButton1Click:connect(function()
  1445. if game.Players.LocalPlayer.Character:FindFirstChild("ClientInputHandler") then
  1446. if game.Players.LocalPlayer.Character:FindFirstChild("ClientInputHandler").Disabled == true then
  1447. game.Players.LocalPlayer.Character:FindFirstChild("ClientInputHandler").Disabled = false
  1448. BypassF = false
  1449. BPT.BackgroundColor3 = Color3.new(1, 1, 1)
  1450. else
  1451. game.Players.LocalPlayer.Character:FindFirstChild("ClientInputHandler").Disabled = true
  1452. BPT.BackgroundColor3 = Color3.new(0,0,0)
  1453. BypassF = true
  1454. end
  1455. else
  1456. Notify("Error", "ClientInputHandler not found!", "Ok ;(")
  1457.  
  1458. end
  1459.  
  1460. end)
  1461. KillAura.MouseButton1Click:connect(function()
  1462. if killAuraF == false then
  1463. killAuraF = true
  1464. KillAura.BackgroundColor3 = Color3.new(0, 0, 0)
  1465. repeat
  1466.  
  1467. wait()
  1468. for i, plr in pairs(game.Players:GetChildren()) do
  1469. if plr.Name ~= game.Players.LocalPlayer.Name and killAuraF == true then
  1470. for i = 1,5 do
  1471. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  1472. end
  1473. end
  1474. end
  1475.  
  1476. until killAuraF == false
  1477.  
  1478. else
  1479. killAuraF = false
  1480. KillAura.BackgroundColor3 = MainFrame.BackgroundColor3
  1481. end
  1482. end)
  1483.  
  1484. TPArrest.MouseButton1Click:connect(function()
  1485. if mousein == false then
  1486. local Player = game.Players.LocalPlayer
  1487. local cpos = Player.Character.HumanoidRootPart.CFrame
  1488. for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
  1489. if v.Name ~= Player.Name then
  1490. local i = 10
  1491. repeat
  1492. wait()
  1493. i = i-1
  1494. game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
  1495. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  1496. until i == 0
  1497. end
  1498. end
  1499. Player.Character.HumanoidRootPart.CFrame = cpos
  1500. Notify("Success", "Arrested all of the n00bs", "Cool!")
  1501. end
  1502. end)
  1503.  
  1504.  
  1505. QuickEscape.MouseButton1Click:connect(function()
  1506. if mousein == false then
  1507. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(283, 72, 2213)
  1508. end
  1509. end)
  1510.  
  1511.  
  1512. TpCar.MouseButton1Click:connect(function()
  1513. if mousein == false then
  1514. game.Players.LocalPlayer.Character.Humanoid.JumpPower = tonumber(Value.Text)
  1515. end
  1516. end)
  1517.  
  1518.  
  1519. BT.MouseButton1Click:connect(function()
  1520. if mousein == false then
  1521. local tool = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  1522. tool.BinType = "Hammer"
  1523. local tool = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  1524. tool.BinType = "Clone"
  1525. local tool = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  1526. tool.BinType = "GameTool"
  1527. end
  1528. end)
  1529.  
  1530. WS.MouseButton1Click:connect(function()
  1531. if mousein == false then
  1532. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(Value.Text)
  1533. end
  1534. end)
  1535.  
  1536.  
  1537. LOCK.MouseButton1Click:connect(function()
  1538. if mousein == false then
  1539. local a1 = Instance.new("Model", workspace)
  1540. local a2 = Instance.new("Part", a1)
  1541. a2.CanCollide = true
  1542. a2.Anchored = true
  1543. a2.CFrame = CFrame.new(10000, 10000, 10000)
  1544. a2.Name = "Torso"
  1545. local a3 = Instance.new("Humanoid", a1)
  1546. a3.MaxHealth=100;a3.Health=100
  1547. game.Players.LocalPlayer.Character = a1
  1548. a3.Health=0
  1549. end
  1550. end)
  1551.  
  1552. melee.MouseButton1Click:connect(function()
  1553. if mousein == false then
  1554. local weapons = {"Crude Knife", "Sharpened stick", "Extendo mirror"}
  1555. for i, v in pairs(game.ReplicatedStorage.Tools:GetChildren()) do
  1556. for j, k in pairs(weapons) do
  1557. if v.Name == k then
  1558. v:Clone().Parent = game.Players.LocalPlayer.Backpack
  1559. end
  1560. end
  1561. end
  1562. end
  1563. end)
  1564.  
  1565. RemDoors.MouseButton1Down:connect(function()
  1566. game.Workspace.Doors:Destroy()
  1567. end)
  1568.  
  1569. God.MouseButton1Down:connect(function()
  1570. if mousein == false then
  1571. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  1572. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  1573. l.Parent = game.Players.LocalPlayer.Character
  1574. l.Name = "Humanoid"
  1575. wait(0.1)
  1576. game.Players.LocalPlayer.Character["1"]:Destroy()
  1577. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  1578. game.Players.LocalPlayer.Character.Animate.Disabled = true
  1579. wait(0.1)
  1580. game.Players.LocalPlayer.Character.Animate.Disabled = false
  1581. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  1582. end
  1583. end)
  1584.  
  1585.  
  1586.  
  1587. KillAll.MouseButton1Down:connect(function()
  1588. if mousein == false then
  1589.  
  1590.  
  1591. local Player = game.Players.LocalPlayer
  1592. local prevCFrame = Player.Character.HumanoidRootPart.CFrame
  1593. for i,v in pairs(game.Players:GetChildren()) do
  1594. if v.Name ~= game.Players.LocalPlayer.Name then
  1595. if not v.Character:FindFirstChild("ForceField") then
  1596. local playerName = v.Name
  1597. local PlayerToKill = game.Players:FindFirstChild(playerName)
  1598.  
  1599.  
  1600.  
  1601. repeat
  1602. if Player.Character.Humanoid.Sit == true then
  1603. Player.Character.Humanoid.Sit = false
  1604. end
  1605. Player.Character.HumanoidRootPart.CFrame = PlayerToKill.Character.HumanoidRootPart.CFrame
  1606. for h = 1,10 do
  1607. game.ReplicatedStorage.meleeEvent:FireServer(PlayerToKill)
  1608. end
  1609. game:GetService("RunService").RenderStepped:wait()
  1610. until PlayerToKill.Character.Humanoid.Health == 0 or v == nil
  1611.  
  1612. Player.Character.HumanoidRootPart.CFrame = prevCFrame
  1613. end
  1614. end
  1615. end
  1616.  
  1617. end
  1618. end)
  1619.  
  1620. function createTag(Color, Tag)
  1621.  
  1622. for i,v in pairs(game.Teams[Tag]:GetPlayers())do
  1623. if v.Character then
  1624. if not v.Character.Head:FindFirstChild("ESPTag") then
  1625. local BBG = Instance.new("BillboardGui")
  1626. BBG.Parent = v.Character.Head
  1627. BBG.Adornee = v.Character.Head
  1628. BBG.Name = "ESPTag"
  1629. BBG.Size = UDim2.new(2, 0, 1, 0)
  1630. BBG.StudsOffset = Vector3.new(-2.5, 6, 0)
  1631. BBG.AlwaysOnTop = true
  1632. local text = Instance.new("TextLabel", BBG)
  1633. text.Text = Tag
  1634. text.Size = UDim2.new(4, 0, 8, 0)
  1635. text.Position = UDim2.new(0, 0, 0, 0)
  1636. text.TextScaled = true
  1637. text.TextColor3 = Color
  1638. text.BackgroundTransparency = 1
  1639. end
  1640. end
  1641. end
  1642. end
  1643.  
  1644. function removeTag()
  1645. for i,v in pairs(game.Players:GetChildren())do
  1646. if v.Character then
  1647. if v.Character.Head:FindFirstChild("ESPTag") then
  1648. v.Character.Head.ESPTag:Destroy()
  1649. end
  1650. end
  1651. end
  1652. end
  1653.  
  1654. ESP.MouseButton1Down:connect(function()
  1655. if mousein == false then
  1656. if ESPF == false then
  1657. ESPF = true
  1658. ESP.BackgroundColor3 = Color3.new(0,0,0)
  1659. repeat
  1660. wait()
  1661.  
  1662. createTag(Color3.new(255,0,0), "Criminals")
  1663. createTag(Color3.new(0,0,255), "Guards")
  1664. createTag(Color3.new(255,85,0), "Inmates")
  1665. until ESPF == false
  1666. removeTag()
  1667. else
  1668. ESP.BackgroundColor3 = Color3.new(1,1,1)
  1669. ESPF = false
  1670. end
  1671. end
  1672. end)
  1673.  
  1674.  
  1675. SuperPunch.MouseButton1Down:connect(function()
  1676. if SuperPunchF == false then
  1677. SuperPunchF = true
  1678. SuperPunch.BackgroundColor3 = Color3.new(0,0,0)
  1679. else
  1680. SuperPunch.BackgroundColor3 = Color3.new(1,1,1)
  1681. SuperPunchF = false
  1682. end
  1683.  
  1684. end)
  1685.  
  1686.  
  1687.  
  1688. mousein = false
  1689. Menu.MouseLeave:connect(function()
  1690. Menu:TweenSize(UDim2.new(0, 170, 0, 30), "Out", "Quad", 0.10)
  1691. mousein = false
  1692. wait()
  1693. if mousein == false then
  1694. Blackout.BackgroundTransparency = 0.7
  1695. end
  1696. wait()
  1697. if mousein == false then
  1698. Blackout.BackgroundTransparency = 1
  1699. end
  1700. end)
  1701.  
  1702. Menu.MouseEnter:connect(function()
  1703. Menu:TweenSize(UDim2.new(0, 170, 0, 300), "Out", "Quad", 0.10)
  1704. mousein = true
  1705. wait()
  1706. if mousein == true then
  1707. Blackout.BackgroundTransparency = 0.9
  1708. end
  1709. wait()
  1710. if mousein == true then
  1711. Blackout.BackgroundTransparency = 0.7
  1712. end
  1713. wait()
  1714. if mousein == true then
  1715. Blackout.BackgroundTransparency = 0.5
  1716. end
  1717. end)
  1718.  
  1719.  
  1720. Functions.MouseButton1Down:connect(function()
  1721. Frame1.Visible = true
  1722. Frame2.Visible = false
  1723. Frame3.Visible = false
  1724. Frame4.Visible = false
  1725. SettingsTab = false
  1726. end)
  1727.  
  1728. Teleports.MouseButton1Down:connect(function()
  1729. Frame2.Visible = true
  1730. Frame1.Visible = false
  1731. Frame3.Visible = false
  1732. Frame4.Visible = false
  1733. SettingsTab = false
  1734. end)
  1735. Guns.MouseButton1Down:connect(function()
  1736. Frame2.Visible = false
  1737. Frame1.Visible = false
  1738. Frame3.Visible = true
  1739. Frame4.Visible = false
  1740. SettingsTab = false
  1741. end)
  1742. Togglables.MouseButton1Down:connect(function()
  1743. Frame2.Visible = false
  1744. Frame1.Visible = false
  1745. Frame3.Visible = false
  1746. Frame4.Visible = true
  1747. SettingsTab = false
  1748. end)
  1749.  
  1750. Settings.MouseButton1Down:connect(function()
  1751. Frame2.Visible = false
  1752. Frame1.Visible = false
  1753. Frame3.Visible = false
  1754. Frame4.Visible = false
  1755. SettingsTab = true
  1756. end)
  1757.  
  1758.  
  1759.  
  1760. HeadTp.MouseButton1Down:connect(function()
  1761.  
  1762.  
  1763.  
  1764. for i,v in pairs(game.Players:GetChildren()) do
  1765. if v.Name ~= game.Players.LocalPlayer.Name then
  1766. if v.Character then
  1767. v.Character.Head.Position = game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,0,2)
  1768. end
  1769. end
  1770. end
  1771.  
  1772.  
  1773.  
  1774.  
  1775. end)
  1776.  
  1777.  
  1778.  
  1779.  
  1780. ArrestAura.MouseButton1Click:connect(function()
  1781. if ArrestAuraF == false then
  1782. ArrestAuraF = true
  1783. ArrestAura.BackgroundColor3 = Color3.new(0, 0, 0)
  1784. repeat
  1785. wait()
  1786. for i = 1,10 do
  1787. local arrestEvent = game.Workspace.Remote.arrest
  1788. for _, plr in pairs (game:GetService('Players'):GetChildren()) do
  1789. if plr.Name ~= game.Players.LocalPlayer.Name then
  1790. local obj = plr.Character.HumanoidRootPart
  1791. local response =arrestEvent:InvokeServer(obj)
  1792. end
  1793. end
  1794. end
  1795.  
  1796. until ArrestAuraF == false
  1797. else
  1798. ArrestAuraF = false
  1799. ArrestAura.BackgroundColor3 = MainFrame.BackgroundColor3
  1800.  
  1801. end
  1802. end)
  1803.  
  1804.  
  1805. --[[wait()
  1806. char = game.Players.LocalPlayer.CharacterAdded:wait()
  1807. game.Players.LocalPlayer.Character.HumanoidRootPart.Touched:connect(function(part)
  1808. if NoClipF == true then
  1809. part.CanCollide = false
  1810. wait(1)
  1811. part.CanCollide = true
  1812. end
  1813. end)
  1814.  
  1815. game.Players.LocalPlayer.Character.Humanoid.Died:connect(function()
  1816. char = game.Players.LocalPlayer.CharacterAdded:wait()
  1817. game.Players.LocalPlayer.Character.HumanoidRootPart.Touched:connect(function(part)
  1818. if NoClipF == true then
  1819. part.CanCollide = false
  1820. wait(1)
  1821. part.CanCollide = true
  1822. end
  1823. end)
  1824. end)]]
  1825.  
  1826.  
  1827.  
  1828.  
  1829. ------------------Hotkeys---------------------
  1830.  
  1831.  
  1832.  
  1833.  
  1834.  
  1835.  
  1836. local Scooldown = false
  1837.  
  1838. function punch()
  1839.  
  1840. local mainRemotes = game.ReplicatedStorage
  1841. local meleeRemote = mainRemotes['meleeEvent']
  1842. local mouse = game.Players.LocalPlayer:GetMouse()
  1843. local punching = false
  1844. Scooldown = true
  1845. local part = Instance.new("Part", game.Players.LocalPlayer.Character)
  1846. part.Transparency = 1
  1847. part.Size = Vector3.new(5, 2, 3)
  1848. part.CanCollide = false
  1849. local w1 = Instance.new("Weld", part)
  1850. w1.Part0 = game.Players.LocalPlayer.Character.Torso
  1851. w1.Part1 = part
  1852. w1.C1 = CFrame.new(0,0,2)
  1853. part.Touched:connect(function(hit)
  1854. if game.Players:FindFirstChild(hit.Parent.Name) then
  1855. local plr = game.Players:FindFirstChild(hit.Parent.Name)
  1856. if plr.Name ~= game.Players.LocalPlayer.Name then
  1857. part:Destroy()
  1858.  
  1859. for i = 1,100 do
  1860. meleeRemote:FireServer(plr)
  1861. end
  1862. end
  1863. end
  1864. end)
  1865.  
  1866. wait(1)
  1867. Scooldown = false
  1868. part:Destroy()
  1869. end
  1870.  
  1871.  
  1872. Mouse.KeyDown:connect(function(key)
  1873. if SuperPunchF == true then
  1874. if Scooldown == false then
  1875. if key:lower() == "f" then
  1876.  
  1877. punch()
  1878.  
  1879. end
  1880. end
  1881. end
  1882. end)
  1883.  
  1884.  
  1885. print("hi")
  1886. hotkeypos = 0
  1887. for i,v in pairs(Frame4:GetChildren())do
  1888. local HotkeyFrame = Hotkey1:Clone()
  1889. HotkeyFrame.Name = v.Name
  1890. HotkeyFrame.Parent = Hotkeys
  1891. HotkeyFrame.Position = UDim2.new(0,0,0, hotkeypos)
  1892. HotkeyFrame.HotkeyLabel.Text = v.Name.." Hotkey:"
  1893. hotkeypos = hotkeypos+50
  1894. HotkeyFrame.Hotkey.FocusLost:connect(function(pressed)
  1895. if pressed then
  1896.  
  1897. Notify("Error", "The "..v.Name.." hotkey is invalid.", "Ok. ;(")
  1898.  
  1899. end
  1900. end)
  1901.  
  1902. end
  1903.  
  1904.  
  1905. UserInputService.InputBegan:connect(function(Input, Processed)
  1906.  
  1907. if Input.UserInputType == Enum.UserInputType.Keyboard then
  1908. print("1")
  1909. if focus == false then
  1910. print("2")
  1911. if Hotkeys["Noclip"].Hotkey.Text ~= "" then
  1912. if Input.KeyCode == Enum.KeyCode[Hotkeys["Noclip"].Hotkey.Text:upper()] then
  1913. if not game.Players.LocalPlayer.Character:FindFirstChild("ForceField") then
  1914. print("im working")
  1915. if NoClipF == false then
  1916. NoClipF = true
  1917. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  1918. repeat
  1919. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11);
  1920. wait()
  1921. until NoClipF == false
  1922. else
  1923. NoClipF = false
  1924. Noclip.BackgroundColor3 = MainFrame.BackgroundColor3
  1925. end
  1926. end
  1927.  
  1928. end
  1929. end
  1930.  
  1931.  
  1932. if Hotkeys["Click Tp"].Hotkey.Text ~= "" then
  1933. if Input.KeyCode == Enum.KeyCode[Hotkeys["Click Tp"].Hotkey.Text:upper()] then
  1934. if ctpF == false then
  1935. ctpF = true
  1936. ClickTp.BackgroundColor3 = Color3.new(0, 0, 0)
  1937. else
  1938. ctpF = false
  1939. ClickTp.BackgroundColor3 = MainFrame.BackgroundColor3
  1940. end
  1941. end
  1942. end
  1943.  
  1944. if Hotkeys["ESP"].Hotkey.Text ~= "" then
  1945. if Input.KeyCode == Enum.KeyCode[Hotkeys["ESP"].Hotkey.Text:upper()] then
  1946. if ESPF == false then
  1947. ESPF = true
  1948. ESP.BackgroundColor3 = Color3.new(0,0,0)
  1949. repeat
  1950. wait()
  1951.  
  1952. createTag(Color3.new(255,0,0), "Criminals")
  1953. createTag(Color3.new(0,0,255), "Guards")
  1954. createTag(Color3.new(255,85,0), "Inmates")
  1955. until ESPF == false
  1956. removeTag()
  1957. else
  1958. ESP.BackgroundColor3 = Color3.new(1,1,1)
  1959. ESPF = false
  1960. end
  1961. end
  1962. end
  1963.  
  1964. if Hotkeys["Airwalk"].Hotkey.Text ~= "" then
  1965. if Input.KeyCode == Enum.KeyCode[Hotkeys["Airwalk"].Hotkey.Text:upper()] then
  1966. if ArrestF == false then
  1967. ArrestF = true
  1968. LA.BackgroundColor3 = Color3.new(0, 0, 0)
  1969. repeat
  1970. wait()
  1971. game.Players.LocalPlayer.Character.Humanoid:ChangeState(10);
  1972. until ArrestF == false
  1973.  
  1974. else
  1975. ArrestF = false
  1976. LA.BackgroundColor3 = MainFrame.BackgroundColor3
  1977. end
  1978. end
  1979. end
  1980.  
  1981.  
  1982. if Hotkeys["Arrest Aura"].Hotkey.Text ~= "" then
  1983. if Input.KeyCode == Enum.KeyCode[Hotkeys["Arrest Aura"].Hotkey.Text:upper()] then
  1984. if ArrestAuraF == false then
  1985. ArrestAuraF = true
  1986. ArrestAura.BackgroundColor3 = Color3.new(0, 0, 0)
  1987. repeat
  1988. wait()
  1989. for i = 1,10 do
  1990. local arrestEvent = game.Workspace.Remote.arrest
  1991. for _, plr in pairs (game:GetService('Players'):GetChildren()) do
  1992. if plr.Name ~= game.Players.LocalPlayer.Name then
  1993. local obj = plr.Character.HumanoidRootPart
  1994. local response =arrestEvent:InvokeServer(obj)
  1995. end
  1996. end
  1997. end
  1998.  
  1999. until ArrestAuraF == false
  2000. else
  2001. ArrestAuraF = false
  2002. ArrestAura.BackgroundColor3 = MainFrame.BackgroundColor3
  2003.  
  2004. end
  2005. end
  2006. end
  2007.  
  2008. if Hotkeys["KillAura"].Hotkey.Text ~= "" then
  2009. if Input.KeyCode == Enum.KeyCode[Hotkeys["KillAura"].Hotkey.Text:upper()] then
  2010. if killAuraF == false then
  2011. killAuraF = true
  2012. KillAura.BackgroundColor3 = Color3.new(0, 0, 0)
  2013. repeat
  2014.  
  2015. wait()
  2016. for i, plr in pairs(game.Players:GetChildren()) do
  2017. if plr.Name ~= game.Players.LocalPlayer.Name and killAuraF == true then
  2018. for i = 1,5 do
  2019. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  2020. end
  2021. end
  2022. end
  2023.  
  2024. until killAuraF == false
  2025.  
  2026. else
  2027. killAuraF = false
  2028. KillAura.BackgroundColor3 = MainFrame.BackgroundColor3
  2029. end
  2030. end
  2031. end
  2032.  
  2033. if Hotkeys["Taser Bypass"].Hotkey.Text ~= "" then
  2034. if Input.KeyCode == Enum.KeyCode[Hotkeys["Bypass Taser"].Hotkey.Text:upper()] then
  2035. if game.Players.LocalPlayer.Character:FindFirstChild("ClientInputHandler") then
  2036. if game.Players.LocalPlayer.Character:FindFirstChild("ClientInputHandler").Disabled == true then
  2037. game.Players.LocalPlayer.Character:FindFirstChild("ClientInputHandler").Disabled = false
  2038. BypassF = false
  2039. BPT.BackgroundColor3 = Color3.new(0, 0, 0)
  2040. else
  2041. game.Players.LocalPlayer.Character:FindFirstChild("ClientInputHandler").Disabled = true
  2042. BPT.BackgroundColor3 = MainFrame.BackgroundColor3
  2043. BypassF = true
  2044. end
  2045. else
  2046. Notify("Error", "ClientInputHandler not found!", "Ok ;(")
  2047.  
  2048. end
  2049.  
  2050. end
  2051.  
  2052.  
  2053. end
  2054.  
  2055.  
  2056.  
  2057. end
  2058.  
  2059. if Hotkeys["Super Punch"].Hotkey.Text ~= nil then
  2060. if Input.KeyCode == Enum.KeyCode[Hotkeys["Super Punch"].Hotkey.Text:upper()] then
  2061. if SuperPunchF == true then
  2062. SuperPunchF = false
  2063. SuperPunch.BackgroundColor3 = Color3.new(1,1,1)
  2064. else
  2065. SuperPunch.BackgroundColor3 = Color3.new(0,0,0)
  2066. SuperPunchF = true
  2067. end
  2068. end
  2069. end
  2070.  
  2071. end
  2072.  
  2073.  
  2074.  
  2075.  
  2076. end)
  2077.  
  2078.  
  2079.  
  2080.  
  2081.  
  2082.  
  2083.  
  2084.  
  2085.  
  2086.  
  2087.  
  2088.  
  2089. -------------------------------------------
  2090.  
  2091. Tp1.MouseButton1Down:connect(function()
  2092. if mousein == false then
  2093. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Tp1P
  2094. end
  2095. end)
  2096.  
  2097. Tp2.MouseButton1Down:connect(function()
  2098. if mousein == false then
  2099. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Tp2P
  2100. end
  2101. end)
  2102. Tp3.MouseButton1Down:connect(function()
  2103. if mousein == false then
  2104. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Tp3P
  2105. end
  2106. end)
  2107. Tp4.MouseButton1Down:connect(function()
  2108.  
  2109. if mousein == false then
  2110. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Tp4P
  2111. end
  2112. end)
  2113. Tp5.MouseButton1Down:connect(function()
  2114. if mousein == false then
  2115. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Tp5P
  2116. end
  2117. end)
  2118. Tp6.MouseButton1Down:connect(function()
  2119. if mousein == false then
  2120. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Tp6P
  2121. end
  2122. end)
  2123. Tp8.MouseButton1Down:connect(function()
  2124. if mousein == false then
  2125. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Tp8P
  2126. end
  2127.  
  2128. end)
  2129. Tp9.MouseButton1Down:connect(function()
  2130. if mousein == false then
  2131. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[Player.Text].Character.HumanoidRootPart.CFrame
  2132. end
  2133. end)
  2134. Tp10.MouseButton1Down:connect(function()
  2135. if mousein == false then
  2136. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Tp9P
  2137. end
  2138. end)
  2139.  
  2140.  
  2141.  
  2142.  
  2143.  
  2144. game.Players.LocalPlayer.CharacterAdded:connect(function()
  2145. game.Players.LocalPlayer.Character.Humanoid.Died:connect(function()
  2146. game.Players.LocalPlayer.Character:WaitForChild("ClientInputHandler").Disabled = BypassF
  2147. end)
  2148. end)
  2149.  
  2150.  
  2151.  
  2152.  
  2153.  
  2154. Mouse.Button1Down:connect(function()
  2155. if ctpF == true then
  2156. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.p)
  2157. end
  2158. end)
  2159.  
  2160.  
  2161. open = false
  2162. Open.MouseButton1Down:connect(function()
  2163. if open == false then
  2164. Topbar.Visible = true
  2165. open = true
  2166. Open.Text = "Close"
  2167. else
  2168. Topbar.Visible = false
  2169. open = false
  2170. Open.Text = "Open"
  2171. end
  2172. end)
  2173.  
  2174.  
  2175.  
  2176.  
  2177.  
  2178.  
  2179.  
  2180.  
  2181.  
  2182.  
  2183.  
  2184. TeamC1.MouseButton1Down:connect(function()
  2185. if mousein == false then
  2186. local prevposition = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2187. wait(0.1)
  2188. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-975, 112, 2055)
  2189. wait(0.5)
  2190. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = prevposition
  2191. end
  2192. end)
  2193.  
  2194. TeamC2.MouseButton1Down:connect(function()
  2195. if mousein == false then
  2196. workspace.Remote.TeamEvent:FireServer("Bright blue")
  2197. end
  2198. end)
  2199.  
  2200. TeamC3.MouseButton1Down:connect(function()
  2201. if mousein == false then
  2202. workspace.Remote.TeamEvent:FireServer("Bright orange")
  2203. end
  2204. end)
  2205.  
  2206. ArrestPlr.MouseButton1Down:connect(function()
  2207. if mousein == false then
  2208. local target
  2209. if SN(PlayerNameBox.Text) ~= nil then
  2210. target = game.Players:FindFirstChild(SN(PlayerNameBox.Text))
  2211.  
  2212. end
  2213.  
  2214.  
  2215. if target ~= nil then
  2216.  
  2217. local Player = game.Players.LocalPlayer
  2218. local prevPos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2219. for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
  2220. if v.Name:lower() == target.Name:lower() then
  2221. local i = 5
  2222. repeat
  2223. wait()
  2224. i = i-1
  2225. if Player.Character.Humanoid.Sit == true then
  2226. Player.Character.Humanoid.Sit = false
  2227. end
  2228. game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
  2229. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  2230. until i == 0
  2231. Player.Character.HumanoidRootPart.CFrame = prevPos
  2232. end
  2233. end
  2234. else
  2235. Notify("Error", "Player isnt in game.", "Ok.")
  2236. end
  2237. end
  2238.  
  2239. end)
  2240.  
  2241.  
  2242. KillPlr.MouseButton1Down:connect(function()
  2243. if mousein == false then
  2244. local target
  2245. if SN(PlayerNameBox.Text) ~= nil then
  2246. target = game.Players:FindFirstChild(SN(PlayerNameBox.Text))
  2247. end
  2248.  
  2249.  
  2250.  
  2251.  
  2252.  
  2253.  
  2254.  
  2255.  
  2256.  
  2257.  
  2258.  
  2259.  
  2260.  
  2261.  
  2262.  
  2263.  
  2264.  
  2265.  
  2266.  
  2267.  
  2268.  
  2269.  
  2270.  
  2271.  
  2272.  
  2273.  
  2274.  
  2275.  
  2276.  
  2277.  
  2278.  
  2279.  
  2280. if target ~= nil then
  2281. local Player = game.Players.LocalPlayer
  2282. for i,v in pairs(game.Players:GetChildren()) do
  2283. if v.Name == target.Name then
  2284. if not v.Character:FindFirstChild("ForceField") then
  2285.  
  2286. local PlayerToKill = game.Players:FindFirstChild(target.Name)
  2287. local prevCFrame = Player.Character.HumanoidRootPart.CFrame
  2288.  
  2289.  
  2290. repeat
  2291. Player.Character.HumanoidRootPart.CFrame = PlayerToKill.Character.HumanoidRootPart.CFrame
  2292. for h = 1,10 do
  2293. game.ReplicatedStorage.meleeEvent:FireServer(PlayerToKill)
  2294. end
  2295. wait()
  2296. until PlayerToKill.Character.Humanoid.Health == 0 or v == nil
  2297. wait()
  2298. Player.Character.HumanoidRootPart.CFrame = prevCFrame
  2299. end
  2300. end
  2301. end
  2302. else
  2303. Notify("Error", "Player isnt in game.", "Ok.")
  2304. end
  2305. end
  2306. end)
  2307.  
  2308. local function getclass(t)
  2309. for i,v in pairs(t:GetChildren()) do
  2310. if v.ClassName == "TextBox" then
  2311. v.Focused:connect(function()
  2312.  
  2313. print("3")
  2314. end)
  2315. v.FocusLost:connect(function()
  2316. focused = false
  2317.  
  2318. end)
  2319. end
  2320. getclass(v)
  2321. end
  2322. end
  2323.  
  2324.  
  2325.  
  2326.  
  2327. labelPos = 0
  2328. function resetPlayerList()
  2329. wait(1)
  2330. Players:ClearAllChildren()
  2331. labelPos = 0
  2332. for i,v in pairs(game.Players:GetChildren())do
  2333. if v.Name ~= game.Players.LocalPlayer.Name then
  2334. local label = Instance.new("TextButton", Players)
  2335. label.Text = v.Name
  2336. label.Size = UDim2.new(0, 140, 0, 35)
  2337. label.Position = UDim2.new(0, 0, 0, labelPos)
  2338. label.TextScaled = true
  2339. label.BackgroundColor3 = Color3.new(1,1,1)
  2340. labelPos = labelPos+35
  2341. Players.CanvasSize = UDim2.new(0, 0, 0, labelPos)
  2342. label.MouseButton1Down:connect(function()
  2343. Player.Text = label.Text
  2344. end)
  2345. end
  2346. end
  2347. end
  2348.  
  2349.  
  2350.  
  2351.  
  2352.  
  2353.  
  2354.  
  2355.  
  2356. resetPlayerList()
  2357. game.Players.PlayerAdded:connect(function()
  2358. resetPlayerList()
  2359. end)
  2360. game.Players.PlayerRemoving:connect(function()
  2361. wait(1)
  2362. resetPlayerList()
  2363. end)
  2364.  
  2365.  
  2366.  
  2367.  
  2368. Ak47.MouseButton1Down:connect(function()
  2369. if mousein == false then
  2370. local Weapon = {"AK-47"}
  2371. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  2372. if v.Name == Weapon[1] then
  2373. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  2374. end
  2375. end
  2376. end
  2377. end)
  2378. M4A1.MouseButton1Down:connect(function()
  2379. if mousein == false then
  2380. local Weapon = {"M4A1"}
  2381. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  2382. if v.Name == Weapon[1] then
  2383. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  2384. end
  2385. end
  2386. end
  2387. end)
  2388. M9.MouseButton1Down:connect(function()
  2389. if mousein == false then
  2390. local Weapon = {"M9"}
  2391. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  2392. if v.Name == Weapon[1] then
  2393. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  2394. end
  2395. end
  2396. end
  2397. end)
  2398. Shotgun.MouseButton1Down:connect(function()
  2399. if mousein == false then
  2400. local Weapon = {"Remington 870"}
  2401. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  2402. if v.Name == Weapon[1] then
  2403. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  2404. end
  2405. end
  2406. end
  2407. end)
  2408.  
  2409. Knife.MouseButton1Down:connect(function()
  2410. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  2411.  
  2412. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  2413.  
  2414. end
  2415. end)
  2416.  
  2417. melee.MouseButton1Down:connect(function()
  2418. if mousein == false then
  2419. for i,v in pairs(workspace.Prison_ITEMS.single:GetChildren()) do
  2420.  
  2421. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  2422. end
  2423. end
  2424. end)
  2425.  
  2426.  
  2427. LoginButton.MouseButton1Down:connect(function()
  2428. LoginScreen:Destroy()
  2429. Notify("Loading...", "Be patient.", ">:(")
  2430. wait(math.random(2,3))
  2431.  
  2432. Open.Visible = true
  2433. open = false
  2434. for i = 1,10 do
  2435. print("WRECK THE GAME!")
  2436. end
  2437. Notify("Loaded!", "You can start wrecking the game now!", "Cool!")
  2438. end)
  2439.  
  2440. getclass(PrisonLife)
  2441. LoginScreen.Parent = PrisonLife
  2442. Notify("Launcher Loaded!", "Press login to start wrecking the game!", "Cool!")
  2443. end)
  2444.  
  2445. Moresoon.Name = "More soon!"
  2446. Moresoon.Parent = PrisonLife_2
  2447. Moresoon.BackgroundColor3 = Color3.new(1, 1, 1)
  2448. Moresoon.BackgroundTransparency = 1
  2449. Moresoon.Position = UDim2.new(0, 0, 0.652777791, 0)
  2450. Moresoon.Size = UDim2.new(0, 185, 0, 50)
  2451. Moresoon.Font = Enum.Font.SourceSans
  2452. Moresoon.Text = "More Soon!"
  2453. Moresoon.TextColor3 = Color3.new(1, 1, 1)
  2454. Moresoon.TextScaled = true
  2455. Moresoon.TextSize = 14
  2456. Moresoon.TextWrapped = true
  2457.  
  2458. ExitForPrison.Name = "Exit For Prison"
  2459. ExitForPrison.Parent = PrisonLife_2
  2460. ExitForPrison.BackgroundColor3 = Color3.new(1, 0, 0)
  2461. ExitForPrison.Position = UDim2.new(0, 0, 0.416666687, 0)
  2462. ExitForPrison.Size = UDim2.new(0, 185, 0, 24)
  2463. ExitForPrison.Font = Enum.Font.SourceSans
  2464. ExitForPrison.Text = "Exit"
  2465. ExitForPrison.TextColor3 = Color3.new(0, 0, 0)
  2466. ExitForPrison.TextScaled = true
  2467. ExitForPrison.TextSize = 14
  2468. ExitForPrison.TextWrapped = true
  2469.  
  2470. ExitForPrison.MouseButton1Down:connect(function()
  2471. PrisonLife_2.Visible = false
  2472. GameFrame.Visible = true
  2473. end)
  2474.  
  2475. FeScripts_2.Name = "Fe Scripts"
  2476. FeScripts_2.Parent = LoginGui
  2477. FeScripts_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2478. FeScripts_2.Position = UDim2.new(0.097560972, 0, 0.667546153, 0)
  2479. FeScripts_2.Size = UDim2.new(0, 451, 0, 195)
  2480. FeScripts_2.Visible = false
  2481.  
  2482. Creeper.Name = "Creeper"
  2483. Creeper.Parent = FeScripts_2
  2484. Creeper.BackgroundColor3 = Color3.new(1, 1, 1)
  2485. Creeper.Position = UDim2.new(0.00221729488, 0, 0, 0)
  2486. Creeper.Size = UDim2.new(0, 217, 0, 50)
  2487. Creeper.Font = Enum.Font.SourceSans
  2488. Creeper.Text = "Creeper"
  2489. Creeper.TextColor3 = Color3.new(0, 0, 0)
  2490. Creeper.TextScaled = true
  2491. Creeper.TextSize = 14
  2492. Creeper.TextWrapped = true
  2493.  
  2494. Creeper.MouseButton1Down:connect(function()
  2495. -->>Creeper R6<<--
  2496. -->>___Made By Infinity#3369___<--
  2497.  
  2498. local lol = game:GetService('Players').LocalPlayer
  2499. lol.Character["Head"].Mesh:Destroy()
  2500. lol.Character["Left Arm"]:Destroy()
  2501. lol.Character["Right Arm"]:Destroy()
  2502.  
  2503. for i,v in pairs(game:GetService('Players').LocalPlayer.Character:GetDescendants()) do
  2504. if v:IsA'Hat' or v:IsA'Accessory' then
  2505. v.Parent = game:GetService'Workspace'
  2506. end
  2507. end
  2508.  
  2509. local fuck = game:GetService('Players').LocalPlayer
  2510. if game.Players.LocalPlayer == fuck then
  2511. print("succesfully creeped u! enjoy!")
  2512. end
  2513. end)
  2514.  
  2515. FeFlyForScripts.Name = "Fe Fly For Scripts"
  2516. FeFlyForScripts.Parent = FeScripts_2
  2517. FeFlyForScripts.BackgroundColor3 = Color3.new(1, 1, 1)
  2518. FeFlyForScripts.Position = UDim2.new(0, 0, 0.594871819, 0)
  2519. FeFlyForScripts.Size = UDim2.new(0, 217, 0, 50)
  2520. FeFlyForScripts.Font = Enum.Font.SourceSans
  2521. FeFlyForScripts.Text = "Fe Fly"
  2522. FeFlyForScripts.TextColor3 = Color3.new(0, 0, 0)
  2523. FeFlyForScripts.TextScaled = true
  2524. FeFlyForScripts.TextSize = 14
  2525. FeFlyForScripts.TextWrapped = true
  2526.  
  2527. FeFlyForScripts.MouseButton1Down:connect(function()
  2528. -- FE Fly (Push E)
  2529. repeat wait()
  2530. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  2531. local mouse = game.Players.LocalPlayer:GetMouse()
  2532. repeat wait() until mouse
  2533. local plr = game.Players.LocalPlayer
  2534. local torso = plr.Character.Torso
  2535. local flying = true
  2536. local deb = true
  2537. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  2538. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2539. local maxspeed = 50
  2540. local speed = 0
  2541.  
  2542. function Fly()
  2543. local bg = Instance.new("BodyGyro", torso)
  2544. bg.P = 9e4
  2545. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2546. bg.cframe = torso.CFrame
  2547. local bv = Instance.new("BodyVelocity", torso)
  2548. bv.velocity = Vector3.new(0,0.1,0)
  2549. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2550. repeat wait()
  2551. plr.Character.Humanoid.PlatformStand = true
  2552. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  2553. speed = speed+.5+(speed/maxspeed)
  2554. if speed > maxspeed then
  2555. speed = maxspeed
  2556. end
  2557. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  2558. speed = speed-1
  2559. if speed < 0 then
  2560. speed = 0
  2561. end
  2562. end
  2563. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  2564. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2565. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  2566. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  2567. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2568. else
  2569. bv.velocity = Vector3.new(0,0.1,0)
  2570. end
  2571. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  2572. until not flying
  2573. ctrl = {f = 0, b = 0, l = 0, r = 0}
  2574. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2575. speed = 0
  2576. bg:Destroy()
  2577. bv:Destroy()
  2578. plr.Character.Humanoid.PlatformStand = false
  2579. end
  2580. mouse.KeyDown:connect(function(key)
  2581. if key:lower() == "e" then
  2582. if flying then flying = false
  2583. else
  2584. flying = true
  2585. Fly()
  2586. end
  2587. elseif key:lower() == "w" then
  2588. ctrl.f = 1
  2589. elseif key:lower() == "s" then
  2590. ctrl.b = -1
  2591. elseif key:lower() == "a" then
  2592. ctrl.l = -1
  2593. elseif key:lower() == "d" then
  2594. ctrl.r = 1
  2595. end
  2596. end)
  2597. mouse.KeyUp:connect(function(key)
  2598. if key:lower() == "w" then
  2599. ctrl.f = 0
  2600. elseif key:lower() == "s" then
  2601. ctrl.b = 0
  2602. elseif key:lower() == "a" then
  2603. ctrl.l = 0
  2604. elseif key:lower() == "d" then
  2605. ctrl.r = 0
  2606. end
  2607. end)
  2608. Fly()
  2609. end)
  2610.  
  2611. AnimationGui.Name = "Animation Gui"
  2612. AnimationGui.Parent = FeScripts_2
  2613. AnimationGui.BackgroundColor3 = Color3.new(1, 1, 1)
  2614. AnimationGui.Position = UDim2.new(0.518846989, 0, 0.594871819, 0)
  2615. AnimationGui.Size = UDim2.new(0, 217, 0, 50)
  2616. AnimationGui.Font = Enum.Font.SourceSans
  2617. AnimationGui.Text = "Animation GUi"
  2618. AnimationGui.TextColor3 = Color3.new(0, 0, 0)
  2619. AnimationGui.TextScaled = true
  2620. AnimationGui.TextSize = 14
  2621. AnimationGui.TextWrapped = true
  2622.  
  2623. AnimationGui.MouseButton1Down:connect(function()
  2624. -- Energize by illremember, fe animations
  2625. -- DO NOT COPY AND CLAIM AS OWN, if you are using some of the script for your own, credit is highly appreciated!
  2626. -- Thank you, and enjoy.
  2627.  
  2628. -- Objects
  2629.  
  2630. local Energize = Instance.new("ScreenGui") -- The actual GUI
  2631. local SideFrame = Instance.new("Frame") -- Visible when GUI is closed
  2632. local OpenGUI = Instance.new("TextButton") -- Part of SideFrame
  2633. local SideFrameTitle = Instance.new("TextLabel") -- Part of SideFrame
  2634. local MainFrame = Instance.new("Frame") -- All of the stuff on the main frame
  2635. local GuiBottomFrame = Instance.new("Frame") -- Part of Active Frame
  2636. local Credits = Instance.new("TextLabel") -- Credits to illremember, hello there
  2637. local ScrollingFrame = Instance.new("ScrollingFrame") -- The scrolling frame of animations
  2638. local CheckR = Instance.new("TextLabel") -- Check if R15 or R6
  2639. local ScrollingFrameR15 = Instance.new("ScrollingFrame") -- The scrolling frame of R15 animations
  2640.  
  2641. local CrazySlash = Instance.new("TextButton")--COMPLETE
  2642. local Open = Instance.new("TextButton")--COMPLETE
  2643. local R15Spinner = Instance.new("TextButton")--COMPLETE
  2644. local ArmsOut = Instance.new("TextButton")--COMPLETE
  2645. local FloatSlash = Instance.new("TextButton")--COMPLETE
  2646. local WeirdZombie = Instance.new("TextButton")--COMPLETE
  2647. local DownSlash = Instance.new("TextButton")--COMPLETE
  2648. local Pull = Instance.new("TextButton")--COMPLETE
  2649. local CircleArm = Instance.new("TextButton")--COMPLETE
  2650. local Bend = Instance.new("TextButton")--COMPLETE
  2651. local RotateSlash = Instance.new("TextButton")--COMPLETE
  2652. local FlingArms = Instance.new("TextButton")--COMPLETE
  2653.  
  2654. local FullSwing = Instance.new("TextButton")--COMPLETE
  2655. local GlitchLevitate = Instance.new("TextButton")--COMPLETE
  2656. local MoonDance = Instance.new("TextButton")--COMPLETE
  2657. local FullPunch = Instance.new("TextButton")--COMPLETE
  2658. local Crouch = Instance.new("TextButton")--COMPLETE
  2659. local SpinDance = Instance.new("TextButton")--COMPLETE
  2660. local FloorFaint = Instance.new("TextButton")--COMPLETE
  2661. local JumpingJacks = Instance.new("TextButton")--COMPLETE
  2662. local Spinner = Instance.new("TextButton")--COMPLETE
  2663. local MegaInsane = Instance.new("TextButton")--COMPLETE
  2664. local ArmDetach = Instance.new("TextButton")--COMPLETE
  2665. local WeirdMove = Instance.new("TextButton")--COMPLETE
  2666. local Faint = Instance.new("TextButton")--COMPLETE
  2667. local CloneIllusion = Instance.new("TextButton")--COMPLETE
  2668. local Levitate = Instance.new("TextButton")--COMPLETE
  2669. local DinoWalk = Instance.new("TextButton")--COMPLETE
  2670. local FloorCrawl = Instance.new("TextButton")--COMPLETE
  2671. local SwordSlam = Instance.new("TextButton")--COMPLETE
  2672. local LoopHead = Instance.new("TextButton")--COMPLETE
  2673. local HeroJump = Instance.new("TextButton")--COMPLETE
  2674. local Insane = Instance.new("TextButton")--COMPLETE
  2675. local FloatingHead = Instance.new("TextButton")--COMPLETE
  2676. local HeadThrow = Instance.new("TextButton")--COMPLETE
  2677. local MovingDance = Instance.new("TextButton")--COMPLETE
  2678. local SuperPunch = Instance.new("TextButton")--COMPLETE
  2679. local ArmTurbine = Instance.new("TextButton")--COMPLETE
  2680. local Dab = Instance.new("TextButton")--COMPLETE
  2681. local FloatSit = Instance.new("TextButton")--COMPLETE
  2682. local SuperFaint = Instance.new("TextButton")--COMPLETE
  2683. local BarrelRoll = Instance.new("TextButton")--COMPLETE
  2684. local Scared = Instance.new("TextButton")--COMPLETE
  2685. local InsaneArms = Instance.new("TextButton")--COMPLETE
  2686. local SwordSlice = Instance.new("TextButton")--COMPLETE
  2687. local SpinDance2 = Instance.new("TextButton")--COMPLETE
  2688. local BowDown = Instance.new("TextButton")--COMPLETE
  2689. local LoopSlam = Instance.new("TextButton")--COMPLETE
  2690.  
  2691. local GuiTopFrame = Instance.new("Frame") -- Top of the main frame
  2692. local CloseGUI = Instance.new("TextButton") -- To close the GUI
  2693. local Title = Instance.new("TextLabel") -- Actual title of GUI, Energize
  2694.  
  2695. -- Properties
  2696.  
  2697. Energize.Name = "Energize"
  2698. Energize.Parent = game.Players.LocalPlayer.PlayerGui
  2699.  
  2700. SideFrame.Name = "SideFrame"
  2701. SideFrame.Parent = Energize
  2702. SideFrame.Active = true
  2703. SideFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  2704. SideFrame.Draggable = true
  2705. SideFrame.Position = UDim2.new(0, 376, 0, 125)
  2706. SideFrame.Size = UDim2.new(0, 460, 0, 32)
  2707. SideFrame.Visible = false
  2708.  
  2709. OpenGUI.Name = "OpenGUI"
  2710. OpenGUI.Parent = SideFrame
  2711. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  2712. OpenGUI.BackgroundTransparency = 1
  2713. OpenGUI.Position = UDim2.new(0, 426, 0, 0)
  2714. OpenGUI.Size = UDim2.new(0, 34, 0, 32)
  2715. OpenGUI.Font = Enum.Font.SourceSans
  2716. OpenGUI.FontSize = Enum.FontSize.Size48
  2717. OpenGUI.Text = "X"
  2718. OpenGUI.TextColor3 = Color3.new(0.333333, 0, 0)
  2719. OpenGUI.TextSize = 40
  2720. OpenGUI.TextWrapped = true
  2721.  
  2722. SideFrameTitle.Name = "SideFrameTitle"
  2723. SideFrameTitle.Parent = SideFrame
  2724. SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  2725. SideFrameTitle.BackgroundTransparency = 1
  2726. SideFrameTitle.Position = UDim2.new(0, 170, 0, 0)
  2727. SideFrameTitle.Size = UDim2.new(0, 119, 0, 31)
  2728. SideFrameTitle.Font = Enum.Font.Arial
  2729. SideFrameTitle.FontSize = Enum.FontSize.Size24
  2730. SideFrameTitle.Text = "Energize"
  2731. SideFrameTitle.TextSize = 21
  2732. SideFrameTitle.TextStrokeColor3 = Color3.new(0.27451, 0.92549, 0.905882)
  2733. SideFrameTitle.TextStrokeTransparency = 0.69999998807907
  2734.  
  2735. MainFrame.Name = "MainFrame"
  2736. MainFrame.Parent = Energize
  2737. MainFrame.Active = true
  2738. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  2739. MainFrame.BackgroundTransparency = 1
  2740. MainFrame.Draggable = true
  2741. MainFrame.Position = UDim2.new(0, 376, 0, 125)
  2742. MainFrame.Size = UDim2.new(0, 444, 0, 280)
  2743.  
  2744. GuiBottomFrame.Name = "Gui BottomFrame"
  2745. GuiBottomFrame.Parent = MainFrame
  2746. GuiBottomFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  2747. GuiBottomFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  2748. GuiBottomFrame.Position = UDim2.new(0, 0, 0, 247)
  2749. GuiBottomFrame.Size = UDim2.new(0, 460, 0, 32)
  2750.  
  2751. Credits.Name = "Credits"
  2752. Credits.Parent = GuiBottomFrame
  2753. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  2754. Credits.BackgroundTransparency = 1
  2755. Credits.Size = UDim2.new(0, 460, 0, 32)
  2756. Credits.FontSize = Enum.FontSize.Size14
  2757. Credits.Text = "By illremember FE Animations Gui"
  2758. Credits.TextColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  2759. Credits.TextSize = 14
  2760. Credits.TextStrokeColor3 = Color3.new(0.141176, 0.870588, 0.713726)
  2761. Credits.TextStrokeTransparency = 0.69999998807907
  2762. Credits.TextWrapped = true
  2763.  
  2764. ScrollingFrame.Parent = MainFrame
  2765. ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
  2766. ScrollingFrame.Position = UDim2.new(0, 0, 0, 32)
  2767. ScrollingFrame.Size = UDim2.new(0, 460, 0, 215)
  2768. ScrollingFrame.ScrollBarThickness = 13
  2769.  
  2770. FullSwing.Name = "FullSwing"
  2771. FullSwing.Parent = ScrollingFrame
  2772. FullSwing.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2773. FullSwing.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2774. FullSwing.Position = UDim2.new(0, 17, 0, 322)
  2775. FullSwing.Size = UDim2.new(0, 119, 0, 34)
  2776. FullSwing.Font = Enum.Font.Highway
  2777. FullSwing.FontSize = Enum.FontSize.Size24
  2778. FullSwing.Text = "Full Swing"
  2779. FullSwing.TextSize = 20
  2780. FullSwing.TextWrapped = true
  2781.  
  2782. GlitchLevitate.Name = "GlitchLevitate"
  2783. GlitchLevitate.Parent = ScrollingFrame
  2784. GlitchLevitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2785. GlitchLevitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2786. GlitchLevitate.Position = UDim2.new(0, 319, 0, 322)
  2787. GlitchLevitate.Size = UDim2.new(0, 119, 0, 34)
  2788. GlitchLevitate.Font = Enum.Font.Highway
  2789. GlitchLevitate.FontSize = Enum.FontSize.Size24
  2790. GlitchLevitate.Text = "Glitch Levitate"
  2791. GlitchLevitate.TextSize = 20
  2792. GlitchLevitate.TextWrapped = true
  2793.  
  2794. MoonDance.Name = "MoonDance"
  2795. MoonDance.Parent = ScrollingFrame
  2796. MoonDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2797. MoonDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2798. MoonDance.Position = UDim2.new(0, 319, 0, 280)
  2799. MoonDance.Size = UDim2.new(0, 119, 0, 34)
  2800. MoonDance.Font = Enum.Font.Highway
  2801. MoonDance.FontSize = Enum.FontSize.Size24
  2802. MoonDance.Text = "Moon Dance"
  2803. MoonDance.TextSize = 20
  2804. MoonDance.TextWrapped = true
  2805.  
  2806. FullPunch.Name = "FullPunch"
  2807. FullPunch.Parent = ScrollingFrame
  2808. FullPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2809. FullPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2810. FullPunch.Position = UDim2.new(0, 17, 0, 280)
  2811. FullPunch.Size = UDim2.new(0, 119, 0, 34)
  2812. FullPunch.Font = Enum.Font.Highway
  2813. FullPunch.FontSize = Enum.FontSize.Size24
  2814. FullPunch.Text = "Full Punch"
  2815. FullPunch.TextSize = 20
  2816. FullPunch.TextWrapped = true
  2817.  
  2818. Crouch.Name = "Crouch"
  2819. Crouch.Parent = ScrollingFrame
  2820. Crouch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2821. Crouch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2822. Crouch.Position = UDim2.new(0, 168, 0, 280)
  2823. Crouch.Size = UDim2.new(0, 119, 0, 34)
  2824. Crouch.Font = Enum.Font.Highway
  2825. Crouch.FontSize = Enum.FontSize.Size24
  2826. Crouch.Text = "Crouch"
  2827. Crouch.TextSize = 20
  2828. Crouch.TextWrapped = true
  2829.  
  2830. SpinDance.Name = "SpinDance"
  2831. SpinDance.Parent = ScrollingFrame
  2832. SpinDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2833. SpinDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2834. SpinDance.Position = UDim2.new(0, 168, 0, 236)
  2835. SpinDance.Size = UDim2.new(0, 119, 0, 34)
  2836. SpinDance.Font = Enum.Font.Highway
  2837. SpinDance.FontSize = Enum.FontSize.Size24
  2838. SpinDance.Text = "Spin Dance"
  2839. SpinDance.TextSize = 20
  2840. SpinDance.TextWrapped = true
  2841.  
  2842. FloorFaint.Name = "FloorFaint"
  2843. FloorFaint.Parent = ScrollingFrame
  2844. FloorFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2845. FloorFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2846. FloorFaint.Position = UDim2.new(0, 17, 0, 236)
  2847. FloorFaint.Size = UDim2.new(0, 119, 0, 34)
  2848. FloorFaint.Font = Enum.Font.Highway
  2849. FloorFaint.FontSize = Enum.FontSize.Size24
  2850. FloorFaint.Text = "Floor Faint"
  2851. FloorFaint.TextSize = 20
  2852. FloorFaint.TextWrapped = true
  2853.  
  2854. JumpingJacks.Name = "JumpingJacks"
  2855. JumpingJacks.Parent = ScrollingFrame
  2856. JumpingJacks.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2857. JumpingJacks.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2858. JumpingJacks.Position = UDim2.new(0, 319, 0, 236)
  2859. JumpingJacks.Size = UDim2.new(0, 119, 0, 34)
  2860. JumpingJacks.Font = Enum.Font.Highway
  2861. JumpingJacks.FontSize = Enum.FontSize.Size24
  2862. JumpingJacks.Text = "Jumping Jacks"
  2863. JumpingJacks.TextSize = 20
  2864. JumpingJacks.TextWrapped = true
  2865.  
  2866. Spinner.Name = "Spinner"
  2867. Spinner.Parent = ScrollingFrame
  2868. Spinner.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2869. Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2870. Spinner.Position = UDim2.new(0, 17, 0, 192)
  2871. Spinner.Size = UDim2.new(0, 119, 0, 34)
  2872. Spinner.Font = Enum.Font.Highway
  2873. Spinner.FontSize = Enum.FontSize.Size24
  2874. Spinner.Text = "Spinner"
  2875. Spinner.TextSize = 20
  2876. Spinner.TextWrapped = true
  2877.  
  2878. MegaInsane.Name = "MegaInsane"
  2879. MegaInsane.Parent = ScrollingFrame
  2880. MegaInsane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2881. MegaInsane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2882. MegaInsane.Position = UDim2.new(0, 168, 0, 192)
  2883. MegaInsane.Size = UDim2.new(0, 119, 0, 34)
  2884. MegaInsane.Font = Enum.Font.Highway
  2885. MegaInsane.FontSize = Enum.FontSize.Size24
  2886. MegaInsane.Text = "Mega Insane"
  2887. MegaInsane.TextSize = 20
  2888. MegaInsane.TextWrapped = true
  2889.  
  2890. ArmDetach.Name = "ArmDetach"
  2891. ArmDetach.Parent = ScrollingFrame
  2892. ArmDetach.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2893. ArmDetach.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2894. ArmDetach.Position = UDim2.new(0, 319, 0, 192)
  2895. ArmDetach.Size = UDim2.new(0, 119, 0, 34)
  2896. ArmDetach.Font = Enum.Font.Highway
  2897. ArmDetach.FontSize = Enum.FontSize.Size24
  2898. ArmDetach.Text = "Arm Detach"
  2899. ArmDetach.TextSize = 20
  2900. ArmDetach.TextWrapped = true
  2901.  
  2902. WeirdMove.Name = "WeirdMove"
  2903. WeirdMove.Parent = ScrollingFrame
  2904. WeirdMove.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2905. WeirdMove.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2906. WeirdMove.Position = UDim2.new(0, 168, 0, 148)
  2907. WeirdMove.Size = UDim2.new(0, 119, 0, 34)
  2908. WeirdMove.Font = Enum.Font.Highway
  2909. WeirdMove.FontSize = Enum.FontSize.Size24
  2910. WeirdMove.Text = "Weird Move"
  2911. WeirdMove.TextSize = 20
  2912. WeirdMove.TextWrapped = true
  2913.  
  2914. Faint.Name = "Faint"
  2915. Faint.Parent = ScrollingFrame
  2916. Faint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2917. Faint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2918. Faint.Position = UDim2.new(0, 17, 0, 148)
  2919. Faint.Size = UDim2.new(0, 119, 0, 34)
  2920. Faint.Font = Enum.Font.Highway
  2921. Faint.FontSize = Enum.FontSize.Size24
  2922. Faint.Text = "Faint"
  2923. Faint.TextSize = 20
  2924. Faint.TextWrapped = true
  2925.  
  2926. CloneIllusion.Name = "CloneIllusion"
  2927. CloneIllusion.Parent = ScrollingFrame
  2928. CloneIllusion.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2929. CloneIllusion.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2930. CloneIllusion.Position = UDim2.new(0, 319, 0, 148)
  2931. CloneIllusion.Size = UDim2.new(0, 119, 0, 34)
  2932. CloneIllusion.Font = Enum.Font.Highway
  2933. CloneIllusion.FontSize = Enum.FontSize.Size24
  2934. CloneIllusion.Text = "Clone Illusion"
  2935. CloneIllusion.TextSize = 20
  2936. CloneIllusion.TextWrapped = true
  2937.  
  2938. Levitate.Name = "Levitate"
  2939. Levitate.Parent = ScrollingFrame
  2940. Levitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2941. Levitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2942. Levitate.Position = UDim2.new(0, 17, 0, 104)
  2943. Levitate.Size = UDim2.new(0, 119, 0, 34)
  2944. Levitate.Font = Enum.Font.Highway
  2945. Levitate.FontSize = Enum.FontSize.Size24
  2946. Levitate.Text = "Levitate"
  2947. Levitate.TextSize = 20
  2948. Levitate.TextWrapped = true
  2949.  
  2950. DinoWalk.Name = "DinoWalk"
  2951. DinoWalk.Parent = ScrollingFrame
  2952. DinoWalk.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2953. DinoWalk.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2954. DinoWalk.Position = UDim2.new(0, 168, 0, 104)
  2955. DinoWalk.Size = UDim2.new(0, 119, 0, 34)
  2956. DinoWalk.Font = Enum.Font.Highway
  2957. DinoWalk.FontSize = Enum.FontSize.Size24
  2958. DinoWalk.Text = "Dino Walk"
  2959. DinoWalk.TextSize = 20
  2960. DinoWalk.TextWrapped = true
  2961.  
  2962. FloorCrawl.Name = "FloorCrawl"
  2963. FloorCrawl.Parent = ScrollingFrame
  2964. FloorCrawl.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2965. FloorCrawl.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2966. FloorCrawl.Position = UDim2.new(0, 319, 0, 104)
  2967. FloorCrawl.Size = UDim2.new(0, 119, 0, 34)
  2968. FloorCrawl.Font = Enum.Font.Highway
  2969. FloorCrawl.FontSize = Enum.FontSize.Size24
  2970. FloorCrawl.Text = "Floor Crawl"
  2971. FloorCrawl.TextSize = 20
  2972. FloorCrawl.TextWrapped = true
  2973.  
  2974. SwordSlam.Name = "SwordSlam"
  2975. SwordSlam.Parent = ScrollingFrame
  2976. SwordSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2977. SwordSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2978. SwordSlam.Position = UDim2.new(0, 319, 0, 60)
  2979. SwordSlam.Size = UDim2.new(0, 119, 0, 34)
  2980. SwordSlam.Font = Enum.Font.Highway
  2981. SwordSlam.FontSize = Enum.FontSize.Size24
  2982. SwordSlam.Text = "Sword Slam"
  2983. SwordSlam.TextSize = 20
  2984. SwordSlam.TextWrapped = true
  2985.  
  2986. LoopHead.Name = "LoopHead"
  2987. LoopHead.Parent = ScrollingFrame
  2988. LoopHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  2989. LoopHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  2990. LoopHead.Position = UDim2.new(0, 168, 0, 60)
  2991. LoopHead.Size = UDim2.new(0, 119, 0, 34)
  2992. LoopHead.Font = Enum.Font.Highway
  2993. LoopHead.FontSize = Enum.FontSize.Size24
  2994. LoopHead.Text = "Loop Head"
  2995. LoopHead.TextSize = 20
  2996. LoopHead.TextWrapped = true
  2997.  
  2998. HeroJump.Name = "HeroJump"
  2999. HeroJump.Parent = ScrollingFrame
  3000. HeroJump.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3001. HeroJump.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3002. HeroJump.Position = UDim2.new(0, 17, 0, 60)
  3003. HeroJump.Size = UDim2.new(0, 119, 0, 34)
  3004. HeroJump.Font = Enum.Font.Highway
  3005. HeroJump.FontSize = Enum.FontSize.Size24
  3006. HeroJump.Text = "Hero Jump"
  3007. HeroJump.TextSize = 20
  3008. HeroJump.TextWrapped = true
  3009.  
  3010. Insane.Name = "Insane"
  3011. Insane.Parent = ScrollingFrame
  3012. Insane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3013. Insane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3014. Insane.Position = UDim2.new(0, 319, 0, 16)
  3015. Insane.Size = UDim2.new(0, 119, 0, 34)
  3016. Insane.Font = Enum.Font.Highway
  3017. Insane.FontSize = Enum.FontSize.Size24
  3018. Insane.Text = "Insane"
  3019. Insane.TextSize = 20
  3020. Insane.TextWrapped = true
  3021.  
  3022. FloatingHead.Name = "FloatingHead"
  3023. FloatingHead.Parent = ScrollingFrame
  3024. FloatingHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3025. FloatingHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3026. FloatingHead.Position = UDim2.new(0, 168, 0, 16)
  3027. FloatingHead.Size = UDim2.new(0, 119, 0, 34)
  3028. FloatingHead.Font = Enum.Font.Highway
  3029. FloatingHead.FontSize = Enum.FontSize.Size24
  3030. FloatingHead.Text = "Floating Head"
  3031. FloatingHead.TextSize = 20
  3032. FloatingHead.TextWrapped = true
  3033.  
  3034. HeadThrow.Name = "HeadThrow"
  3035. HeadThrow.Parent = ScrollingFrame
  3036. HeadThrow.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3037. HeadThrow.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3038. HeadThrow.Position = UDim2.new(0, 17, 0, 16)
  3039. HeadThrow.Size = UDim2.new(0, 119, 0, 34)
  3040. HeadThrow.Font = Enum.Font.Highway
  3041. HeadThrow.FontSize = Enum.FontSize.Size24
  3042. HeadThrow.Text = "Head Throw"
  3043. HeadThrow.TextSize = 20
  3044. HeadThrow.TextWrapped = true
  3045.  
  3046. MovingDance.Name = "MovingDance"
  3047. MovingDance.Parent = ScrollingFrame
  3048. MovingDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3049. MovingDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3050. MovingDance.Position = UDim2.new(0, 168, 0, 324)
  3051. MovingDance.Size = UDim2.new(0, 119, 0, 34)
  3052. MovingDance.Font = Enum.Font.Highway
  3053. MovingDance.FontSize = Enum.FontSize.Size24
  3054. MovingDance.Text = "Moving Dance"
  3055. MovingDance.TextSize = 20
  3056. MovingDance.TextWrapped = true
  3057.  
  3058. SuperPunch.Name = "SuperPunch"
  3059. SuperPunch.Parent = ScrollingFrame
  3060. SuperPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3061. SuperPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3062. SuperPunch.Position = UDim2.new(0, 168, 0, 366)
  3063. SuperPunch.Size = UDim2.new(0, 119, 0, 34)
  3064. SuperPunch.Font = Enum.Font.Highway
  3065. SuperPunch.FontSize = Enum.FontSize.Size24
  3066. SuperPunch.Text = "Super Punch"
  3067. SuperPunch.TextSize = 20
  3068. SuperPunch.TextWrapped = true
  3069.  
  3070. ArmTurbine.Name = "ArmTurbine"
  3071. ArmTurbine.Parent = ScrollingFrame
  3072. ArmTurbine.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3073. ArmTurbine.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3074. ArmTurbine.Position = UDim2.new(0, 319, 0, 366)
  3075. ArmTurbine.Size = UDim2.new(0, 119, 0, 34)
  3076. ArmTurbine.Font = Enum.Font.Highway
  3077. ArmTurbine.FontSize = Enum.FontSize.Size24
  3078. ArmTurbine.Text = "Arm Turbine"
  3079. ArmTurbine.TextSize = 20
  3080. ArmTurbine.TextWrapped = true
  3081.  
  3082. Dab.Name = "Dab"
  3083. Dab.Parent = ScrollingFrame
  3084. Dab.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3085. Dab.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3086. Dab.Position = UDim2.new(0, 17, 0, 366)
  3087. Dab.Size = UDim2.new(0, 119, 0, 34)
  3088. Dab.Font = Enum.Font.Highway
  3089. Dab.FontSize = Enum.FontSize.Size24
  3090. Dab.Text = "Dab"
  3091. Dab.TextSize = 20
  3092. Dab.TextWrapped = true
  3093.  
  3094. FloatSit.Name = "FloatSit"
  3095. FloatSit.Parent = ScrollingFrame
  3096. FloatSit.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3097. FloatSit.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3098. FloatSit.Position = UDim2.new(0, 168, 0, 410)
  3099. FloatSit.Size = UDim2.new(0, 119, 0, 34)
  3100. FloatSit.Font = Enum.Font.Highway
  3101. FloatSit.FontSize = Enum.FontSize.Size24
  3102. FloatSit.Text = "Float Sit"
  3103. FloatSit.TextSize = 20
  3104. FloatSit.TextWrapped = true
  3105.  
  3106. SuperFaint.Name = "SuperFaint"
  3107. SuperFaint.Parent = ScrollingFrame
  3108. SuperFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3109. SuperFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3110. SuperFaint.Position = UDim2.new(0, 17, 0, 498)
  3111. SuperFaint.Size = UDim2.new(0, 119, 0, 34)
  3112. SuperFaint.Font = Enum.Font.Highway
  3113. SuperFaint.FontSize = Enum.FontSize.Size24
  3114. SuperFaint.Text = "Super Faint"
  3115. SuperFaint.TextSize = 20
  3116. SuperFaint.TextWrapped = true
  3117.  
  3118. BarrelRoll.Name = "BarrelRoll"
  3119. BarrelRoll.Parent = ScrollingFrame
  3120. BarrelRoll.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3121. BarrelRoll.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3122. BarrelRoll.Position = UDim2.new(0, 319, 0, 410)
  3123. BarrelRoll.Size = UDim2.new(0, 119, 0, 34)
  3124. BarrelRoll.Font = Enum.Font.Highway
  3125. BarrelRoll.FontSize = Enum.FontSize.Size24
  3126. BarrelRoll.Text = "Barrel Roll"
  3127. BarrelRoll.TextSize = 20
  3128. BarrelRoll.TextWrapped = true
  3129.  
  3130. Scared.Name = "Scared"
  3131. Scared.Parent = ScrollingFrame
  3132. Scared.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3133. Scared.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3134. Scared.Position = UDim2.new(0, 319, 0, 454)
  3135. Scared.Size = UDim2.new(0, 119, 0, 34)
  3136. Scared.Font = Enum.Font.Highway
  3137. Scared.FontSize = Enum.FontSize.Size24
  3138. Scared.Text = "Scared"
  3139. Scared.TextSize = 20
  3140. Scared.TextWrapped = true
  3141.  
  3142. InsaneArms.Name = "InsaneArms"
  3143. InsaneArms.Parent = ScrollingFrame
  3144. InsaneArms.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3145. InsaneArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3146. InsaneArms.Position = UDim2.new(0, 17, 0, 454)
  3147. InsaneArms.Size = UDim2.new(0, 119, 0, 34)
  3148. InsaneArms.Font = Enum.Font.Highway
  3149. InsaneArms.FontSize = Enum.FontSize.Size24
  3150. InsaneArms.Text = "Insane Arms"
  3151. InsaneArms.TextSize = 20
  3152. InsaneArms.TextWrapped = true
  3153.  
  3154. SwordSlice.Name = "SwordSlice"
  3155. SwordSlice.Parent = ScrollingFrame
  3156. SwordSlice.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3157. SwordSlice.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3158. SwordSlice.Position = UDim2.new(0, 168, 0, 454)
  3159. SwordSlice.Size = UDim2.new(0, 119, 0, 34)
  3160. SwordSlice.Font = Enum.Font.Highway
  3161. SwordSlice.FontSize = Enum.FontSize.Size24
  3162. SwordSlice.Text = "Sword Slice"
  3163. SwordSlice.TextSize = 20
  3164. SwordSlice.TextWrapped = true
  3165.  
  3166. SpinDance2.Name = "SpinDance2"
  3167. SpinDance2.Parent = ScrollingFrame
  3168. SpinDance2.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3169. SpinDance2.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3170. SpinDance2.Position = UDim2.new(0, 168, 0, 498)
  3171. SpinDance2.Size = UDim2.new(0, 119, 0, 34)
  3172. SpinDance2.Font = Enum.Font.Highway
  3173. SpinDance2.FontSize = Enum.FontSize.Size24
  3174. SpinDance2.Text = "Spin Dance 2"
  3175. SpinDance2.TextSize = 20
  3176. SpinDance2.TextWrapped = true
  3177.  
  3178. BowDown.Name = "BowDown"
  3179. BowDown.Parent = ScrollingFrame
  3180. BowDown.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3181. BowDown.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3182. BowDown.Position = UDim2.new(0, 319, 0, 498)
  3183. BowDown.Size = UDim2.new(0, 119, 0, 34)
  3184. BowDown.Font = Enum.Font.Highway
  3185. BowDown.FontSize = Enum.FontSize.Size24
  3186. BowDown.Text = "Bow Down"
  3187. BowDown.TextSize = 20
  3188. BowDown.TextWrapped = true
  3189.  
  3190. LoopSlam.Name = "LoopSlam"
  3191. LoopSlam.Parent = ScrollingFrame
  3192. LoopSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
  3193. LoopSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3194. LoopSlam.Position = UDim2.new(0, 17, 0, 410)
  3195. LoopSlam.Size = UDim2.new(0, 119, 0, 34)
  3196. LoopSlam.Font = Enum.Font.Highway
  3197. LoopSlam.FontSize = Enum.FontSize.Size24
  3198. LoopSlam.Text = "Loop Slam"
  3199. LoopSlam.TextSize = 20
  3200. LoopSlam.TextWrapped = true
  3201.  
  3202. GuiTopFrame.Name = "Gui TopFrame"
  3203. GuiTopFrame.Parent = MainFrame
  3204. GuiTopFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
  3205. GuiTopFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  3206. GuiTopFrame.Size = UDim2.new(0, 460, 0, 32)
  3207.  
  3208. CloseGUI.Name = "CloseGUI"
  3209. CloseGUI.Parent = GuiTopFrame
  3210. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  3211. CloseGUI.BackgroundTransparency = 1
  3212. CloseGUI.Position = UDim2.new(0, 426, 0, 0)
  3213. CloseGUI.Size = UDim2.new(0, 34, 0, 32)
  3214. CloseGUI.Font = Enum.Font.SourceSans
  3215. CloseGUI.FontSize = Enum.FontSize.Size48
  3216. CloseGUI.Text = "X"
  3217. CloseGUI.TextColor3 = Color3.new(0.333333, 0, 0)
  3218. CloseGUI.TextSize = 40
  3219. CloseGUI.TextWrapped = true
  3220.  
  3221. Title.Name = "Title"
  3222. Title.Parent = GuiTopFrame
  3223. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  3224. Title.BackgroundTransparency = 1
  3225. Title.Size = UDim2.new(0, 460, 0, 32)
  3226. Title.FontSize = Enum.FontSize.Size14
  3227. Title.Text = "Energize"
  3228. Title.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  3229. Title.TextSize = 14
  3230. Title.TextStrokeColor3 = Color3.new(0.384314, 0.917647, 1)
  3231. Title.TextStrokeTransparency = 0.69999998807907
  3232. Title.TextWrapped = true
  3233.  
  3234. CheckR.Name = "CheckR"
  3235. CheckR.Parent = GuiTopFrame
  3236. CheckR.BackgroundColor3 = Color3.new(1, 1, 1)
  3237. CheckR.BackgroundTransparency = 1
  3238. CheckR.Size = UDim2.new(0, 171, 0, 32)
  3239. CheckR.Font = Enum.Font.SourceSansBold
  3240. CheckR.FontSize = Enum.FontSize.Size14
  3241. CheckR.Text = "Text"
  3242. CheckR.TextScaled = true
  3243. CheckR.TextSize = 14
  3244. CheckR.TextWrapped = true
  3245.  
  3246. ScrollingFrameR15.Name = "ScrollingFrameR15"
  3247. ScrollingFrameR15.Parent = MainFrame
  3248. ScrollingFrameR15.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
  3249. ScrollingFrameR15.Position = UDim2.new(0, 0, 0, 32)
  3250. ScrollingFrameR15.Size = UDim2.new(0, 460, 0, 215)
  3251. ScrollingFrameR15.Visible = false
  3252. ScrollingFrameR15.ScrollBarThickness = 13
  3253.  
  3254. CrazySlash.Name = "CrazySlash"
  3255. CrazySlash.Parent = ScrollingFrameR15
  3256. CrazySlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3257. CrazySlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3258. CrazySlash.Position = UDim2.new(0, 17, 0, 16)
  3259. CrazySlash.Size = UDim2.new(0, 119, 0, 34)
  3260. CrazySlash.Font = Enum.Font.Highway
  3261. CrazySlash.FontSize = Enum.FontSize.Size24
  3262. CrazySlash.Text = "CrazySlash"
  3263. CrazySlash.TextSize = 20
  3264. CrazySlash.TextWrapped = true
  3265.  
  3266. Open.Name = "Open"
  3267. Open.Parent = ScrollingFrameR15
  3268. Open.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3269. Open.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3270. Open.Position = UDim2.new(0, 168, 0, 16)
  3271. Open.Size = UDim2.new(0, 119, 0, 34)
  3272. Open.Font = Enum.Font.Highway
  3273. Open.FontSize = Enum.FontSize.Size24
  3274. Open.Text = "Open"
  3275. Open.TextSize = 20
  3276. Open.TextWrapped = true
  3277.  
  3278. R15Spinner.Name = "R15Spinner"
  3279. R15Spinner.Parent = ScrollingFrameR15
  3280. R15Spinner.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3281. R15Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3282. R15Spinner.Position = UDim2.new(0, 17, 0, 60)
  3283. R15Spinner.Size = UDim2.new(0, 119, 0, 34)
  3284. R15Spinner.Font = Enum.Font.Highway
  3285. R15Spinner.FontSize = Enum.FontSize.Size24
  3286. R15Spinner.Text = "Spinner"
  3287. R15Spinner.TextSize = 20
  3288. R15Spinner.TextWrapped = true
  3289.  
  3290. ArmsOut.Name = "ArmsOut"
  3291. ArmsOut.Parent = ScrollingFrameR15
  3292. ArmsOut.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3293. ArmsOut.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3294. ArmsOut.Position = UDim2.new(0, 319, 0, 16)
  3295. ArmsOut.Size = UDim2.new(0, 119, 0, 34)
  3296. ArmsOut.Font = Enum.Font.Highway
  3297. ArmsOut.FontSize = Enum.FontSize.Size24
  3298. ArmsOut.Text = "ArmsOut"
  3299. ArmsOut.TextSize = 20
  3300. ArmsOut.TextWrapped = true
  3301.  
  3302. FloatSlash.Name = "FloatSlash"
  3303. FloatSlash.Parent = ScrollingFrameR15
  3304. FloatSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3305. FloatSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3306. FloatSlash.Position = UDim2.new(0, 168, 0, 148)
  3307. FloatSlash.Size = UDim2.new(0, 119, 0, 34)
  3308. FloatSlash.Font = Enum.Font.Highway
  3309. FloatSlash.FontSize = Enum.FontSize.Size24
  3310. FloatSlash.Text = "FloatSlash"
  3311. FloatSlash.TextSize = 20
  3312. FloatSlash.TextWrapped = true
  3313.  
  3314. WeirdZombie.Name = "WeirdZombie"
  3315. WeirdZombie.Parent = ScrollingFrameR15
  3316. WeirdZombie.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3317. WeirdZombie.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3318. WeirdZombie.Position = UDim2.new(0, 17, 0, 148)
  3319. WeirdZombie.Size = UDim2.new(0, 119, 0, 34)
  3320. WeirdZombie.Font = Enum.Font.Highway
  3321. WeirdZombie.FontSize = Enum.FontSize.Size24
  3322. WeirdZombie.Text = "WeirdZombie"
  3323. WeirdZombie.TextSize = 20
  3324. WeirdZombie.TextWrapped = true
  3325.  
  3326. DownSlash.Name = "DownSlash"
  3327. DownSlash.Parent = ScrollingFrameR15
  3328. DownSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3329. DownSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3330. DownSlash.Position = UDim2.new(0, 319, 0, 148)
  3331. DownSlash.Size = UDim2.new(0, 119, 0, 34)
  3332. DownSlash.Font = Enum.Font.Highway
  3333. DownSlash.FontSize = Enum.FontSize.Size24
  3334. DownSlash.Text = "DownSlash"
  3335. DownSlash.TextSize = 20
  3336. DownSlash.TextWrapped = true
  3337.  
  3338. Pull.Name = "Pull"
  3339. Pull.Parent = ScrollingFrameR15
  3340. Pull.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3341. Pull.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3342. Pull.Position = UDim2.new(0, 17, 0, 104)
  3343. Pull.Size = UDim2.new(0, 119, 0, 34)
  3344. Pull.Font = Enum.Font.Highway
  3345. Pull.FontSize = Enum.FontSize.Size24
  3346. Pull.Text = "Pull"
  3347. Pull.TextSize = 20
  3348. Pull.TextWrapped = true
  3349.  
  3350. CircleArm.Name = "CircleArm"
  3351. CircleArm.Parent = ScrollingFrameR15
  3352. CircleArm.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3353. CircleArm.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3354. CircleArm.Position = UDim2.new(0, 168, 0, 104)
  3355. CircleArm.Size = UDim2.new(0, 119, 0, 34)
  3356. CircleArm.Font = Enum.Font.Highway
  3357. CircleArm.FontSize = Enum.FontSize.Size24
  3358. CircleArm.Text = "CircleArm"
  3359. CircleArm.TextSize = 20
  3360. CircleArm.TextWrapped = true
  3361.  
  3362. Bend.Name = "Bend"
  3363. Bend.Parent = ScrollingFrameR15
  3364. Bend.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3365. Bend.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3366. Bend.Position = UDim2.new(0, 319, 0, 104)
  3367. Bend.Size = UDim2.new(0, 119, 0, 34)
  3368. Bend.Font = Enum.Font.Highway
  3369. Bend.FontSize = Enum.FontSize.Size24
  3370. Bend.Text = "Bend"
  3371. Bend.TextSize = 20
  3372. Bend.TextWrapped = true
  3373.  
  3374. RotateSlash.Name = "RotateSlash"
  3375. RotateSlash.Parent = ScrollingFrameR15
  3376. RotateSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3377. RotateSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3378. RotateSlash.Position = UDim2.new(0, 319, 0, 60)
  3379. RotateSlash.Size = UDim2.new(0, 119, 0, 34)
  3380. RotateSlash.Font = Enum.Font.Highway
  3381. RotateSlash.FontSize = Enum.FontSize.Size24
  3382. RotateSlash.Text = "RotateSlash"
  3383. RotateSlash.TextSize = 20
  3384. RotateSlash.TextWrapped = true
  3385.  
  3386. FlingArms.Name = "FlingArms"
  3387. FlingArms.Parent = ScrollingFrameR15
  3388. FlingArms.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
  3389. FlingArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  3390. FlingArms.Position = UDim2.new(0, 168, 0, 60)
  3391. FlingArms.Size = UDim2.new(0, 119, 0, 34)
  3392. FlingArms.Font = Enum.Font.Highway
  3393. FlingArms.FontSize = Enum.FontSize.Size24
  3394. FlingArms.Text = "FlingArms"
  3395. FlingArms.TextSize = 20
  3396. FlingArms.TextWrapped = true
  3397.  
  3398. -- Buttons
  3399. col = Color3.new(0.886275, 0.776471, 0.368627)
  3400. loc = Color3.new(1, 0.906471, 0.568627)
  3401. rcol = Color3.new(0.682353, 0.701961, 0.792157)
  3402. rloc = Color3.new(0.882353, 0.901961, 0.992157)
  3403.  
  3404. CloseGUI.MouseButton1Click:connect(function()
  3405. MainFrame.Visible = false
  3406. SideFrame.Visible = true
  3407. SideFrame.Position = MainFrame.Position
  3408. end)
  3409.  
  3410. OpenGUI.MouseButton1Click:connect(function()
  3411. MainFrame.Visible = true
  3412. SideFrame.Visible = false
  3413. MainFrame.Position = SideFrame.Position
  3414. end)
  3415.  
  3416. if (game:GetService"Players".LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15) then
  3417. ScrollingFrame.Visible = false
  3418. ScrollingFrameR15.Visible = true
  3419. CheckR.Text = "Showing R15 Animations"
  3420. else
  3421. ScrollingFrame.Visible = true
  3422. ScrollingFrameR15.Visible = false
  3423. CheckR.Text = "Showing R6 Animations"
  3424. end
  3425.  
  3426. local Anim = Instance.new("Animation")
  3427. Anim.AnimationId = "rbxassetid://35154961"
  3428. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3429. local HeadThrowACTIVE = false
  3430. HeadThrow.MouseButton1Click:connect(function()
  3431. HeadThrowACTIVE = not HeadThrowACTIVE
  3432. if HeadThrowACTIVE then
  3433. HeadThrow.BackgroundColor3 = loc
  3434. while wait() do
  3435. if track.IsPlaying == false then
  3436. if HeadThrowACTIVE then
  3437. track:Play(.1, 1, 1)
  3438. end
  3439. end
  3440. end
  3441. else
  3442. track:Stop()
  3443. HeadThrow.BackgroundColor3 = col
  3444. end
  3445. end)
  3446.  
  3447. local Anim = Instance.new("Animation")
  3448. Anim.AnimationId = "rbxassetid://121572214"
  3449. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3450. local FloatingHeadACTIVE = false
  3451. FloatingHead.MouseButton1Click:connect(function()
  3452. FloatingHeadACTIVE = not FloatingHeadACTIVE
  3453. if FloatingHeadACTIVE then
  3454. track:Play(.1, 1, 1)
  3455. FloatingHead.BackgroundColor3 = loc
  3456. else
  3457. track:Stop()
  3458. FloatingHead.BackgroundColor3 = col
  3459. end
  3460. end)
  3461.  
  3462. local Anim = Instance.new("Animation")
  3463. Anim.AnimationId = "rbxassetid://182724289"
  3464. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3465. local CrouchACTIVE = false
  3466. Crouch.MouseButton1Click:connect(function()
  3467. CrouchACTIVE = not CrouchACTIVE
  3468. if CrouchACTIVE then
  3469. track:Play(.1, 1, 1)
  3470. Crouch.BackgroundColor3 = loc
  3471. else
  3472. track:Stop()
  3473. Crouch.BackgroundColor3 = col
  3474. end
  3475. end)
  3476.  
  3477. local Anim = Instance.new("Animation")
  3478. Anim.AnimationId = "rbxassetid://282574440"
  3479. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3480. local FloorCrawlACTIVE = false
  3481. FloorCrawl.MouseButton1Click:connect(function()
  3482. FloorCrawlACTIVE = not FloorCrawlACTIVE
  3483. if FloorCrawlACTIVE then
  3484. track:Play(.1, 1, 1)
  3485. FloorCrawl.BackgroundColor3 = loc
  3486. else
  3487. track:Stop()
  3488. FloorCrawl.BackgroundColor3 = col
  3489. end
  3490. end)
  3491.  
  3492. local Anim = Instance.new("Animation")
  3493. Anim.AnimationId = "rbxassetid://204328711"
  3494. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3495. local DinoWalkACTIVE = false
  3496. DinoWalk.MouseButton1Click:connect(function()
  3497. DinoWalkACTIVE = not DinoWalkACTIVE
  3498. if DinoWalkACTIVE then
  3499. track:Play(.1, 1, 1)
  3500. DinoWalk.BackgroundColor3 = loc
  3501. else
  3502. track:Stop()
  3503. DinoWalk.BackgroundColor3 = col
  3504. end
  3505. end)
  3506.  
  3507. local Anim = Instance.new("Animation")
  3508. Anim.AnimationId = "rbxassetid://429681631"
  3509. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3510. local JumpingJacksACTIVE = false
  3511. JumpingJacks.MouseButton1Click:connect(function()
  3512. JumpingJacksACTIVE = not JumpingJacksACTIVE
  3513. if JumpingJacksACTIVE then
  3514. track:Play(.1, 1, 1)
  3515. JumpingJacks.BackgroundColor3 = loc
  3516. else
  3517. track:Stop()
  3518. JumpingJacks.BackgroundColor3 = col
  3519. end
  3520. end)
  3521.  
  3522. local Anim = Instance.new("Animation")
  3523. Anim.AnimationId = "rbxassetid://35154961"
  3524. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3525. local LoopHeadACTIVE = false
  3526. LoopHead.MouseButton1Click:connect(function()
  3527. LoopHeadACTIVE = not LoopHeadACTIVE
  3528. if LoopHeadACTIVE then
  3529. LoopHead.BackgroundColor3 = loc
  3530. while wait() do
  3531. if track.IsPlaying == false then
  3532. if LoopHeadACTIVE then
  3533. track:Play(.5, 1, 1e6)
  3534. end
  3535. end
  3536. end
  3537. else
  3538. track:Stop()
  3539. LoopHead.BackgroundColor3 = col
  3540. end
  3541. end)
  3542.  
  3543. local Anim = Instance.new("Animation")
  3544. Anim.AnimationId = "rbxassetid://184574340"
  3545. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3546. local HeroJumpACTIVE = false
  3547. HeroJump.MouseButton1Click:connect(function()
  3548. HeroJumpACTIVE = not HeroJumpACTIVE
  3549. if HeroJumpACTIVE then
  3550. HeroJump.BackgroundColor3 = loc
  3551. while wait() do
  3552. if track.IsPlaying == false then
  3553. if HeroJumpACTIVE then
  3554. track:Play(.1, 1, 1)
  3555. end
  3556. end
  3557. end
  3558. else
  3559. track:Stop()
  3560. HeroJump.BackgroundColor3 = col
  3561. end
  3562. end)
  3563.  
  3564. local Anim = Instance.new("Animation")
  3565. Anim.AnimationId = "rbxassetid://181526230"
  3566. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3567. local FaintACTIVE = false
  3568. Faint.MouseButton1Click:connect(function()
  3569. FaintACTIVE = not FaintACTIVE
  3570. if FaintACTIVE then
  3571. track:Play(.1, 1, 1)
  3572. Faint.BackgroundColor3 = loc
  3573. else
  3574. track:Stop()
  3575. Faint.BackgroundColor3 = col
  3576. end
  3577. end)
  3578.  
  3579. local Anim = Instance.new("Animation")
  3580. Anim.AnimationId = "rbxassetid://181525546"
  3581. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3582. local FloorFaintACTIVE = false
  3583. FloorFaint.MouseButton1Click:connect(function()
  3584. FloorFaintACTIVE = not FloorFaintACTIVE
  3585. if FloorFaintACTIVE then
  3586. FloorFaint.BackgroundColor3 = loc
  3587. while wait() do
  3588. if track.IsPlaying == false then
  3589. if FloorFaintACTIVE then
  3590. track:Play(.1, 1, 2)
  3591. end
  3592. end
  3593. end
  3594. else
  3595. track:Stop()
  3596. FloorFaint.BackgroundColor3 = col
  3597. end
  3598. end)
  3599.  
  3600. local Anim = Instance.new("Animation")
  3601. Anim.AnimationId = "rbxassetid://181525546"
  3602. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3603. local SuperFaintACTIVE = false
  3604. SuperFaint.MouseButton1Click:connect(function()
  3605. SuperFaintACTIVE = not SuperFaintACTIVE
  3606. if SuperFaintACTIVE then
  3607. SuperFaint.BackgroundColor3 = loc
  3608. while wait() do
  3609. if track.IsPlaying == false then
  3610. if SuperFaintACTIVE then
  3611. track:Play(.1, 0.5, 40)
  3612. end
  3613. end
  3614. end
  3615. else
  3616. track:Stop()
  3617. SuperFaint.BackgroundColor3 = col
  3618. end
  3619. end)
  3620.  
  3621. local Anim = Instance.new("Animation")
  3622. Anim.AnimationId = "rbxassetid://313762630"
  3623. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3624. local LevitateACTIVE = false
  3625. Levitate.MouseButton1Click:connect(function()
  3626. LevitateACTIVE = not LevitateACTIVE
  3627. if LevitateACTIVE then
  3628. track:Play(.1, 1, 1)
  3629. Levitate.BackgroundColor3 = loc
  3630. else
  3631. track:Stop()
  3632. Levitate.BackgroundColor3 = col
  3633. end
  3634. end)
  3635.  
  3636. local Anim = Instance.new("Animation")
  3637. Anim.AnimationId = "rbxassetid://183412246"
  3638. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3639. local DabACTIVE = false
  3640. Dab.MouseButton1Click:connect(function()
  3641. DabACTIVE = not DabACTIVE
  3642. if DabACTIVE then
  3643. Dab.BackgroundColor3 = loc
  3644. while wait() do
  3645. if track.IsPlaying == false then
  3646. if DabACTIVE then
  3647. track:Play(.1, 1, 1)
  3648. end
  3649. end
  3650. end
  3651. else
  3652. track:Stop()
  3653. Dab.BackgroundColor3 = col
  3654. end
  3655. end)
  3656.  
  3657. local Anim = Instance.new("Animation")
  3658. Anim.AnimationId = "rbxassetid://188632011"
  3659. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3660. local SpinACTIVE = false
  3661. Spinner.MouseButton1Click:connect(function()
  3662. SpinACTIVE = not SpinACTIVE
  3663. if SpinACTIVE then
  3664. Spinner.BackgroundColor3 = loc
  3665. while wait() do
  3666. if track.IsPlaying == false then
  3667. if SpinACTIVE then
  3668. track:Play(.1, 1, 2)
  3669. end
  3670. end
  3671. end
  3672. else
  3673. track:Stop()
  3674. Spinner.BackgroundColor3 = col
  3675. end
  3676. end)
  3677.  
  3678. local Anim = Instance.new("Animation")
  3679. Anim.AnimationId = "rbxassetid://179224234"
  3680. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3681. local FloatSitACTIVE = false
  3682. FloatSit.MouseButton1Click:connect(function()
  3683. FloatSitACTIVE = not FloatSitACTIVE
  3684. if FloatSitACTIVE then
  3685. track:Play(.1, 1, 1)
  3686. FloatSit.BackgroundColor3 = loc
  3687. else
  3688. track:Stop()
  3689. FloatSit.BackgroundColor3 = col
  3690. end
  3691. end)
  3692.  
  3693. local Anim = Instance.new("Animation")
  3694. Anim.AnimationId = "rbxassetid://429703734"
  3695. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3696. local MovingDanceACTIVE = false
  3697. MovingDance.MouseButton1Click:connect(function()
  3698. MovingDanceACTIVE = not MovingDanceACTIVE
  3699. if MovingDanceACTIVE then
  3700. MovingDance.BackgroundColor3 = loc
  3701. while wait() do
  3702. if track.IsPlaying == false then
  3703. if MovingDanceACTIVE then
  3704. track:Play(.1, 1, 1)
  3705. end
  3706. end
  3707. end
  3708. else
  3709. track:Stop()
  3710. MovingDance.BackgroundColor3 = col
  3711. end
  3712. end)
  3713.  
  3714. local Anim = Instance.new("Animation")
  3715. Anim.AnimationId = "rbxassetid://215384594"
  3716. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3717. local WeirdMoveACTIVE = false
  3718. WeirdMove.MouseButton1Click:connect(function()
  3719. WeirdMoveACTIVE = not WeirdMoveACTIVE
  3720. if WeirdMoveACTIVE then
  3721. track:Play(.1, 1, 1)
  3722. WeirdMove.BackgroundColor3 = loc
  3723. else
  3724. track:Stop()
  3725. WeirdMove.BackgroundColor3 = col
  3726. end
  3727. end)
  3728.  
  3729. local Anim = Instance.new("Animation")
  3730. Anim.AnimationId = "rbxassetid://215384594"
  3731. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3732. local CloneIllusionACTIVE = false
  3733. CloneIllusion.MouseButton1Click:connect(function()
  3734. CloneIllusionACTIVE = not CloneIllusionACTIVE
  3735. if CloneIllusionACTIVE then
  3736. track:Play(.5, 1, 1e7)
  3737. CloneIllusion.BackgroundColor3 = loc
  3738. else
  3739. track:Stop()
  3740. CloneIllusion.BackgroundColor3 = col
  3741. end
  3742. end)
  3743.  
  3744. local Anim = Instance.new("Animation")
  3745. Anim.AnimationId = "rbxassetid://313762630"
  3746. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3747. local GlitchLevitateACTIVE = false
  3748. GlitchLevitate.MouseButton1Click:connect(function()
  3749. GlitchLevitateACTIVE = not GlitchLevitateACTIVE
  3750. if GlitchLevitateACTIVE then
  3751. track:Play(.5, 1, 1e7)
  3752. GlitchLevitate.BackgroundColor3 = loc
  3753. else
  3754. track:Stop()
  3755. GlitchLevitate.BackgroundColor3 = col
  3756. end
  3757. end)
  3758.  
  3759. local Anim = Instance.new("Animation")
  3760. Anim.AnimationId = "rbxassetid://429730430"
  3761. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3762. local SpinDanceACTIVE = false
  3763. SpinDance.MouseButton1Click:connect(function()
  3764. SpinDanceACTIVE = not SpinDanceACTIVE
  3765. if SpinDanceACTIVE then
  3766. SpinDance.BackgroundColor3 = loc
  3767. while wait() do
  3768. if track.IsPlaying == false then
  3769. if SpinDanceACTIVE then
  3770. track:Play(.1, 1, 1)
  3771. end
  3772. end
  3773. end
  3774. else
  3775. track:Stop()
  3776. SpinDance.BackgroundColor3 = col
  3777. end
  3778. end)
  3779.  
  3780. local Anim = Instance.new("Animation")
  3781. Anim.AnimationId = "rbxassetid://45834924"
  3782. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3783. local MoonDanceACTIVE = false
  3784. MoonDance.MouseButton1Click:connect(function()
  3785. MoonDanceACTIVE = not MoonDanceACTIVE
  3786. if MoonDanceACTIVE then
  3787. MoonDance.BackgroundColor3 = loc
  3788. while wait() do
  3789. if track.IsPlaying == false then
  3790. if MoonDanceACTIVE then
  3791. track:Play(.1, 1, 1)
  3792. end
  3793. end
  3794. end
  3795. else
  3796. track:Stop()
  3797. MoonDance.BackgroundColor3 = col
  3798. end
  3799. end)
  3800.  
  3801. local Anim = Instance.new("Animation")
  3802. Anim.AnimationId = "rbxassetid://204062532"
  3803. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3804. local FullPunchACTIVE = false
  3805. FullPunch.MouseButton1Click:connect(function()
  3806. FullPunchACTIVE = not FullPunchACTIVE
  3807. if FullPunchACTIVE then
  3808. FullPunch.BackgroundColor3 = loc
  3809. while wait() do
  3810. if track.IsPlaying == false then
  3811. if FullPunchACTIVE then
  3812. track:Play(.1, 1, 1)
  3813. end
  3814. end
  3815. end
  3816. else
  3817. track:Stop()
  3818. FullPunch.BackgroundColor3 = col
  3819. end
  3820. end)
  3821.  
  3822. local Anim = Instance.new("Animation")
  3823. Anim.AnimationId = "rbxassetid://186934910"
  3824. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3825. local SpinDance2ACTIVE = false
  3826. SpinDance2.MouseButton1Click:connect(function()
  3827. SpinDance2ACTIVE = not SpinDance2ACTIVE
  3828. if SpinDance2ACTIVE then
  3829. SpinDance2.BackgroundColor3 = loc
  3830. while wait() do
  3831. if track.IsPlaying == false then
  3832. if SpinDance2ACTIVE then
  3833. track:Play(.1, 1, 1)
  3834. end
  3835. end
  3836. end
  3837. else
  3838. track:Stop()
  3839. SpinDance2.BackgroundColor3 = col
  3840. end
  3841. end)
  3842.  
  3843. local Anim = Instance.new("Animation")
  3844. Anim.AnimationId = "rbxassetid://204292303"
  3845. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3846. local BowDownACTIVE = false
  3847. BowDown.MouseButton1Click:connect(function()
  3848. BowDownACTIVE = not BowDownACTIVE
  3849. if BowDownACTIVE then
  3850. BowDown.BackgroundColor3 = loc
  3851. while wait() do
  3852. if track.IsPlaying == false then
  3853. if BowDownACTIVE then
  3854. track:Play(.1, 1, 3)
  3855. end
  3856. end
  3857. end
  3858. else
  3859. track:Stop()
  3860. BowDown.BackgroundColor3 = col
  3861. end
  3862. end)
  3863.  
  3864. local Anim = Instance.new("Animation")
  3865. Anim.AnimationId = "rbxassetid://204295235"
  3866. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3867. local SwordSlamACTIVE = false
  3868. SwordSlam.MouseButton1Click:connect(function()
  3869. SwordSlamACTIVE = not SwordSlamACTIVE
  3870. if SwordSlamACTIVE then
  3871. SwordSlam.BackgroundColor3 = loc
  3872. while wait() do
  3873. if track.IsPlaying == false then
  3874. if SwordSlamACTIVE then
  3875. track:Play(.1, 1, 1)
  3876. end
  3877. end
  3878. end
  3879. else
  3880. track:Stop()
  3881. SwordSlam.BackgroundColor3 = col
  3882. end
  3883. end)
  3884.  
  3885. local Anim = Instance.new("Animation")
  3886. Anim.AnimationId = "rbxassetid://204295235"
  3887. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3888. local LoopSlamACTIVE = false
  3889. LoopSlam.MouseButton1Click:connect(function()
  3890. LoopSlamACTIVE = not LoopSlamACTIVE
  3891. if LoopSlamACTIVE then
  3892. LoopSlam.BackgroundColor3 = loc
  3893. while wait() do
  3894. if track.IsPlaying == false then
  3895. if LoopSlamACTIVE then
  3896. track:Play(.1, 1, 1e4)
  3897. end
  3898. end
  3899. end
  3900. else
  3901. track:Stop()
  3902. LoopSlam.BackgroundColor3 = col
  3903. end
  3904. end)
  3905.  
  3906. local Anim = Instance.new("Animation")
  3907. Anim.AnimationId = "rbxassetid://184574340"
  3908. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3909. local MegaInsaneACTIVE = false
  3910. MegaInsane.MouseButton1Click:connect(function()
  3911. MegaInsaneACTIVE = not MegaInsaneACTIVE
  3912. if MegaInsaneACTIVE then
  3913. MegaInsane.BackgroundColor3 = loc
  3914. while wait() do
  3915. if track.IsPlaying == false then
  3916. if MegaInsaneACTIVE then
  3917. track:Play(.1, 0.5, 40)
  3918. end
  3919. end
  3920. end
  3921. else
  3922. track:Stop()
  3923. MegaInsane.BackgroundColor3 = col
  3924. end
  3925. end)
  3926.  
  3927. local Anim = Instance.new("Animation")
  3928. Anim.AnimationId = "rbxassetid://126753849"
  3929. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3930. local SuperPunchACTIVE = false
  3931. SuperPunch.MouseButton1Click:connect(function()
  3932. SuperPunchACTIVE = not SuperPunchACTIVE
  3933. if SuperPunchACTIVE then
  3934. SuperPunch.BackgroundColor3 = loc
  3935. while wait() do
  3936. if track.IsPlaying == false then
  3937. if SuperPunchACTIVE then
  3938. track:Play(.1, 1, 3)
  3939. end
  3940. end
  3941. end
  3942. else
  3943. track:Stop()
  3944. SuperPunch.BackgroundColor3 = col
  3945. end
  3946. end)
  3947.  
  3948. local Anim = Instance.new("Animation")
  3949. Anim.AnimationId = "rbxassetid://218504594"
  3950. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3951. local FullSwingACTIVE = false
  3952. FullSwing.MouseButton1Click:connect(function()
  3953. FullSwingACTIVE = not FullSwingACTIVE
  3954. if FullSwingACTIVE then
  3955. FullSwing.BackgroundColor3 = loc
  3956. while wait() do
  3957. if track.IsPlaying == false then
  3958. if FullSwingACTIVE then
  3959. track:Play(.1, 1, 1)
  3960. end
  3961. end
  3962. end
  3963. else
  3964. track:Stop()
  3965. FullSwing.BackgroundColor3 = col
  3966. end
  3967. end)
  3968.  
  3969. local Anim = Instance.new("Animation")
  3970. Anim.AnimationId = "rbxassetid://259438880"
  3971. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3972. local ArmTurbineACTIVE = false
  3973. ArmTurbine.MouseButton1Click:connect(function()
  3974. ArmTurbineACTIVE = not ArmTurbineACTIVE
  3975. if ArmTurbineACTIVE then
  3976. track:Play(.1, 1, 1e3)
  3977. ArmTurbine.BackgroundColor3 = loc
  3978. else
  3979. track:Stop()
  3980. ArmTurbine.BackgroundColor3 = col
  3981. end
  3982. end)
  3983.  
  3984. local Anim = Instance.new("Animation")
  3985. Anim.AnimationId = "rbxassetid://136801964"
  3986. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3987. local BarrelRollACTIVE = false
  3988. BarrelRoll.MouseButton1Click:connect(function()
  3989. BarrelRollACTIVE = not BarrelRollACTIVE
  3990. if BarrelRollACTIVE then
  3991. BarrelRoll.BackgroundColor3 = loc
  3992. while wait() do
  3993. if track.IsPlaying == false then
  3994. if BarrelRollACTIVE then
  3995. track:Play(.1, 1, 1)
  3996. end
  3997. end
  3998. end
  3999. else
  4000. track:Stop()
  4001. BarrelRoll.BackgroundColor3 = col
  4002. end
  4003. end)
  4004.  
  4005. local Anim = Instance.new("Animation")
  4006. Anim.AnimationId = "rbxassetid://180612465"
  4007. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4008. local ScaredACTIVE = false
  4009. Scared.MouseButton1Click:connect(function()
  4010. ScaredACTIVE = not ScaredACTIVE
  4011. if ScaredACTIVE then
  4012. Scared.BackgroundColor3 = loc
  4013. while wait() do
  4014. if track.IsPlaying == false then
  4015. if ScaredACTIVE then
  4016. track:Play(.1, 1, 1)
  4017. end
  4018. end
  4019. end
  4020. else
  4021. track:Stop()
  4022. Scared.BackgroundColor3 = col
  4023. end
  4024. end)
  4025.  
  4026. local Anim = Instance.new("Animation")
  4027. Anim.AnimationId = "rbxassetid://33796059"
  4028. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4029. local InsaneACTIVE = false
  4030. Insane.MouseButton1Click:connect(function()
  4031. InsaneACTIVE = not InsaneACTIVE
  4032. if InsaneACTIVE then
  4033. track:Play(.1, 1, 1e8)
  4034. Insane.BackgroundColor3 = loc
  4035. else
  4036. track:Stop()
  4037. Insane.BackgroundColor3 = col
  4038. end
  4039. end)
  4040.  
  4041. local Anim = Instance.new("Animation")
  4042. Anim.AnimationId = "rbxassetid://33169583"
  4043. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4044. local ArmDetachACTIVE = false
  4045. ArmDetach.MouseButton1Click:connect(function()
  4046. ArmDetachACTIVE = not ArmDetachACTIVE
  4047. if ArmDetachACTIVE then
  4048. ArmDetach.BackgroundColor3 = loc
  4049. while wait() do
  4050. if track.IsPlaying == false then
  4051. if ArmDetachACTIVE then
  4052. track:Play(.1, 1, 1e6)
  4053. end
  4054. end
  4055. end
  4056. else
  4057. track:Stop()
  4058. ArmDetach.BackgroundColor3 = col
  4059. end
  4060. end)
  4061.  
  4062. local Anim = Instance.new("Animation")
  4063. Anim.AnimationId = "rbxassetid://35978879"
  4064. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4065. local SwordSliceACTIVE = false
  4066. SwordSlice.MouseButton1Click:connect(function()
  4067. SwordSliceACTIVE = not SwordSliceACTIVE
  4068. if SwordSliceACTIVE then
  4069. track:Play(.1, 1, 1)
  4070. SwordSlice.BackgroundColor3 = loc
  4071. else
  4072. track:Stop()
  4073. SwordSlice.BackgroundColor3 = col
  4074. end
  4075. end)
  4076.  
  4077. local Anim = Instance.new("Animation")
  4078. Anim.AnimationId = "rbxassetid://27432691"
  4079. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4080. local InsaneArmsACTIVE = false
  4081. InsaneArms.MouseButton1Click:connect(function()
  4082. InsaneArmsACTIVE = not InsaneArmsACTIVE
  4083. if InsaneArmsACTIVE then
  4084. InsaneArms.BackgroundColor3 = loc
  4085. while wait() do
  4086. if track.IsPlaying == false then
  4087. if InsaneArmsACTIVE then
  4088. track:Play(.1, 1, 1e4)
  4089. end
  4090. end
  4091. end
  4092. else
  4093. track:Stop()
  4094. InsaneArms.BackgroundColor3 = col
  4095. end
  4096. end)
  4097. -- R15
  4098. local Anim = Instance.new("Animation")
  4099. Anim.AnimationId = "rbxassetid://674871189"
  4100. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4101. local CrazySlashACTIVE = false
  4102. CrazySlash.MouseButton1Click:connect(function()
  4103. CrazySlashACTIVE = not CrazySlashACTIVE
  4104. if CrazySlashACTIVE then
  4105. CrazySlash.BackgroundColor3 = rloc
  4106. while wait() do
  4107. if track.IsPlaying == false then
  4108. if CrazySlashACTIVE then
  4109. track:Play(.1, 1, 1)
  4110. end
  4111. end
  4112. end
  4113. else
  4114. track:Stop()
  4115. CrazySlash.BackgroundColor3 = rcol
  4116. end
  4117. end)
  4118.  
  4119. local Anim = Instance.new("Animation")
  4120. Anim.AnimationId = "rbxassetid://582855105"
  4121. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4122. local OpenACTIVE = false
  4123. Open.MouseButton1Click:connect(function()
  4124. OpenACTIVE = not OpenACTIVE
  4125. if OpenACTIVE then
  4126. Open.BackgroundColor3 = rloc
  4127. while wait() do
  4128. if track.IsPlaying == false then
  4129. if OpenACTIVE then
  4130. track:Play(.1, 1, 1)
  4131. end
  4132. end
  4133. end
  4134. else
  4135. track:Stop()
  4136. Open.BackgroundColor3 = rcol
  4137. end
  4138. end)
  4139.  
  4140. local Anim = Instance.new("Animation")
  4141. Anim.AnimationId = "rbxassetid://754658275"
  4142. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4143. local R15SpinnerACTIVE = false
  4144. R15Spinner.MouseButton1Click:connect(function()
  4145. R15SpinnerACTIVE = not R15SpinnerACTIVE
  4146. if R15SpinnerACTIVE then
  4147. R15Spinner.BackgroundColor3 = rloc
  4148. while wait() do
  4149. if track.IsPlaying == false then
  4150. if R15SpinnerACTIVE then
  4151. track:Play(.1, 1, 1)
  4152. end
  4153. end
  4154. end
  4155. else
  4156. track:Stop()
  4157. R15Spinner.BackgroundColor3 = rcol
  4158. end
  4159. end)
  4160.  
  4161. local Anim = Instance.new("Animation")
  4162. Anim.AnimationId = "rbxassetid://582384156"
  4163. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4164. local ArmsOutACTIVE = false
  4165. ArmsOut.MouseButton1Click:connect(function()
  4166. ArmsOutACTIVE = not ArmsOutACTIVE
  4167. if ArmsOutACTIVE then
  4168. ArmsOut.BackgroundColor3 = rloc
  4169. while wait() do
  4170. if track.IsPlaying == false then
  4171. if ArmsOutACTIVE then
  4172. track:Play(.1, 1, 1)
  4173. end
  4174. end
  4175. end
  4176. else
  4177. track:Stop()
  4178. ArmsOut.BackgroundColor3 = rcol
  4179. end
  4180. end)
  4181.  
  4182. local Anim = Instance.new("Animation")
  4183. Anim.AnimationId = "rbxassetid://717879555"
  4184. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4185. local FloatSlashACTIVE = false
  4186. FloatSlash.MouseButton1Click:connect(function()
  4187. FloatSlashACTIVE = not FloatSlashACTIVE
  4188. if FloatSlashACTIVE then
  4189. FloatSlash.BackgroundColor3 = rloc
  4190. while wait() do
  4191. if track.IsPlaying == false then
  4192. if FloatSlashACTIVE then
  4193. track:Play(.1, 1, 1)
  4194. end
  4195. end
  4196. end
  4197. else
  4198. track:Stop()
  4199. FloatSlash.BackgroundColor3 = rcol
  4200. end
  4201. end)
  4202.  
  4203. local Anim = Instance.new("Animation")
  4204. Anim.AnimationId = "rbxassetid://708553116"
  4205. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4206. WeirdZombieACTIVE = false
  4207. WeirdZombie.MouseButton1Click:connect(function()
  4208. WeirdZombieACTIVE = not WeirdZombieACTIVE
  4209. if WeirdZombieACTIVE then
  4210. WeirdZombie.BackgroundColor3 = rloc
  4211. while wait() do
  4212. if track.IsPlaying == false then
  4213. if WeirdZombieACTIVE then
  4214. track:Play(.1, 1, 1)
  4215. end
  4216. end
  4217. end
  4218. else
  4219. track:Stop()
  4220. WeirdZombie.BackgroundColor3 = rcol
  4221. end
  4222. end)
  4223.  
  4224. local Anim = Instance.new("Animation")
  4225. Anim.AnimationId = "rbxassetid://746398327"
  4226. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4227. DownSlashACTIVE = false
  4228. DownSlash.MouseButton1Click:connect(function()
  4229. DownSlashACTIVE = not DownSlashACTIVE
  4230. if DownSlashACTIVE then
  4231. DownSlash.BackgroundColor3 = rloc
  4232. while wait() do
  4233. if track.IsPlaying == false then
  4234. if DownSlashACTIVE then
  4235. track:Play(.1, 1, 1)
  4236. end
  4237. end
  4238. end
  4239. else
  4240. track:Stop()
  4241. DownSlash.BackgroundColor3 = rcol
  4242. end
  4243. end)
  4244.  
  4245. local Anim = Instance.new("Animation")
  4246. Anim.AnimationId = "rbxassetid://675025795"
  4247. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4248. PullACTIVE = false
  4249. Pull.MouseButton1Click:connect(function()
  4250. PullACTIVE = not PullACTIVE
  4251. if PullACTIVE then
  4252. Pull.BackgroundColor3 = rloc
  4253. while wait() do
  4254. if track.IsPlaying == false then
  4255. if PullACTIVE then
  4256. track:Play(.1, 1, 1)
  4257. end
  4258. end
  4259. end
  4260. else
  4261. track:Stop()
  4262. Pull.BackgroundColor3 = rcol
  4263. end
  4264. end)
  4265.  
  4266. local Anim = Instance.new("Animation")
  4267. Anim.AnimationId = "rbxassetid://698251653"
  4268. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4269. CircleArmACTIVE = false
  4270. CircleArm.MouseButton1Click:connect(function()
  4271. CircleArmACTIVE = not CircleArmACTIVE
  4272. if CircleArmACTIVE then
  4273. CircleArm.BackgroundColor3 = rloc
  4274. while wait() do
  4275. if track.IsPlaying == false then
  4276. if CircleArmACTIVE then
  4277. track:Play(.1, 1, 1)
  4278. end
  4279. end
  4280. end
  4281. else
  4282. track:Stop()
  4283. CircleArm.BackgroundColor3 = rcol
  4284. end
  4285. end)
  4286.  
  4287. local Anim = Instance.new("Animation")
  4288. Anim.AnimationId = "rbxassetid://696096087"
  4289. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4290. BendACTIVE = false
  4291. Bend.MouseButton1Click:connect(function()
  4292. BendACTIVE = not BendACTIVE
  4293. if BendACTIVE then
  4294. Bend.BackgroundColor3 = rloc
  4295. while wait() do
  4296. if track.IsPlaying == false then
  4297. if BendACTIVE then
  4298. track:Play(.1, 1, 1)
  4299. end
  4300. end
  4301. end
  4302. else
  4303. track:Stop()
  4304. Bend.BackgroundColor3 = rcol
  4305. end
  4306. end)
  4307.  
  4308. local Anim = Instance.new("Animation")
  4309. Anim.AnimationId = "rbxassetid://675025570"
  4310. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4311. RotateSlashACTIVE = false
  4312. RotateSlash.MouseButton1Click:connect(function()
  4313. RotateSlashACTIVE = not RotateSlashACTIVE
  4314. if RotateSlashACTIVE then
  4315. RotateSlash.BackgroundColor3 = rloc
  4316. while wait() do
  4317. if track.IsPlaying == false then
  4318. if RotateSlashACTIVE then
  4319. track:Play(.1, 1, 1)
  4320. end
  4321. end
  4322. end
  4323. else
  4324. track:Stop()
  4325. RotateSlash.BackgroundColor3 = rcol
  4326. end
  4327. end)
  4328.  
  4329. local Anim = Instance.new("Animation")
  4330. Anim.AnimationId = "rbxassetid://754656200"
  4331. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4332. FlingArmsACTIVE = false
  4333. FlingArms.MouseButton1Click:connect(function()
  4334. FlingArmsACTIVE = not FlingArmsACTIVE
  4335. if FlingArmsACTIVE then
  4336. FlingArms.BackgroundColor3 = rloc
  4337. while wait() do
  4338. if track.IsPlaying == false then
  4339. if FlingArmsACTIVE then
  4340. track:Play(.1, 1, 10)
  4341. end
  4342. end
  4343. end
  4344. else
  4345. track:Stop()
  4346. FlingArms.BackgroundColor3 = rcol
  4347. end
  4348. end)
  4349.  
  4350. -- Finished update!
  4351. end)
  4352.  
  4353. KillFling.Name = "Kill/Fling"
  4354. KillFling.Parent = FeScripts_2
  4355. KillFling.BackgroundColor3 = Color3.new(1, 1, 1)
  4356. KillFling.Position = UDim2.new(0.518846989, 0, 0, 0)
  4357. KillFling.Size = UDim2.new(0, 217, 0, 50)
  4358. KillFling.Font = Enum.Font.SourceSans
  4359. KillFling.Text = "Kill/Fling"
  4360. KillFling.TextColor3 = Color3.new(0, 0, 0)
  4361. KillFling.TextScaled = true
  4362. KillFling.TextSize = 14
  4363. KillFling.TextWrapped = true
  4364.  
  4365. KillFling.MouseButton1Down:connect(function()
  4366. local a=Instance.new("ScreenGui")local b=Instance.new("Frame")local c=Instance.new("Frame")local d=Instance.new("Frame")local e=Instance.new("TextButton")local f=Instance.new("TextButton")local g=Instance.new("TextLabel")local h=Instance.new("TextLabel")local i=Instance.new("TextLabel")local j=Instance.new("TextLabel")local k=Instance.new("TextButton")local l=Instance.new("TextButton")local m=Instance.new("TextButton")a.Name="Fling/Kill"a.Parent=game.CoreGui;b.Name="Main"b.Parent=a;b.BackgroundColor3=Color3.new(0.92549,0.941177,0.945098)b.BorderSizePixel=0;b.Position=UDim2.new(0.702554762,0,0.446640313,0)b.Size=UDim2.new(0,217,0,233)b.Selectable=true;b.Active=true;b.Draggable=true;c.Name="Label"c.Parent=b;c.BackgroundColor3=Color3.new(0.741176,0.764706,0.780392)c.BorderSizePixel=0;c.Size=UDim2.new(0,217,0,27)d.Name="Shadow"d.Parent=b;d.BackgroundColor3=Color3.new(0.67451,0.694118,0.705882)d.BorderSizePixel=0;d.Position=UDim2.new(0,0,0.115879826,0)d.Size=UDim2.new(0,217,0,9)e.Name="StartKill"e.Parent=b;e.BackgroundColor3=Color3.new(0.741176,0.764706,0.780392)e.BorderSizePixel=0;e.Position=UDim2.new(0.195852548,0,0.227467805,0)e.Size=UDim2.new(0,126,0,23)e.Font=Enum.Font.Cartoon;e.Text="FE Kill/Fling"e.TextColor3=Color3.new(0,0,0)e.TextSize=14;f.Name="StopKill"f.Parent=b;f.BackgroundColor3=Color3.new(0.741176,0.764706,0.780392)f.BorderSizePixel=0;f.Position=UDim2.new(0.207373276,0,0.38197428,0)f.Size=UDim2.new(0,124,0,23)f.Font=Enum.Font.Cartoon;f.Text="Stop FE Kill/Fling"f.TextColor3=Color3.new(0,0,0)f.TextSize=14;g.Name="Instructions"g.Parent=b;g.BackgroundColor3=Color3.new(1,1,1)g.BackgroundTransparency=1;g.Position=UDim2.new(0.0391705073,0,0.549356222,0)g.Size=UDim2.new(0,200,0,32)g.Font=Enum.Font.Cartoon;g.Text="Just touch someone to watch the fly to their death!"g.TextColor3=Color3.new(0,0,0)g.TextSize=14;g.TextWrapped=true;h.Name="CurrentPower"h.Parent=b;h.BackgroundColor3=Color3.new(1,1,1)h.BackgroundTransparency=1;h.Position=UDim2.new(0.276497692,0,0.686695278,0)h.Size=UDim2.new(0,98,0,36)h.Font=Enum.Font.Cartoon;h.Text="Current Power = 5"h.TextColor3=Color3.new(0,0,0)h.TextSize=14;i.Name="Recomendation"i.Parent=b;i.BackgroundColor3=Color3.new(1,1,1)i.BackgroundTransparency=1;i.Position=UDim2.new(0.0414746553,0,0.884120166,0)i.Size=UDim2.new(0,200,0,21)i.Font=Enum.Font.Cartoon;i.Text="Recommended Power is 5"i.TextColor3=Color3.new(0,0,0)i.TextSize=14;j.Name="NameOfGui"j.Parent=b;j.BackgroundColor3=Color3.new(1,1,1)j.BackgroundTransparency=1;j.Position=UDim2.new(0.0806451589,0,0,0)j.Size=UDim2.new(0,154,0,27)j.Font=Enum.Font.Cartoon;j.Text="FE Kill/Fling By JackMcJagger15"j.TextColor3=Color3.new(0,0,0)j.TextSize=14;k.Name="Exit"k.Parent=b;k.BackgroundColor3=Color3.new(1,1,1)k.BackgroundTransparency=1;k.Position=UDim2.new(0.907834113,0,0,0)k.Size=UDim2.new(0,20,0,27)k.Font=Enum.Font.Cartoon;k.Text="X"k.TextColor3=Color3.new(0,0,0)k.TextSize=14;l.Name="UPArrow"l.Parent=b;l.BackgroundColor3=Color3.new(1,1,1)l.BackgroundTransparency=1;l.Position=UDim2.new(0.0783410147,0,0.716738224,0)l.Size=UDim2.new(0,26,0,23)l.Font=Enum.Font.Cartoon;l.Text="Up"l.TextColor3=Color3.new(0,0,0)l.TextSize=12;l.TextWrapped=true;m.Name="DownArrow"m.Parent=b;m.BackgroundColor3=Color3.new(1,1,1)m.BackgroundTransparency=1;m.Position=UDim2.new(0.792626739,0,0.714592278,0)m.Size=UDim2.new(0,26,0,23)m.Font=Enum.Font.Cartoon;m.Text="Down"m.TextColor3=Color3.new(0,0,0)m.TextSize=12;m.TextWrapped=true;power=500;active=false;local n=Instance.new("IntValue")n.Name="Number"n.Parent=game.Players.LocalPlayer;n.Value=5;k.MouseButton1Click:connect(function()a.Enabled=false end)e.MouseButton1Click:connect(function()game:GetService('RunService').Stepped:connect(function()if game.Players.LocalPlayer.Character.Humanoid.RigType==Enum.HumanoidRigType.R6 then game.Players.LocalPlayer.Character.Head.CanCollide=false;game.Players.LocalPlayer.Character.Torso.CanCollide=false;game.Players.LocalPlayer.Character["Left Leg"].CanCollide=false;game.Players.LocalPlayer.Character["Right Leg"].CanCollide=false else if game.Players.LocalPlayer.Character.Humanoid.RigType==Enum.HumanoidRigType.R15 then game.Players.LocalPlayer.Character.Head.CanCollide=false;game.Players.LocalPlayer.Character.UpperTorso.CanCollide=false;game.Players.LocalPlayer.Character.LowerTorso.CanCollide=false;game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide=false end end end)wait(.1)local o=Instance.new("BodyThrust")o.Parent=game.Players.LocalPlayer.Character.HumanoidRootPart;o.Force=Vector3.new(power,0,power)o.Location=game.Players.LocalPlayer.Character.HumanoidRootPart.Position end)f.MouseButton1Click:connect(function()active=false;game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove()end)l.MouseButton1Click:connect(function()power=power+100;game.Players.LocalPlayer.Number.Value=game.Players.LocalPlayer.Number.Value+1;h.Text="Current Power = "..game.Players.LocalPlayer.Number.Value end)m.MouseButton1Click:connect(function()power=power-100;game.Players.LocalPlayer.Number.Value=game.Players.LocalPlayer.Number.Value-1;h.Text="Current Power = "..game.Players.LocalPlayer.Number.Value end)
  4367. end)
  4368.  
  4369. ExitForFunScripts.Name = "Exit For Fun Scripts"
  4370. ExitForFunScripts.Parent = FeScripts_2
  4371. ExitForFunScripts.BackgroundColor3 = Color3.new(1, 0, 0)
  4372. ExitForFunScripts.Position = UDim2.new(0.017738359, 0, 0.292307705, 0)
  4373. ExitForFunScripts.Size = UDim2.new(0, 443, 0, 43)
  4374. ExitForFunScripts.Font = Enum.Font.SourceSans
  4375. ExitForFunScripts.Text = "Exit"
  4376. ExitForFunScripts.TextColor3 = Color3.new(0, 0, 0)
  4377. ExitForFunScripts.TextScaled = true
  4378. ExitForFunScripts.TextSize = 14
  4379. ExitForFunScripts.TextWrapped = true
  4380.  
  4381. ExitForFunScripts.MouseButton1Down:connect(function()
  4382. FeScripts_2.Visible = false
  4383. GameFrame.Visible = true
  4384. end)
  4385.  
  4386. Open.Name = "Open"
  4387. Open.Parent = LoginGui
  4388. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  4389. Open.Position = UDim2.new(0.320121944, 0, 0.924802125, 0)
  4390. Open.Size = UDim2.new(0, 200, 0, 50)
  4391. Open.Visible = false
  4392. Open.Font = Enum.Font.SourceSans
  4393. Open.Text = "Open"
  4394. Open.TextColor3 = Color3.new(0, 0, 0)
  4395. Open.TextScaled = true
  4396. Open.TextSize = 14
  4397. Open.TextWrapped = true
  4398.  
  4399. Open.MouseButton1Down:connect(function()
  4400. GameFrame.Visible = true
  4401. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement