Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.55 KB | None | 0 0
  1. if game:GetService('CoreGui'):FindFirstChild('PFX') then
  2. game:GetService('CoreGui').PFX:Destroy()
  3. end
  4.  
  5. if PROTOSMASHER_LOADED and (not shared.repair) then
  6. warn("Loading ProtoSmasher Fixes, Ty wally and Classy")--credits to wally
  7. coroutine.wrap(function()
  8. pcall(function()
  9. loadstring(game:HttpGet("https://pastebin.com/raw/m8zyuQMv", true))()
  10. end)
  11. end)()
  12. repeat wait() until shared.repair
  13. end
  14.  
  15. local getgc = (getgc or get_gc_objects);--200 iq xd
  16. local secret953 = secret953 or debug.getupvalues;
  17. local secret500 = secret500 or debug.setupvalue;
  18. local getreg = getreg or debug.getregistry;
  19.  
  20. local Windows = {}
  21. local Spotted = {}
  22.  
  23. local V = Vector3.new()
  24. local Client = {}
  25.  
  26. for i,v in next, getgc() do
  27. if network and gamelogic and effects and char then
  28. break
  29. end
  30.  
  31. if type(v) == "function" then
  32. for k,x in next, getupvalues(v) do
  33. if type(x) == "table" then
  34. for l,n in next, x do
  35. if l == "loadgrenade" and "loadgun" then
  36. Client.char = x
  37. elseif l == "breakwindows" then
  38. Client.effects = x
  39. elseif l == "add" then
  40. Client.network = x
  41. end
  42. end
  43. end
  44. end
  45. end
  46. end
  47.  
  48. local settings = {
  49. FallDamage = false,
  50. InfFrags = false,
  51. InfCreds = false,
  52. Esp = false,
  53. SpotAll = false,
  54. BreakWindows = false,
  55. InfJump = false,
  56. NoClip = false,
  57. NoRecoil = false,
  58. NoFlash = false,
  59. NoSway = false,
  60. NoSpread = false,
  61. InstaReload = false,
  62. RapidFire = false,
  63. FullAutox = false,
  64. oneshot = false,
  65. Spawn = false,
  66. GunMods = false,
  67. FireRate = false
  68. }
  69.  
  70. local Version = 'v.2.0.b'
  71. local Updated = '8/15/2019'
  72. local DiscordLink = 'https://discord.gg/MyjGtee'
  73.  
  74. local GoodStat = 'Hooked, Secured, Ready to use'
  75. local MainFrameFail = 'Failed to hook mainframe'
  76. local HookFuncFail = 'Failed to Hook Functions'
  77. local Failure = 'Failed to Hook func, or Mainframe'
  78.  
  79. local P = game.Players
  80. local client = game.Players.LocalPlayer
  81.  
  82. if Client then
  83. local LoadGun = Client.char.loadgun
  84. local LoadFrag = Client.char.loadgrenade
  85.  
  86. local Char = Client.char
  87.  
  88. local Network = Client.network
  89.  
  90. local Effects = Client.effects
  91.  
  92. local Send = Network.send
  93.  
  94. local function PlayerData()
  95. for i, v in ipairs(game:GetService'Players':GetPlayers'') do
  96. if v.TeamColor ~= client.TeamColor then
  97. table.insert(Spotted, v);
  98. end;
  99. end;
  100. return Spotted
  101. end
  102.  
  103. function BreakWindex()--llol
  104. for i,v in next, workspace:GetDescendants() do
  105. if v.Name:lower() == "window" then
  106. table.insert(Windows,v)
  107. end
  108. end
  109. Effects:breakwindows(Windows)
  110. end
  111. --[[do
  112. Funcs = debug.getupvalue(Network.add, 'funcs')
  113. if Funcs then
  114.  
  115. local OldNewBullet = Funcs.newbullet
  116. function Funcs.newbullet(...)
  117. local Args = {...}
  118. if settings.NoRecoil or settings.GunMods then Args[1].acceleration = Vector3.new(0,0,0) end
  119. return OldNewBullet(unpack(Args))
  120. end
  121. if settings.SpotAll then
  122. Funcs.spotplayer(PlayerData())
  123. end
  124. end]]
  125.  
  126. do
  127. Network.send = function(self, ...)
  128. local Args = {...};
  129. if #Args > 0 then
  130. local Name = Args[1];
  131. if Name == 'changehealthx' then
  132. if #Args > 4 and Args[5] == 'Falling' and settings.FallDamage then
  133. return
  134. end
  135. --[[elseif settings.InfCreds then
  136. Funcs['updatemoney'](math.huge)
  137. end]]
  138. end
  139. return Send(self, ...)
  140. end
  141. end
  142.  
  143. --[[
  144. [TO DO LIST]
  145. {completely rewrite the funcs hook}
  146. to fix spot all and fake inf credits lol
  147. ]]
  148. Char.loadgun = function(...)
  149. local args = {...}
  150. local GunData = args[2]
  151.  
  152. if settings.NoRecoil then
  153. GunData.camkickmin = V
  154. GunData.camkickmax = V
  155. GunData.aimcamkickmin = V
  156. GunData.aimcamkickmax = V
  157. GunData.aimtranskickmin = V
  158. GunData.aimtranskickmax = V
  159. GunData.transkickmin = V
  160. GunData.transkickmax = V
  161. GunData.rotkickmin = V
  162. GunData.rotkickmax = V
  163. GunData.aimrotkickmin = V
  164. GunData.aimrotkickmax = V
  165. end
  166.  
  167. if settings.NoFlash then
  168. GunData.hideflash = true
  169. GunData.hideminimap = true
  170. end
  171.  
  172. if settings.NoSway then
  173. GunData.swayamp = 0
  174. GunData.swayspeed = 0
  175. GunData.steadyspeed = 0
  176. GunData.breathspeed = 0
  177. end
  178.  
  179. if settings.NoSpread then
  180. GunData.hipfirespreadrecover = 100
  181. GunData.hipfirespread = 0
  182. GunData.hipfirestability = 0
  183. end
  184.  
  185. if settings.RapidFire then
  186. GunData.firerate = 1500
  187. GunData.variablefirerate = false
  188. GunData.firemodes = {true, 3, 1}
  189. GunData.requirechamber = false
  190. end
  191.  
  192. if settings.FullAutox then
  193. GunData.variablefirerate = false
  194. GunData.firemodes = {true, 3, 1}
  195. GunData.requirechamber = false
  196. end
  197.  
  198. if settings.FireRate then
  199. GunData.firerate = FireRateTXT.Text
  200. GunData.variablefirerate = false
  201. GunData.requirechamber = false
  202. end
  203.  
  204. if settings.InstaReload then
  205. for i, v in next, GunData.animations do
  206. if string.find(string.lower(i), "reload") then
  207. GunData.animations[i].timescale = 0.2
  208. end
  209. end
  210. end
  211.  
  212. if settings.GunMods then
  213. GunData.hideflash = true;
  214. GunData.hideminimap = true;
  215. GunData.camkickmin = V;
  216. GunData.camkickmax = V;
  217. GunData.aimcamkickmin = V;
  218. GunData.aimcamkickmax = V;
  219. GunData.aimtranskickmin = V;
  220. GunData.aimtranskickmax = V;
  221. GunData.transkickmin = V;
  222. GunData.transkickmax = V;
  223. GunData.rotkickmin = V;
  224. GunData.rotkickmax = V;
  225. GunData.aimrotkickmin = V;
  226. GunData.aimrotkickmax = V;
  227. GunData.swayamp = 0;
  228. GunData.swayspeed = 0;
  229. GunData.steadyspeed = 0;
  230. GunData.breathspeed = 0;
  231. GunData.variablefirerate = false;
  232. GunData.firemodes = {true, 3, 1};
  233. GunData.requirechamber = false;
  234. end
  235. args[2] = GunData
  236. return LoadGun(unpack(args))
  237. end
  238.  
  239. function InfJumpers()--Made by Exploit Revived(Old Lx friend ;-; he quit xd)
  240. local Player = game:GetService("Players").LocalPlayer;
  241. local UserInputService = game:GetService("UserInputService");
  242. local Bricks = {};
  243. local Space;
  244. local WalkInAir = false;
  245.  
  246. UserInputService.InputBegan:Connect(function(
  247. InputObject,
  248. GameProcessedEvent
  249. )
  250. if (
  251. (not GameProcessedEvent) and
  252. (InputObject.UserInputType == Enum.UserInputType.Keyboard)
  253. ) then
  254. if (InputObject.KeyCode == Enum.KeyCode.P) then
  255. for Key, Value in next, Bricks do
  256. Value:Destroy();
  257. end;
  258. elseif (InputObject.KeyCode == Enum.KeyCode.Space) then
  259. Space = true;
  260. elseif (InputObject.KeyCode == Enum.KeyCode.L) then
  261. WalkInAir = (not WalkInAir);
  262. end;
  263. end;
  264. end);
  265.  
  266. UserInputService.InputEnded:Connect(function(
  267. InputObject,
  268. GameProcessedEvent
  269. )
  270. if (
  271. (not GameProcessedEvent) and
  272. (InputObject.UserInputType == Enum.UserInputType.Keyboard)
  273. ) then
  274. if (InputObject.KeyCode == Enum.KeyCode.Space) then
  275. Space = nil;
  276. end;
  277. end;
  278. end);
  279.  
  280. local LastPosition = Vector3.new(0, 0, 0);
  281.  
  282. game:GetService("RunService").RenderStepped:Connect(function()
  283. local PositionChanged;
  284. local Torso = (
  285. Player.Character or
  286. Player.CharacterAdded:wait()
  287. ):WaitForChild("Torso");
  288. if ((Torso.Position - LastPosition).Magnitude > 0.75) then
  289. PositionChanged = true;
  290. end;
  291.  
  292. if (Space or (WalkInAir and PositionChanged)) then
  293. local FlyBrick = Instance.new("Part",
  294. (
  295. Torso:GetChildren()[1] or
  296. Torso
  297. )
  298. );
  299.  
  300. FlyBrick.Transparency = 1;
  301. FlyBrick.Anchored = true;
  302.  
  303. FlyBrick.CFrame = (
  304. Torso.CFrame *
  305. CFrame.new(0, -2.25, 0)
  306. );
  307.  
  308. FlyBrick.Size = Vector3.new(5, 0.05, 5);
  309. FlyBrick.BrickColor = BrickColor.new("Institutional white");
  310. FlyBrick.Locked = true;
  311. FlyBrick.TopSurface = Enum.SurfaceType.SmoothNoOutlines;
  312. FlyBrick.BottomSurface = FlyBrick.TopSurface;
  313. FlyBrick.RightSurface = FlyBrick.TopSurface;
  314. FlyBrick.LeftSurface = FlyBrick.TopSurface;
  315. FlyBrick.FrontSurface = FlyBrick.TopSurface;
  316. FlyBrick.BackSurface = FlyBrick.TopSurface;
  317. Bricks[#Bricks + 1] = FlyBrick;
  318. end;
  319. LastPosition = Torso.Position;
  320. end)
  321. end
  322.  
  323. function CreateUI()
  324. local PFX = Instance.new("ScreenGui")
  325. local MainFrame = Instance.new("Frame")
  326. local JustAPlate = Instance.new("TextLabel")
  327. local Version = Instance.new("TextLabel")
  328. local SideTItle = Instance.new("ImageLabel")
  329. local MainTitle = Instance.new("ImageLabel")
  330. local Exit = Instance.new("TextButton")
  331. local Line1 = Instance.new("Frame")
  332. local Line2 = Instance.new("Frame")
  333. local NoFallDamageBTN = Instance.new("TextButton")
  334. local Frame = Instance.new("Frame")
  335. local ToggleKey = Instance.new("TextLabel")
  336. local NoClipBTN = Instance.new("TextButton")
  337. local Frame_2 = Instance.new("Frame")
  338. local InfJumpBTN = Instance.new("TextButton")
  339. local Frame_3 = Instance.new("Frame")
  340. local breakWindowsBTN = Instance.new("TextButton")
  341. local Frame_4 = Instance.new("Frame")
  342. local ESPBTN = Instance.new("TextButton")
  343. local Frame_5 = Instance.new("Frame")
  344. local InFagsBTN = Instance.new("TextButton")
  345. local Frame_6 = Instance.new("Frame")
  346. local Credits = Instance.new("TextLabel")
  347. local NoRecoilBTN = Instance.new("TextButton")
  348. local Frame_7 = Instance.new("Frame")
  349. local NoFlashBTN = Instance.new("TextButton")
  350. local Frame_8 = Instance.new("Frame")
  351. local NoSwayBTN = Instance.new("TextButton")
  352. local Frame_9 = Instance.new("Frame")
  353. local FullAutoBTN = Instance.new("TextButton")
  354. local Frame_10 = Instance.new("Frame")
  355. local InstaReloadBTN = Instance.new("TextButton")
  356. local Frame_11 = Instance.new("Frame")
  357. local RapidFireBTN = Instance.new("TextButton")
  358. local Frame_12 = Instance.new("Frame")
  359. local GunModBTN = Instance.new("TextButton")
  360. local Frame_13 = Instance.new("Frame")
  361. local DiscordInfo = Instance.new("TextLabel")
  362. local UpdateInfo = Instance.new("TextLabel")
  363. local Status = Instance.new("TextLabel")
  364. local FireRateTXT = Instance.new("TextBox")
  365. local Frame_14 = Instance.new("Frame")
  366. local FireRateBTN = Instance.new("TextButton")
  367. local Frame_15 = Instance.new("Frame")
  368. local LabelRate = Instance.new("TextLabel")
  369.  
  370. PFX.Name = "PFX"
  371. PFX.Parent = game.CoreGui
  372.  
  373. MainFrame.Name = "MainFrame"
  374. MainFrame.Parent = PFX
  375. MainFrame.Active = true
  376. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  377. MainFrame.BackgroundTransparency = 0.0099999997764826
  378. MainFrame.BorderColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  379. MainFrame.BorderSizePixel = 0
  380. MainFrame.Position = UDim2.new(0.148790941, 0, 0.384246916, 0)
  381. MainFrame.Selectable = true
  382. MainFrame.Size = UDim2.new(0, 435, 0, 325)
  383.  
  384. JustAPlate.Name = "JustAPlate"
  385. JustAPlate.Parent = MainFrame
  386. JustAPlate.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  387. JustAPlate.BorderColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  388. JustAPlate.BorderSizePixel = 0
  389. JustAPlate.Position = UDim2.new(0, 0, 0.0215384606, 0)
  390. JustAPlate.Size = UDim2.new(0, 435, 0, 32)
  391. JustAPlate.Font = Enum.Font.SourceSans
  392. JustAPlate.Text = ""
  393. JustAPlate.TextColor3 = Color3.new(1, 1, 1)
  394. JustAPlate.TextSize = 25
  395.  
  396. Version.Name = "Version"
  397. Version.Parent = JustAPlate
  398. Version.BackgroundColor3 = Color3.new(1, 1, 1)
  399. Version.BackgroundTransparency = 1
  400. Version.Position = UDim2.new(0.572413802, 0, 0.1875, 0)
  401. Version.Size = UDim2.new(0, 97, 0, 26)
  402. Version.Font = Enum.Font.SourceSans
  403. Version.Text = "v.1.7.b"
  404. Version.TextColor3 = Color3.new(1, 1, 1)
  405. Version.TextSize = 20
  406. Version.TextXAlignment = Enum.TextXAlignment.Left
  407.  
  408. SideTItle.Name = "SideTItle"
  409. SideTItle.Parent = JustAPlate
  410. SideTItle.BackgroundColor3 = Color3.new(1, 1, 1)
  411. SideTItle.BackgroundTransparency = 1
  412. SideTItle.Position = UDim2.new(0.0206896197, 0, -0.65625, 0)
  413. SideTItle.Size = UDim2.new(0, 131, 0, 80)
  414. SideTItle.Image = "rbxassetid://3632678994"
  415.  
  416. MainTitle.Name = "MainTitle"
  417. MainTitle.Parent = JustAPlate
  418. MainTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  419. MainTitle.BackgroundTransparency = 1
  420. MainTitle.Position = UDim2.new(0.190804526, 0, -1.34375, 0)
  421. MainTitle.Size = UDim2.new(0, 180, 0, 121)
  422. MainTitle.Image = "rbxassetid://3632679485"
  423.  
  424. Exit.Name = "Exit"
  425. Exit.Parent = JustAPlate
  426. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  427. Exit.BackgroundTransparency = 1
  428. Exit.Position = UDim2.new(0.912643671, 0, 0, 0)
  429. Exit.Size = UDim2.new(0, 38, 0, 32)
  430. Exit.Font = Enum.Font.SourceSans
  431. Exit.Text = "? "
  432. Exit.TextColor3 = Color3.new(0, 0, 0)
  433. Exit.TextSize = 14
  434.  
  435. Line1.Name = "Line1"
  436. Line1.Parent = MainFrame
  437. Line1.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  438. Line1.BackgroundTransparency = 0.20000000298023
  439. Line1.BorderSizePixel = 0
  440. Line1.Position = UDim2.new(-0.0183908045, 0, 0.0923076943, 0)
  441. Line1.Size = UDim2.new(0, 8, 0, 302)
  442.  
  443. Line2.Name = "Line2"
  444. Line2.Parent = MainFrame
  445. Line2.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  446. Line2.BackgroundTransparency = 0.20000000298023
  447. Line2.BorderSizePixel = 0
  448. Line2.Position = UDim2.new(0, 0, 1.00000012, 0)
  449. Line2.Size = UDim2.new(0, 423, 0, 7)
  450.  
  451. NoFallDamageBTN.Name = "NoFallDamageBTN"
  452. NoFallDamageBTN.Parent = MainFrame
  453. NoFallDamageBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  454. NoFallDamageBTN.BackgroundTransparency = 0.5
  455. NoFallDamageBTN.BorderSizePixel = 0
  456. NoFallDamageBTN.Position = UDim2.new(0.0620689653, 0, 0.144615382, 0)
  457. NoFallDamageBTN.Size = UDim2.new(0, 104, 0, 28)
  458. NoFallDamageBTN.Font = Enum.Font.SourceSans
  459. NoFallDamageBTN.Text = "No Fall Damage"
  460. NoFallDamageBTN.TextColor3 = Color3.new(1, 1, 1)
  461. NoFallDamageBTN.TextSize = 18
  462.  
  463. Frame.Parent = NoFallDamageBTN
  464. Frame.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  465. Frame.BorderSizePixel = 0
  466. Frame.Position = UDim2.new(0, 0, 0.928571701, 0)
  467. Frame.Size = UDim2.new(0, 104, 0, 2)
  468.  
  469. ToggleKey.Name = "ToggleKey"
  470. ToggleKey.Parent = MainFrame
  471. ToggleKey.BackgroundColor3 = Color3.new(1, 1, 1)
  472. ToggleKey.BackgroundTransparency = 1
  473. ToggleKey.Position = UDim2.new(0.751724124, 0, 0.916923285, 0)
  474. ToggleKey.Size = UDim2.new(0, 108, 0, 26)
  475. ToggleKey.Font = Enum.Font.SourceSans
  476. ToggleKey.Text = "Press 'p' to Toggle"
  477. ToggleKey.TextColor3 = Color3.new(1, 1, 1)
  478. ToggleKey.TextSize = 14
  479.  
  480. NoClipBTN.Name = "NoClipBTN"
  481. NoClipBTN.Parent = MainFrame
  482. NoClipBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  483. NoClipBTN.BackgroundTransparency = 0.5
  484. NoClipBTN.BorderSizePixel = 0
  485. NoClipBTN.Position = UDim2.new(0.358620673, 0, 0.141538516, 0)
  486. NoClipBTN.Size = UDim2.new(0, 104, 0, 28)
  487. NoClipBTN.Font = Enum.Font.SourceSans
  488. NoClipBTN.Text = "NoClip: OFF"
  489. NoClipBTN.TextColor3 = Color3.new(1, 1, 1)
  490. NoClipBTN.TextSize = 20
  491.  
  492. Frame_2.Parent = NoClipBTN
  493. Frame_2.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  494. Frame_2.BorderSizePixel = 0
  495. Frame_2.Position = UDim2.new(0, 0, 0.928571701, 0)
  496. Frame_2.Size = UDim2.new(0, 104, 0, 2)
  497.  
  498. InfJumpBTN.Name = "InfJumpBTN"
  499. InfJumpBTN.Parent = MainFrame
  500. InfJumpBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  501. InfJumpBTN.BackgroundTransparency = 0.5
  502. InfJumpBTN.BorderSizePixel = 0
  503. InfJumpBTN.Position = UDim2.new(0.358620673, 0, 0.279999971, 0)
  504. InfJumpBTN.Size = UDim2.new(0, 104, 0, 28)
  505. InfJumpBTN.Font = Enum.Font.SourceSans
  506. InfJumpBTN.Text = "Inf Jump"
  507. InfJumpBTN.TextColor3 = Color3.new(1, 1, 1)
  508. InfJumpBTN.TextSize = 20
  509.  
  510. Frame_3.Parent = InfJumpBTN
  511. Frame_3.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  512. Frame_3.BorderSizePixel = 0
  513. Frame_3.Position = UDim2.new(0, 0, 0.928571701, 0)
  514. Frame_3.Size = UDim2.new(0, 104, 0, 2)
  515.  
  516. breakWindowsBTN.Name = "breakWindowsBTN"
  517. breakWindowsBTN.Parent = MainFrame
  518. breakWindowsBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  519. breakWindowsBTN.BackgroundTransparency = 0.5
  520. breakWindowsBTN.BorderSizePixel = 0
  521. breakWindowsBTN.Position = UDim2.new(0.67126435, 0, 0.279999971, 0)
  522. breakWindowsBTN.Size = UDim2.new(0, 104, 0, 28)
  523. breakWindowsBTN.Font = Enum.Font.SourceSans
  524. breakWindowsBTN.Text = "Break Windows"
  525. breakWindowsBTN.TextColor3 = Color3.new(1, 1, 1)
  526. breakWindowsBTN.TextSize = 19
  527.  
  528. Frame_4.Parent = breakWindowsBTN
  529. Frame_4.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  530. Frame_4.BorderSizePixel = 0
  531. Frame_4.Position = UDim2.new(0, 0, 0.928571701, 0)
  532. Frame_4.Size = UDim2.new(0, 104, 0, 2)
  533.  
  534. ESPBTN.Name = "ESPBTN"
  535. ESPBTN.Parent = MainFrame
  536. ESPBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  537. ESPBTN.BackgroundTransparency = 0.5
  538. ESPBTN.BorderSizePixel = 0
  539. ESPBTN.Position = UDim2.new(0.0620689653, 0, 0.280000001, 0)
  540. ESPBTN.Size = UDim2.new(0, 104, 0, 28)
  541. ESPBTN.Font = Enum.Font.SourceSans
  542. ESPBTN.Text = "Esp: OFF"
  543. ESPBTN.TextColor3 = Color3.new(1, 1, 1)
  544. ESPBTN.TextSize = 20
  545.  
  546. Frame_5.Parent = ESPBTN
  547. Frame_5.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  548. Frame_5.BorderSizePixel = 0
  549. Frame_5.Position = UDim2.new(0, 0, 0.928571701, 0)
  550. Frame_5.Size = UDim2.new(0, 104, 0, 2)
  551.  
  552. InFagsBTN.Name = "InFagsBTN"
  553. InFagsBTN.Parent = MainFrame
  554. InFagsBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  555. InFagsBTN.BackgroundTransparency = 0.5
  556. InFagsBTN.BorderSizePixel = 0
  557. InFagsBTN.Position = UDim2.new(0.673563182, 0, 0.144615382, 0)
  558. InFagsBTN.Size = UDim2.new(0, 104, 0, 28)
  559. InFagsBTN.Font = Enum.Font.SourceSans
  560. InFagsBTN.Text = "Inf Frags(broken)"
  561. InFagsBTN.TextColor3 = Color3.new(1, 1, 1)
  562. InFagsBTN.TextSize = 17
  563.  
  564. Frame_6.Parent = InFagsBTN
  565. Frame_6.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  566. Frame_6.BorderSizePixel = 0
  567. Frame_6.Position = UDim2.new(0, 0, 0.928571701, 0)
  568. Frame_6.Size = UDim2.new(0, 104, 0, 2)
  569.  
  570. Credits.Name = "Credits"
  571. Credits.Parent = MainFrame
  572. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  573. Credits.BackgroundTransparency = 2
  574. Credits.Position = UDim2.new(0.0482758619, 0, 0.916923106, 0)
  575. Credits.Size = UDim2.new(0, 392, 0, 17)
  576. Credits.Font = Enum.Font.SourceSans
  577. Credits.Text = "Made by ThisW0ntGetBanned#0001"
  578. Credits.TextColor3 = Color3.new(1, 0.454902, 0.0941177)
  579. Credits.TextSize = 20
  580. Credits.TextXAlignment = Enum.TextXAlignment.Left
  581.  
  582. NoRecoilBTN.Name = "NoRecoilBTN"
  583. NoRecoilBTN.Parent = MainFrame
  584. NoRecoilBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  585. NoRecoilBTN.BackgroundTransparency = 0.5
  586. NoRecoilBTN.BorderSizePixel = 0
  587. NoRecoilBTN.Position = UDim2.new(0.0620689392, 0, 0.412307739, 0)
  588. NoRecoilBTN.Size = UDim2.new(0, 104, 0, 28)
  589. NoRecoilBTN.Font = Enum.Font.SourceSans
  590. NoRecoilBTN.Text = "No Recoil"
  591. NoRecoilBTN.TextColor3 = Color3.new(1, 1, 1)
  592. NoRecoilBTN.TextSize = 20
  593.  
  594. Frame_7.Parent = NoRecoilBTN
  595. Frame_7.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  596. Frame_7.BorderSizePixel = 0
  597. Frame_7.Position = UDim2.new(0, 0, 0.928571701, 0)
  598. Frame_7.Size = UDim2.new(0, 104, 0, 2)
  599.  
  600. NoFlashBTN.Name = "NoFlashBTN"
  601. NoFlashBTN.Parent = MainFrame
  602. NoFlashBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  603. NoFlashBTN.BackgroundTransparency = 0.5
  604. NoFlashBTN.BorderSizePixel = 0
  605. NoFlashBTN.Position = UDim2.new(0.0620689988, 0, 0.538461566, 0)
  606. NoFlashBTN.Size = UDim2.new(0, 104, 0, 28)
  607. NoFlashBTN.Font = Enum.Font.SourceSans
  608. NoFlashBTN.Text = "No Flash"
  609. NoFlashBTN.TextColor3 = Color3.new(1, 1, 1)
  610. NoFlashBTN.TextSize = 20
  611.  
  612. Frame_8.Parent = NoFlashBTN
  613. Frame_8.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  614. Frame_8.BorderSizePixel = 0
  615. Frame_8.Position = UDim2.new(0, 0, 0.928571701, 0)
  616. Frame_8.Size = UDim2.new(0, 104, 0, 2)
  617.  
  618. NoSwayBTN.Name = "NoSwayBTN"
  619. NoSwayBTN.Parent = MainFrame
  620. NoSwayBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  621. NoSwayBTN.BackgroundTransparency = 0.5
  622. NoSwayBTN.BorderSizePixel = 0
  623. NoSwayBTN.Position = UDim2.new(0.358620703, 0, 0.406153858, 0)
  624. NoSwayBTN.Size = UDim2.new(0, 104, 0, 28)
  625. NoSwayBTN.Font = Enum.Font.SourceSans
  626. NoSwayBTN.Text = "No Sway"
  627. NoSwayBTN.TextColor3 = Color3.new(1, 1, 1)
  628. NoSwayBTN.TextSize = 20
  629.  
  630. Frame_9.Parent = NoSwayBTN
  631. Frame_9.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  632. Frame_9.BorderSizePixel = 0
  633. Frame_9.Position = UDim2.new(0, 0, 0.928571701, 0)
  634. Frame_9.Size = UDim2.new(0, 104, 0, 2)
  635.  
  636. FullAutoBTN.Name = "FullAutoBTN"
  637. FullAutoBTN.Parent = MainFrame
  638. FullAutoBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  639. FullAutoBTN.BackgroundTransparency = 0.5
  640. FullAutoBTN.BorderSizePixel = 0
  641. FullAutoBTN.Position = UDim2.new(0.668965578, 0, 0.406153888, 0)
  642. FullAutoBTN.Size = UDim2.new(0, 104, 0, 28)
  643. FullAutoBTN.Font = Enum.Font.SourceSans
  644. FullAutoBTN.Text = "Full Auto"
  645. FullAutoBTN.TextColor3 = Color3.new(1, 1, 1)
  646. FullAutoBTN.TextSize = 20
  647.  
  648. Frame_10.Parent = FullAutoBTN
  649. Frame_10.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  650. Frame_10.BorderSizePixel = 0
  651. Frame_10.Position = UDim2.new(0, 0, 0.928571701, 0)
  652. Frame_10.Size = UDim2.new(0, 104, 0, 2)
  653.  
  654. InstaReloadBTN.Name = "InstaReloadBTN"
  655. InstaReloadBTN.Parent = MainFrame
  656. InstaReloadBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  657. InstaReloadBTN.BackgroundTransparency = 0.5
  658. InstaReloadBTN.BorderSizePixel = 0
  659. InstaReloadBTN.Position = UDim2.new(0.358620733, 0, 0.532307744, 0)
  660. InstaReloadBTN.Size = UDim2.new(0, 104, 0, 28)
  661. InstaReloadBTN.Font = Enum.Font.SourceSans
  662. InstaReloadBTN.Text = "Insta Reload"
  663. InstaReloadBTN.TextColor3 = Color3.new(1, 1, 1)
  664. InstaReloadBTN.TextSize = 20
  665.  
  666. Frame_11.Parent = InstaReloadBTN
  667. Frame_11.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  668. Frame_11.BorderSizePixel = 0
  669. Frame_11.Position = UDim2.new(0, 0, 0.928571701, 0)
  670. Frame_11.Size = UDim2.new(0, 104, 0, 2)
  671.  
  672. RapidFireBTN.Name = "RapidFireBTN"
  673. RapidFireBTN.Parent = MainFrame
  674. RapidFireBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  675. RapidFireBTN.BackgroundTransparency = 0.5
  676. RapidFireBTN.BorderSizePixel = 0
  677. RapidFireBTN.Position = UDim2.new(0.668965578, 0, 0.538461566, 0)
  678. RapidFireBTN.Size = UDim2.new(0, 104, 0, 28)
  679. RapidFireBTN.Font = Enum.Font.SourceSans
  680. RapidFireBTN.Text = "Rapid Fire"
  681. RapidFireBTN.TextColor3 = Color3.new(1, 1, 1)
  682. RapidFireBTN.TextSize = 20
  683.  
  684. Frame_12.Parent = RapidFireBTN
  685. Frame_12.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  686. Frame_12.BorderSizePixel = 0
  687. Frame_12.Position = UDim2.new(0, 0, 0.928571701, 0)
  688. Frame_12.Size = UDim2.new(0, 104, 0, 2)
  689.  
  690. GunModBTN.Name = "GunModBTN"
  691. GunModBTN.Parent = MainFrame
  692. GunModBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  693. GunModBTN.BackgroundTransparency = 0.5
  694. GunModBTN.BorderSizePixel = 0
  695. GunModBTN.Position = UDim2.new(0.059770178, 0, 0.65538466, 0)
  696. GunModBTN.Size = UDim2.new(0, 104, 0, 28)
  697. GunModBTN.Font = Enum.Font.SourceSans
  698. GunModBTN.Text = "Gun Mods(All)"
  699. GunModBTN.TextColor3 = Color3.new(1, 1, 1)
  700. GunModBTN.TextSize = 20
  701.  
  702. Frame_13.Parent = GunModBTN
  703. Frame_13.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  704. Frame_13.BorderSizePixel = 0
  705. Frame_13.Position = UDim2.new(0, 0, 0.928571701, 0)
  706. Frame_13.Size = UDim2.new(0, 104, 0, 2)
  707.  
  708. DiscordInfo.Name = "DiscordInfo"
  709. DiscordInfo.Parent = MainFrame
  710. DiscordInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  711. DiscordInfo.BackgroundTransparency = 2
  712. DiscordInfo.Position = UDim2.new(0.0482758619, 0, 0.76000011, 0)
  713. DiscordInfo.Size = UDim2.new(0, 392, 0, 17)
  714. DiscordInfo.Font = Enum.Font.SourceSans
  715. DiscordInfo.Text = "Discord : "
  716. DiscordInfo.TextColor3 = Color3.new(0.156863, 0.211765, 0.713726)
  717. DiscordInfo.TextSize = 20
  718. DiscordInfo.TextXAlignment = Enum.TextXAlignment.Left
  719.  
  720. UpdateInfo.Name = "UpdateInfo"
  721. UpdateInfo.Parent = MainFrame
  722. UpdateInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  723. UpdateInfo.BackgroundTransparency = 2
  724. UpdateInfo.Position = UDim2.new(0.0482758619, 0, 0.812307775, 0)
  725. UpdateInfo.Size = UDim2.new(0, 392, 0, 17)
  726. UpdateInfo.Font = Enum.Font.SourceSans
  727. UpdateInfo.Text = "Last Updated : "
  728. UpdateInfo.TextColor3 = Color3.new(0.333333, 1, 0)
  729. UpdateInfo.TextSize = 20
  730. UpdateInfo.TextXAlignment = Enum.TextXAlignment.Left
  731.  
  732. Status.Name = "Status"
  733. Status.Parent = MainFrame
  734. Status.BackgroundColor3 = Color3.new(1, 1, 1)
  735. Status.BackgroundTransparency = 2
  736. Status.Position = UDim2.new(0.0482758619, 0, 0.86461544, 0)
  737. Status.Size = UDim2.new(0, 392, 0, 17)
  738. Status.Font = Enum.Font.SourceSans
  739. Status.Text = "Functionality Status : NIL"
  740. Status.TextColor3 = Color3.new(1, 0.141176, 0.0666667)
  741. Status.TextSize = 20
  742. Status.TextXAlignment = Enum.TextXAlignment.Left
  743.  
  744. FireRateTXT.Name = "FireRateTXT"
  745. FireRateTXT.Parent = MainFrame
  746. FireRateTXT.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  747. FireRateTXT.BorderSizePixel = 0
  748. FireRateTXT.Position = UDim2.new(0.668965638, 0, 0.6553846, 0)
  749. FireRateTXT.Size = UDim2.new(0, 104, 0, 28)
  750. FireRateTXT.Font = Enum.Font.SourceSans
  751. FireRateTXT.Text = "Value"
  752. FireRateTXT.TextColor3 = Color3.new(1, 1, 1)
  753. FireRateTXT.TextSize = 14
  754.  
  755. Frame_14.Parent = FireRateTXT
  756. Frame_14.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  757. Frame_14.BorderSizePixel = 0
  758. Frame_14.Position = UDim2.new(0, 0, 0.928571701, 0)
  759. Frame_14.Size = UDim2.new(0, 104, 0, 2)
  760.  
  761. FireRateBTN.Name = "FireRateBTN"
  762. FireRateBTN.Parent = MainFrame
  763. FireRateBTN.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  764. FireRateBTN.BackgroundTransparency = 0.5
  765. FireRateBTN.BorderSizePixel = 0
  766. FireRateBTN.Position = UDim2.new(0.356321901, 0, 0.65538466, 0)
  767. FireRateBTN.Size = UDim2.new(0, 104, 0, 28)
  768. FireRateBTN.Font = Enum.Font.SourceSans
  769. FireRateBTN.Text = "Fire Rate"
  770. FireRateBTN.TextColor3 = Color3.new(1, 1, 1)
  771. FireRateBTN.TextSize = 20
  772.  
  773. Frame_15.Parent = FireRateBTN
  774. Frame_15.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  775. Frame_15.BorderSizePixel = 0
  776. Frame_15.Position = UDim2.new(0, 0, 0.928571701, 0)
  777. Frame_15.Size = UDim2.new(0, 104, 0, 2)
  778.  
  779. LabelRate.Name = "LabelRate"
  780. LabelRate.Parent = MainFrame
  781. LabelRate.BackgroundColor3 = Color3.new(1, 1, 1)
  782. LabelRate.BackgroundTransparency = 1
  783. LabelRate.Position = UDim2.new(0.673563063, 0, 0.741538465, 0)
  784. LabelRate.Size = UDim2.new(0, 104, 0, 16)
  785. LabelRate.Font = Enum.Font.SourceSans
  786. LabelRate.Text = "Fire Rate Value"
  787. LabelRate.TextColor3 = Color3.new(1, 1, 1)
  788. LabelRate.TextSize = 14
  789.  
  790. UpdateInfo.Text = 'Last Updated : '..tostring(Updated)
  791. DiscordInfo.Text = 'Discord : '..DiscordLink
  792.  
  793. if Client then
  794. Status.Text = 'Functionality Status : '..GoodStat
  795. end
  796.  
  797. if not Client then
  798. Status.Text = 'Functionality Status : '..MainFrameFail
  799. end
  800.  
  801. if not Client and not Network then
  802. Status.Text = 'Functionality Status : '..Failure
  803. end
  804.  
  805. MainFrame.Draggable = true
  806.  
  807. Exit.MouseButton1Click:connect(function()
  808. if game:GetService('CoreGui'):FindFirstChild('PFX') then
  809. game:GetService('CoreGui').PFX:Destroy()
  810. end
  811. end)
  812.  
  813. --[[SpotAllBTN.MouseButton1Click:connect(function()
  814. settings.SpotAll = not settings.SpotAll
  815. if settings.SpotAll then
  816. for i, v in next, PlayerData() do
  817. Funcs.spotplayer(v)
  818. end
  819. end
  820. end)]]
  821.  
  822. NoFallDamageBTN.MouseButton1Click:connect(function()
  823. settings.FallDamage = not settings.FallDamage
  824. if settings.FallDamage then
  825. end
  826. end)
  827.  
  828. NoClipBTN.MouseButton1Click:connect(function()
  829. if NoClipBTN.Text == "NoClip: OFF" then
  830. settings.NoClip = true
  831. NoClipBTN.Text = "NoClip: ON"
  832. NoClipBTN.TextColor3 = Color3.new(0,185,0)
  833. Stepped = game:GetService("RunService").Stepped:Connect(function()
  834. if not settings.NoClip == false then
  835. for a, b in pairs(Workspace:GetChildren()) do
  836. if b.Name == client.Name then
  837. for i, v in pairs(Workspace[client.Name]:GetChildren()) do
  838. if v:IsA("BasePart") then
  839. v.CanCollide = false
  840. end
  841. end
  842. end
  843. end
  844. else
  845. Stepped:Disconnect()
  846. end
  847. end)
  848. elseif NoClipBTN.Text == "NoClip: ON" then
  849. settings.NoClip = false
  850. NoClipBTN.Text = "NoClip: OFF"
  851. NoClipBTN.TextColor3 = Color3.new(170,0,0)
  852. end
  853. end)
  854.  
  855. --[[InfCredsBTN.MouseButton1Click:connect(function()
  856. settings.InfCreds = not settings.InfCreds
  857. if settings.InfCreds then
  858. end
  859. end)]]
  860.  
  861. InfJumpBTN.MouseButton1Click:connect(function()
  862. settings.InfJump = not settings.InfJump
  863. if settings.InfJump then
  864. InfJumpers()
  865. end
  866. end)
  867.  
  868. breakWindowsBTN.MouseButton1Click:connect(function()
  869. settings.BreakWindows = not settings.BreakWindows
  870. if settings.BreakWindows then
  871. BreakWindex()
  872. end
  873. end)
  874.  
  875. ESPBTN.MouseButton1Click:connect(function()
  876. settings.Esp = not settings.Esp
  877. if settings.Esp then
  878. ESPBTN.Text = "Esp: ON"
  879. ESPBTN.TextColor3 = Color3.new(0,185,0)
  880. for _,p in pairs(game:GetChildren()) do
  881. if p.ClassName == ("Players") then
  882. plrs = p
  883. end
  884. end
  885.  
  886. while true do
  887. wait(0.1)
  888. for _, v in pairs(plrs:GetChildren()) do
  889. if v.TeamColor ~= plrs.LocalPlayer.TeamColor and not v.Character.Head:FindFirstChild("BillboardGui") then
  890. i = Instance.new("BillboardGui",v.Character.Head)
  891. i.Active = true
  892. i.AlwaysOnTop = true
  893. i.Size = UDim2.new(1,0,1,0)
  894. h = Instance.new("Frame",i)
  895. h.Size = UDim2.new(2,0,1,0)
  896. h.AnchorPoint = Vector2.new(0.25, 0)
  897. h.BackgroundColor3 = Color3.new(1,0,0)
  898. h.BorderSizePixel = 0
  899. h.BackgroundTransparency = 0.4
  900.  
  901. i2 = Instance.new("BillboardGui",v.Character.Torso)
  902. i2.Active = true
  903. i2.AlwaysOnTop = true
  904. i2.Size = UDim2.new(2,0,2,0)
  905. t = Instance.new("Frame",i2)
  906. t.Size = UDim2.new(1,0,1,0)
  907. t.AnchorPoint = Vector2.new(0, 0)
  908. t.BackgroundColor3 = Color3.new(0,1,0)
  909. t.BorderSizePixel = 0
  910. t.BackgroundTransparency = 0.4
  911.  
  912. i3 = Instance.new("BillboardGui",v.Character["Left Arm"])
  913. i3.Active = true
  914. i3.AlwaysOnTop = true
  915. i3.Size = UDim2.new(1,0,2,0)
  916. la = Instance.new("Frame",i3)
  917. la.Size = UDim2.new(1,0,1,0)
  918. la.AnchorPoint = Vector2.new(0, 0)
  919. la.BackgroundColor3 = Color3.new(0,0,1)
  920. la.BorderSizePixel = 0
  921. la.BackgroundTransparency = 0.4
  922.  
  923. i4 = Instance.new("BillboardGui",v.Character["Right Arm"])
  924. i4.Active = true
  925. i4.AlwaysOnTop = true
  926. i4.Size = UDim2.new(1,0,2,0)
  927. ra = Instance.new("Frame",i4)
  928. ra.Size = UDim2.new(1,0,1,0)
  929. ra.AnchorPoint = Vector2.new(0, 0)
  930. ra.BackgroundColor3 = Color3.new(0,0,1)
  931. ra.BorderSizePixel = 0
  932. ra.BackgroundTransparency = 0.4
  933.  
  934. i5 = Instance.new("BillboardGui",v.Character["Left Leg"])
  935. i5.Active = true
  936. i5.AlwaysOnTop = true
  937. i5.Size = UDim2.new(1,0,2,0)
  938. ll = Instance.new("Frame",i5)
  939. ll.Size = UDim2.new(1,0,1,0)
  940. ll.AnchorPoint = Vector2.new(0, 0)
  941. ll.BackgroundColor3 = Color3.new(0,0,1)
  942. ll.BorderSizePixel = 0
  943. ll.BackgroundTransparency = 0.4
  944.  
  945. i6 = Instance.new("BillboardGui",v.Character["Right Leg"])
  946. i6.Active = true
  947. i6.AlwaysOnTop = true
  948. i6.Size = UDim2.new(1,0,2,0)
  949. rl = Instance.new("Frame",i6)
  950. rl.Size = UDim2.new(1,0,1,0)
  951. rl.AnchorPoint = Vector2.new(0, 0)
  952. rl.BackgroundColor3 = Color3.new(0,0,1)
  953. rl.BorderSizePixel = 0
  954. rl.BackgroundTransparency = 0.4
  955. end
  956. end
  957. end
  958. else
  959. ESPBTN.Text = "Esp: OFF"
  960. ESPBTN.TextColor3 = Color3.new(170,0,0)
  961. for i, v in next, game.Players:GetChildren() do--Could be very BUGGY
  962. v.Character.Head:FindFirstChild("BillboardGui"):Remove()
  963. v.Character.Torso:FindFirstChild("BillboardGui"):Remove()
  964. v.Character["Left Arm"]:FindFirstChild("BillboardGui"):Remove()
  965. v.Character["Right Arm"]:FindFirstChild("BillboardGui"):Remove()
  966. v.Character["Right Leg"]:FindFirstChild("BillboardGui"):Remove()
  967. v.Character["Left Leg"]:FindFirstChild("BillboardGui"):Remove()
  968. end
  969. end
  970. end)
  971.  
  972. InFagsBTN.MouseButton1Click:connect(function()
  973. settings.InfFrags = not settings.InfFrags
  974. if settings.InfFrags then
  975. end
  976. end)
  977.  
  978. NoFlashBTN.MouseButton1Click:connect(function()
  979. settings.NoFlash = not settings.NoFlash
  980. if settings.NoFlash then
  981. end
  982. end)
  983.  
  984. NoSwayBTN.MouseButton1Click:connect(function()
  985. settings.NoSway = not settings.NoSway
  986. if settings.NoSway then
  987. end
  988. end)
  989.  
  990. FireRateBTN.MouseButton1Click:connect(function()
  991. settings.FireRate = not settings.FireRate
  992. if settings.FireRate then
  993. end
  994. end)
  995.  
  996. GunModBTN.MouseButton1Click:connect(function()
  997. settings.GunMods = not settings.GunMods
  998. if settings.GunMods then
  999. end
  1000. end)
  1001.  
  1002. InstaReloadBTN.MouseButton1Click:connect(function()
  1003. settings.InstaReload = not settings.InstaReload
  1004. if settings.InstaReload then
  1005. end
  1006. end)
  1007.  
  1008. RapidFireBTN.MouseButton1Click:connect(function()
  1009. settings.RapidFire = not settings.RapidFire
  1010. if settings.RapidFire then
  1011. end
  1012. end)
  1013.  
  1014. FullAutoBTN.MouseButton1Click:connect(function()
  1015. settings.FullAutox = not settings.FullAutox
  1016. if settings.FullAutox then
  1017. end
  1018. end)
  1019.  
  1020. NoRecoilBTN.MouseButton1Click:connect(function()
  1021. settings.NoRecoil = not settings.NoRecoil
  1022. if settings.NoRecoil then
  1023. end
  1024. end)
  1025.  
  1026. game:GetService("UserInputService").InputBegan:Connect(function(key,ischat)
  1027. if ischat then return end
  1028. if key.KeyCode == Enum.KeyCode.P then
  1029. MainFrame.Visible = not MainFrame.Visible
  1030. end
  1031. end)
  1032.  
  1033. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  1034.  
  1035. local counter1 = 1
  1036.  
  1037. while wait() do
  1038. MainTitle.ImageColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  1039. SideTItle.ImageColor3 = Color3.fromHSV(zigzag(counter1),1,1)
  1040. counter1 = counter1 + 0.01
  1041. end
  1042. end
  1043. CreateUI()
  1044. end
  1045. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement