Advertisement
eodejmocmocm

Tps script by ok

Mar 1st, 2024 (edited)
737
3
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 157.60 KB | None | 3 0
  1. --// ANTI-KICK
  2. local mt = getrawmetatable(game)
  3. local ncallsa = mt.__namecall
  4. setreadonly(mt, false)
  5. mt.__namecall = newcclosure(function(...)
  6. local args = {...}
  7. if not checkcaller() and getnamecallmethod() == "Kick" then
  8. return nil
  9. end
  10. return ncallsa(...)
  11. end)
  12. setreadonly(mt, true)
  13. --//
  14.  
  15. --// ANTI-BAN
  16. local mmt = getrawmetatable(game)
  17.  
  18. local oldnamecall = mmt.__namecall
  19.  
  20. setreadonly(mmt, false)
  21.  
  22. mmt.__namecall = newcclosure(function(self, ...)
  23. local method = tostring(getnamecallmethod())
  24. local Args = {...}
  25. if not checkcaller() and method == "FireServer" and tostring(self) == "Banned" then
  26. return nil
  27. end
  28.  
  29. return oldnamecall(self, ...)
  30. end)
  31.  
  32. setreadonly(mmt, true)
  33.  
  34. local gmt = getrawmetatable(game);
  35. setreadonly(gmt, false);
  36. local old_index = gmt.__index;
  37. gmt.__index = function(a, b)
  38. if tostring(a) == "BannedA" or tostring(a) == "BannedB" or tostring(a) == "BannedC" or tostring(a) == "BannedD" then
  39. if tostring(b) == "Value" then
  40. return false;
  41. end
  42. end
  43. return old_index(a, b);
  44. end
  45.  
  46. local bgmt = getrawmetatable(game);
  47. setreadonly(bgmt, false);
  48. local bold_index = bgmt.__index;
  49. bgmt.__index = function(a, b)
  50. if tostring(a) == "BCount" then
  51. if tostring(b) == "Value" then
  52. return 0;
  53. end
  54. end
  55. return bold_index(a, b);
  56. end
  57.  
  58. for i,BN in pairs(game:GetService("Workspace").FE.Settings:GetChildren()) do
  59. if BN.Name == "BName" then
  60. BN:Destroy()
  61. end
  62. end
  63. --//
  64.  
  65. --// ANTI-WALKSPEED AND ANTI-JUMPPOWER
  66. for i,b in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  67. if b.Name == " " then
  68. b:Destroy()
  69. end
  70. end
  71.  
  72. for i,lc2 in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  73. if lc2:IsA("LocalScript") and string.match(lc2.Name, "1") or string.match(lc2.Name, "2") or string.match(lc2.Name, "3") or string.match(lc2.Name, "4") or string.match(lc2.Name, "5") or string.match(lc2.Name, "6") or string.match(lc2.Name, "7") or string.match(lc2.Name, "8") or string.match(lc2.Name, "9") then
  74. lc2:Destroy()
  75. end
  76. end
  77.  
  78. for i,lc in pairs(game.Players.LocalPlayer.PlayerGui.Start:GetChildren()) do
  79. if lc:IsA("LocalScript") and string.match(lc.Name, "1") or string.match(lc.Name, "2") or string.match(lc.Name, "3") or string.match(lc.Name, "4") or string.match(lc.Name, "5") or string.match(lc.Name, "6") or string.match(lc.Name, "7") or string.match(lc.Name, "8") or string.match(lc.Name, "9") then
  80. lc:Destroy()
  81. end
  82. end
  83.  
  84. for i,c in pairs(game.Players.LocalPlayer.PlayerGui.Start:GetChildren()) do
  85. if c.Name == "CheckPlayerW" then
  86. c:Destroy()
  87. end
  88. end
  89.  
  90. for i,z in pairs(game.StarterGui.Start:GetChildren()) do
  91. if z.Name == "CheckPlayerW" then
  92. z:Destroy()
  93. end
  94. end
  95.  
  96. for _, v in pairs(game.StarterPlayer.StarterCharacterScripts:GetDescendants()) do
  97. if v.Name == " " then
  98. v:Destroy()
  99. end
  100. end
  101.  
  102. game.Players.LocalPlayer.CharacterAdded:Connect(function()
  103. wait(0.5)
  104. for i,char in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  105. if char.Name == " " then
  106. char:Destroy()
  107. end
  108. end
  109. end)
  110. --//
  111.  
  112. --// ANTI-LAG (REMOVES LAG FROM GUI)
  113. for i,nolag in pairs(game.StarterGui.Start:GetChildren()) do
  114. if nolag.Name == "Gradient" then
  115. nolag:Destroy()
  116. end
  117. end
  118. for i,nolaglp in pairs(game.Players.LocalPlayer.PlayerGui.Start:GetChildren()) do
  119. if nolaglp.Name == "Gradient" then
  120. nolaglp:Destroy()
  121. end
  122. end
  123. --//
  124.  
  125. --// FUNCTIONS, VARIABLES AND SCRIPTS //--
  126. function GetPlayer(String)
  127. local Foundplr = {}
  128. local strl = String:lower()
  129. if strl == "all" then
  130. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  131. table.insert(Foundplr,v)
  132. end
  133. elseif strl == "others" then
  134. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  135. if v.Name ~= game.Players.LocalPlayer.Name then
  136. table.insert(Foundplr,v)
  137. end
  138. end
  139. elseif strl == "me" then
  140. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  141. if v.Name == game.Players.LocalPlayer.Name then
  142. table.insert(Foundplr,v)
  143. end
  144. end
  145. else
  146. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  147. if v.DisplayName:lower():sub(1, #String) == String:lower() or v.Name:lower():sub(1, #String) == String:lower() then
  148. table.insert(Foundplr,v)
  149. end
  150. end
  151. end
  152. return Foundplr
  153. end
  154.  
  155. local RS
  156. local LeftLeg
  157. local RightLeg
  158. local LeftFoot
  159. local RightFoot
  160. local Distance = 0
  161. local DistanceTackle = 0
  162. local DistanceReach = 0
  163. local DistancePass = 0
  164. local DistanceWalk = 0
  165. local DistanceSide = 0
  166. local DistanceJump = 0
  167. local SaveDelay = 0
  168. local Heartbeat
  169. local HumanoidDied
  170. local TouchedBallLoop
  171. local RunStepped2
  172. local RunStepBall
  173. local AddBallA
  174. local TouchedGKBallBox
  175.  
  176. local Player = game.Players.LocalPlayer
  177. local RootPart = Player.Character.HumanoidRootPart
  178.  
  179. local library = loadstring(game:HttpGet('https://raw.githubusercontent.com/IsaacDaDev/VanisUILIB/main/Vanis.lua'))()
  180.  
  181. local Window = library:CreateWindow("chadpou TPS UI", "Made by chadpou", 10044538000)
  182.  
  183. local Tab = Window:CreateTab("Scripts")
  184.  
  185. local GKPage = Tab:CreateFrame("Goalkeeper")
  186. local SPage = Tab:CreateFrame("Striker")
  187. local MPage = Tab:CreateFrame("Miscellaneous")
  188. local LPPage = Tab:CreateFrame("LocalPlayer")
  189. local PPage = Tab:CreateFrame("Players")
  190. local KPage = Tab:CreateFrame("Kicks")
  191. local PWRPage = Tab:CreateFrame("Powers")
  192. local BPage = Tab:CreateFrame("Ball")
  193. local MRPage = Tab:CreateFrame("Mobile Reach")
  194. local TPPage = Tab:CreateFrame("Teleports")
  195. local CPage = Tab:CreateFrame("Celebrations")
  196. local VPage = Tab:CreateFrame("Visuals")
  197.  
  198. GKPage:CreateLabel("Miscellaneous")
  199.  
  200. GKPage:CreateToggle("Allow Save Everywhere", "Allows You Save On The Field", function(arg)
  201. if arg then
  202. for i,v in pairs(game.Workspace.GKSystem:GetChildren()) do
  203. if v.Name == "Fix" then
  204. v.CanTouch = false
  205. end
  206. end
  207. else
  208. for i,v in pairs(game.Workspace.GKSystem:GetChildren()) do
  209. if v.Name == "Fix" then
  210. v.CanTouch = true
  211. end
  212. end
  213. end
  214. end)
  215.  
  216. GKPage:CreateToggle("Auto Save [Touched Method]", "Auto Save The Ball [Touched Method]", function(arg)
  217. if arg then
  218. TouchedGKBallBox = game.Workspace.TPSSystem.TPS.Touched:Connect(function(HRP)
  219. if HRP == game.Players.LocalPlayer.Character.HumanoidRootPart then
  220. for i,v in pairs(game.Workspace:GetDescendants()) do
  221. if v.Name == "TPS" and v:IsA("Part") then
  222. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  223. AnimationId = "304581045"
  224. local Anim = Instance.new("Animation")
  225. Anim.AnimationId = "rbxassetid://"..AnimationId
  226. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  227. k:Play()
  228. wait(SaveDelay)
  229.  
  230. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  231. local A_2 = game.Players.LocalPlayer.Character["Right Leg"]
  232. local Event = game:GetService("Workspace").FE.Actions.SaveRL
  233. Event:FireServer(A_1, A_2)
  234.  
  235. local Events2 = game:GetService("Workspace").FE.Kick.RemoteEvent2
  236. Events2:FireServer()
  237. else
  238. AnimationId = "3008336125"
  239. local Anim = Instance.new("Animation")
  240. Anim.AnimationId = "rbxassetid://"..AnimationId
  241. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  242. k:Play()
  243. wait(SaveDelay)
  244.  
  245. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  246. local A_2 = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  247. local Event = game:GetService("Workspace").FE.Actions.SaveT
  248. Event:FireServer(A_1, A_2)
  249.  
  250. local Events3 = game:GetService("Workspace").FE.Kick.RemoteEvent2
  251. Events3:FireServer()
  252. end
  253. end
  254. end
  255. end
  256. end)
  257. else
  258. TouchedGKBallBox:Disconnect()
  259. end
  260. end)
  261.  
  262. GKPage:CreateToggle("Auto Save [RemoteEvent Method]", "Auto Save The Ball [RemoteEvent Method]", function(arg)
  263. if arg then
  264. _G.GKS = true
  265. while _G.GKS do
  266. wait()
  267. for i,v in pairs(game.Workspace:GetDescendants()) do
  268. if v.Name == "TPS" and v:IsA("Part") then
  269. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= Distance then
  270. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  271. AnimationId = "304581045"
  272. local Anim = Instance.new("Animation")
  273. Anim.AnimationId = "rbxassetid://"..AnimationId
  274. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  275. k:Play()
  276. wait(SaveDelay)
  277.  
  278. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  279. local A_2 = game.Players.LocalPlayer.Character["Right Leg"]
  280. local Event = game:GetService("Workspace").FE.Actions.SaveRL
  281. Event:FireServer(A_1, A_2)
  282.  
  283. local Events2 = game:GetService("Workspace").FE.Kick.RemoteEvent2
  284. Events2:FireServer()
  285. else
  286. AnimationId = "3008336125"
  287. local Anim = Instance.new("Animation")
  288. Anim.AnimationId = "rbxassetid://"..AnimationId
  289. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  290. k:Play()
  291. wait(SaveDelay)
  292.  
  293. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  294. local A_2 = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  295. local Event = game:GetService("Workspace").FE.Actions.SaveT
  296. Event:FireServer(A_1, A_2)
  297.  
  298. local Events3 = game:GetService("Workspace").FE.Kick.RemoteEvent2
  299. Events3:FireServer()
  300. end
  301. end
  302. end
  303. end
  304. end
  305. else
  306. if _G.GKS == true then
  307. _G.GKS = false
  308. else
  309. _G.GKS = true
  310. end
  311. end
  312. end)
  313.  
  314. GKPage:CreateToggle("Auto Jump", "Auto Jump For The Ball", function(arg)
  315. if arg then
  316. _G.JUMP = true
  317. while _G.JUMP do
  318. wait()
  319.  
  320. for i,v in pairs(game.Workspace:GetDescendants()) do
  321. if v.Name == "TPS" and v:IsA("Part") then
  322. local a = Vector3.new(0, v.Position.Y, 0)
  323. local b = Vector3.new(0, game.Players.LocalPlayer.Character.Head.Position.Y, 0)
  324. if (a - b).Magnitude >= 5 then
  325. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= DistanceJump then
  326. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  327. end
  328. end
  329. end
  330. end
  331. end
  332. else
  333. if _G.JUMP == true then
  334. _G.JUMP = false
  335. else
  336. _G.JUMP = true
  337. end
  338. end
  339. end)
  340.  
  341. GKPage:CreateToggle("Auto Walk Sideways [WalkToPoint Method]", "Auto Walk Sideways In Net When The Ball Is Near", function(arg)
  342. if arg then
  343. _G.SIDEW = true
  344. while _G.SIDEW do
  345. wait(0.8)
  346. for i,v in pairs(game.Workspace:GetDescendants()) do
  347. if v.Name == "TPS" and v:IsA("Part") then
  348. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= DistanceSide then
  349. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright red") then
  350. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(9.488, 13.3, -126.9)
  351. wait(0.8)
  352. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(-9.697, 13.3, -126.49)
  353. else
  354. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(-8.878, 13.3, 129.295)
  355. wait(0.8)
  356. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(9.07, 13.3, 129.73)
  357. end
  358. end
  359. end
  360. end
  361. end
  362. else
  363. if _G.SIDEW == true then
  364. _G.SIDEW = false
  365. else
  366. _G.SIDEW = true
  367. end
  368. end
  369. end)
  370.  
  371. GKPage:CreateToggle("Auto Walk Sideways [MoveTo Method]", "Auto Walk Sideways In Net When The Ball Is Near", function(arg)
  372. if arg then
  373. _G.SIDEM = true
  374. while _G.SIDEM do
  375. wait(0.8)
  376. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= DistanceSide then
  377. game.Players.LocalPlayer.Character.Humanoid:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(game.Workspace.TPSSystem.TPS.Position.X, 0, 0))
  378. wait(0.8)
  379. game.Players.LocalPlayer.Character.Humanoid:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(-game.Workspace.TPSSystem.TPS.Position.X, 0, 0))
  380. end
  381. end
  382. else
  383. if _G.SIDEM == true then
  384. _G.SIDEM = false
  385. else
  386. _G.SIDEM = true
  387. end
  388. end
  389. end)
  390.  
  391. local PartRedTouched
  392. local PartBlueTouched
  393.  
  394. GKPage:CreateToggle("Auto Look At The Ball", "Auto Look At The Ball When In The Box. Switched Teams = Untoggle", function(arg)
  395. if arg then
  396. local PartB = game:GetService("Workspace").GKSystem.Fix2
  397. local PartR = game:GetService("Workspace").GKSystem.Fix1
  398.  
  399. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright blue") then
  400. PartBlueTouched = PartB.Touched:Connect(function()
  401. local touching = PartB:GetTouchingParts()
  402. for i=1,#touching do
  403. if touching[i] == game.Players.LocalPlayer.Character.HumanoidRootPart then
  404. repeat wait()
  405. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude > 6 then
  406. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  407. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position,game.Workspace.TPSSystem.TPS.Position)
  408. end
  409.  
  410. until (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= 4.5
  411. end
  412. end
  413. end)
  414. else
  415. PartRedTouched = PartR.Touched:Connect(function()
  416. local touching = PartR:GetTouchingParts()
  417. for i=1,#touching do
  418. if touching[i] == game.Players.LocalPlayer.Character.HumanoidRootPart then
  419. repeat wait()
  420. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude > 6 then
  421. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  422. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position,game.Workspace.TPSSystem.TPS.Position)
  423. end
  424.  
  425. until (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= 4.5
  426. end
  427. end
  428. end)
  429. end
  430. else
  431. PartRedTouched:Disconnect()
  432. PartBlueTouched:Disconnect()
  433. wait(1)
  434. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = false
  435. end
  436. end)
  437.  
  438. GKPage:CreateToggle("Auto Return", "Auto Return To Team Goal When You Died.", function(arg)
  439. if arg then
  440. HumanoidDied = game.Players.LocalPlayer.CharacterAdded:Connect(function()
  441. wait(0.5)
  442. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright red") then
  443. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(-2.114, 13.3, -118.341)
  444. else
  445. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(0.512, 13.3, 122.121)
  446. end
  447. end)
  448. else
  449. HumanoidDied:Disconnect()
  450. end
  451. end)
  452.  
  453. GKPage:CreateLabel("Configurations")
  454.  
  455. GKPage:CreateBox("Auto Save Delay", 10044538000, function(arg)
  456. SaveDelay = tonumber(arg)
  457. end)
  458.  
  459. GKPage:CreateSlider("Auto Save Distance", 0, 10,function(arg)
  460. Distance = arg
  461. end)
  462.  
  463. GKPage:CreateSlider("Auto Jump Distance", 0, 50,function(arg)
  464. DistanceJump = arg
  465. end)
  466.  
  467. GKPage:CreateSlider("Auto Walk Sideways Distance", 0, 300,function(arg)
  468. DistanceSide = arg
  469. end)
  470.  
  471. SPage:CreateLabel("Miscellaneous")
  472.  
  473. SPage:CreateToggle("Auto Goal [Autofarm]", "Auto Goal [Autofarn]. Use At Your Own Risk", function(arg)
  474. if arg then
  475. _G.AUTOFARM = true
  476. while _G.AUTOFARM do
  477. wait()
  478. local HRPRotation = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Rotation
  479. local GoalPST = game.Workspace.TPSSystem.TPS.CFrame
  480. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = HRPRotation + GoalPST.Position
  481. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  482. local A_2 = game:GetService("Players").LocalPlayer.Character.Head
  483. local Event = game:GetService("Workspace").FE.Actions.Tackle
  484. Event:FireServer(A_1, A_2)
  485.  
  486. local Events2 = game:GetService("Workspace").FE.Kick.RemoteEvent2
  487. Events2:FireServer()
  488. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright red") then
  489. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  490. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position + Vector3.new(0, 45, 0),game.Workspace.BlueGoal.Part.Position)
  491. end
  492. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright blue") then
  493. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  494. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position + Vector3.new(0, 45, 0),game.Workspace.RedGoal.Part.Position)
  495. end
  496. end
  497. else
  498. _G.AUTOFARM = false
  499. wait(1)
  500. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Lines.Line12.CFrame
  501. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = false
  502. end
  503. end)
  504.  
  505. SPage:CreateToggle("Allow Kick GK Box", "Allows You Shoot From Goalkeeper's Goal Box", function(arg)
  506. if arg then
  507. game:GetService("Workspace").GKSystem.Fix1.CanTouch = false
  508. game:GetService("Workspace").GKSystem.Fix2.CanTouch = false
  509. else
  510. game:GetService("Workspace").GKSystem.Fix1.CanTouch = true
  511. game:GetService("Workspace").GKSystem.Fix2.CanTouch = true
  512. end
  513. end)
  514.  
  515. SPage:CreateToggle("Auto Shoot", "Auto Shoot The Ball When You Are Near", function(arg)
  516. if arg then
  517. _G.MOD = true
  518. while _G.MOD do
  519. wait()
  520. for i,v in pairs(game.Workspace:GetDescendants()) do
  521. if v.Name == "TPS" and v:IsA("Part") then
  522. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= 6 then
  523. local ModuleKick = require(game:GetService("Players").LocalPlayer.Backpack.Module)
  524. ModuleKick.Kick()
  525. ModuleKick.Kick2()
  526. end
  527. end
  528. end
  529. end
  530. else
  531. _G.MOD = false
  532. end
  533. end)
  534.  
  535. SPage:CreateToggle("Auto Tackle", "Auto Tackle The Ball. Recommended 'Face At The Ball'", function(arg)
  536. if arg then
  537. _G.MODT = true
  538. while _G.MODT do
  539. wait()
  540. for i,v in pairs(game.Workspace:GetDescendants()) do
  541. if v.Name == "TPS" and v:IsA("Part") then
  542. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= 6 then
  543. local ModuleKick = require(game:GetService("Players").LocalPlayer.Backpack.Module)
  544. ModuleKick.Tackle()
  545. end
  546. end
  547. end
  548. end
  549. else
  550. _G.MODT = false
  551. end
  552. end)
  553.  
  554. SPage:CreateToggle("Auto Defence [BUGGY]", "Auto Defending Your Team Goal", function(arg)
  555. if arg then
  556. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright blue") then
  557. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(0.6464786529541016, 13.299994468688965, 92.49656677246094)
  558. else
  559. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(0.11751431971788406, 13.299994468688965, -91.30338287353516)
  560. end
  561. _G.AUTODEFENCE = true
  562. while _G.AUTODEFENCE do
  563. wait()
  564. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright blue") then
  565. if (game.Workspace.TPSSystem.TPS.Position - game.Workspace.TPSSystem.Part2.Position).Magnitude <= 125 then
  566. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  567. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position + Vector3.new(0, 45, 0),game.Workspace.RedGoal.Part.Position)
  568. game.Players.LocalPlayer.Character.Humanoid:MoveTo(game.Workspace.TPSSystem.TPS.Position)
  569. for i,v in pairs(game.Workspace:GetDescendants()) do
  570. if v.Name == "TPS" and v:IsA("Part") then
  571. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= 6 then
  572. local ModuleKick = require(game:GetService("Players").LocalPlayer.Backpack.Module)
  573. ModuleKick.Tackle()
  574. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  575. local A_2 = game:GetService("Players").LocalPlayer.Character.Head
  576. local Event = game:GetService("Workspace").FE.Actions.Tackle
  577. Event:FireServer(A_1, A_2)
  578. end
  579. end
  580. end
  581. end
  582. end
  583. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright red") then
  584. if (game.Workspace.TPSSystem.TPS.Position - game.Workspace.TPSSystem.Part1.Position).Magnitude <= 125 then
  585. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  586. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position + Vector3.new(0, 45, 0),game.Workspace.BlueGoal.Part.Position)
  587. game.Players.LocalPlayer.Character.Humanoid:MoveTo(game.Workspace.TPSSystem.TPS.Position)
  588. for i,v in pairs(game.Workspace:GetDescendants()) do
  589. if v.Name == "TPS" and v:IsA("Part") then
  590. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= 6 then
  591. local ModuleKick = require(game:GetService("Players").LocalPlayer.Backpack.Module)
  592. ModuleKick.Tackle()
  593. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  594. local A_2 = game:GetService("Players").LocalPlayer.Character.Head
  595. local Event = game:GetService("Workspace").FE.Actions.Tackle
  596. Event:FireServer(A_1, A_2)
  597. end
  598. end
  599. end
  600. end
  601. end
  602. end
  603. else
  604. _G.AUTODEFENCE = false
  605. wait(1)
  606. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = false
  607. end
  608. end)
  609.  
  610. SPage:CreateToggle("Auto Power", "Auto Changes Power Of The Kick By Distance. Just Click To Shoot", function(arg)
  611. if arg then
  612. _G.AUTOPOWER = true
  613. while _G.AUTOPOWER do
  614. wait()
  615. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright blue") then
  616. if (game.Workspace.TPSSystem.TPS.Position - game.Workspace.TPSSystem.Part1.Position).Magnitude <= 90 then
  617. game.Players.LocalPlayer.Backpack.Speed.Value = 65
  618. game.Players.LocalPlayer.Backpack.Angle.Value = Vector3.new(4000000, 1000, 4000000)
  619. elseif (game.Workspace.TPSSystem.TPS.Position - game.Workspace.TPSSystem.Part1.Position).Magnitude > 99 then
  620. game.Players.LocalPlayer.Backpack.Speed.Value = 65
  621. game.Players.LocalPlayer.Backpack.Angle.Value = Vector3.new(4000000, 1100, 4000000)
  622. end
  623. end
  624. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright red") then
  625. if (game.Workspace.TPSSystem.TPS.Position - game.Workspace.TPSSystem.Part2.Position).Magnitude <= 99 then
  626. game.Players.LocalPlayer.Backpack.Speed.Value = 65
  627. game.Players.LocalPlayer.Backpack.Angle.Value = Vector3.new(4000000, 1000, 4000000)
  628. elseif (game.Workspace.TPSSystem.TPS.Position - game.Workspace.TPSSystem.Part2.Position).Magnitude > 100 then
  629. game.Players.LocalPlayer.Backpack.Speed.Value = 65
  630. game.Players.LocalPlayer.Backpack.Angle.Value = Vector3.new(4000000, 1100, 4000000)
  631. end
  632. end
  633. end
  634. else
  635. _G.AUTOPOWER = false
  636. end
  637. end)
  638.  
  639. SPage:CreateToggle("Auto Aim Goal [BodyGyro]", "Locks/Faces At Opponent's Goal. Don't Use ShiftLock", function(arg)
  640. if arg then
  641. local Offset = CFrame.new(4, 0, 0)
  642.  
  643. local BGyro = Instance.new("BodyGyro", game.Players.LocalPlayer.Character.HumanoidRootPart)
  644. BGyro.MaxTorque = Vector3.new(math.huge, math.huge, math.huge)
  645. BGyro.P = 99999
  646. BGyro.D = 500
  647. _G.GOAL = true
  648. while _G.GOAL do
  649. wait()
  650. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright red") then
  651. local BLUE = game.Workspace.BlueGoal.Part
  652. local Direction = ((BLUE.CFrame * Offset).p - game.Players.LocalPlayer.Character.HumanoidRootPart.Position) * Vector3.new(1, 0, 1)
  653. BGyro.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position, game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Direction)
  654. else
  655. local RED = game.Workspace.RedGoal.Part
  656. local Direction = ((RED.CFrame * Offset).p - game.Players.LocalPlayer.Character.HumanoidRootPart.Position) * Vector3.new(1, 0, 1)
  657. BGyro.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position, game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Direction)
  658. end
  659. end
  660. else
  661. _G.GOAL = false
  662. for i,v in pairs(game.Players.LocalPlayer.Character.HumanoidRootPart:GetChildren()) do
  663. if v.Name == "BodyGyro" then
  664. v:Destroy()
  665. end
  666. end
  667. end
  668. end)
  669.  
  670. SPage:CreateToggle("Auto Aim Goal [lookAt]", "Locks/Faces At Opponent's Goal. [lookAt Method]", function(arg)
  671. if arg then
  672. _G.LookAt = true
  673. while _G.LookAt do
  674. wait()
  675. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright red") then
  676. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  677. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position + Vector3.new(0, 45, 0),game.Workspace.BlueGoal.Part.Position)
  678. end
  679. if game.Players.LocalPlayer.TeamColor == BrickColor.new("Bright blue") then
  680. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  681. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position + Vector3.new(0, 45, 0),game.Workspace.RedGoal.Part.Position)
  682. end
  683. end
  684. else
  685. _G.LookAt = false
  686. wait(0.5)
  687. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = false
  688. end
  689. end)
  690.  
  691. SPage:CreateToggle("Auto Aim Pass Teammate [BodyGyro]", "Locks/Faces At Your Teammate. Don't Use ShiftLock", function(arg)
  692. if arg then
  693. local Offset = CFrame.new(4, 0, 0)
  694.  
  695. local BGyro = Instance.new("BodyGyro", game.Players.LocalPlayer.Character.HumanoidRootPart)
  696. BGyro.MaxTorque = Vector3.new(math.huge, math.huge, math.huge)
  697. BGyro.P = 99999
  698. BGyro.D = 500
  699.  
  700. _G.PLR = true
  701. while _G.PLR do
  702. wait()
  703. for i,v in pairs(game.Players:GetPlayers()) do
  704. if v.Name ~= game.Players.LocalPlayer.Character.Name and (v.Character.Head.CFrame.p - game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.p).Magnitude < DistancePass and Player.TeamColor == v.TeamColor then
  705. local Direction = ((v.Character.Head.CFrame * Offset).p - game.Players.LocalPlayer.Character.HumanoidRootPart.Position) * Vector3.new(1, 0, 1)
  706. BGyro.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position, game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Direction)
  707. end
  708. end
  709. end
  710. else
  711. _G.PLR = false
  712. for i,v in pairs(game.Players.LocalPlayer.Character.HumanoidRootPart:GetChildren()) do
  713. if v.Name == "BodyGyro" then
  714. v:Destroy()
  715. end
  716. end
  717. end
  718. end)
  719.  
  720. SPage:CreateToggle("Auto Aim Pass Teammate [lookAt]", "Locks/Faces At Your Teammate. [lookAt Method]", function(arg)
  721. if arg then
  722. _G.LookAAA = true
  723. while _G.LookAAA do
  724. wait()
  725. for i,v in pairs(game.Players:GetPlayers()) do
  726. if v.Name ~= game.Players.LocalPlayer.Character.Name and (v.Character.Head.CFrame.p - game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.p).Magnitude < DistancePass and Player.TeamColor == v.TeamColor then
  727. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = true
  728. game.Workspace.CurrentCamera.CFrame = CFrame.lookAt(game.Workspace.CurrentCamera.CFrame.Position + Vector3.new(0, 45, 0),v.Character.HumanoidRootPart.Position)
  729. end
  730. end
  731. end
  732. else
  733. _G.LookAAA = false
  734. wait(0.5)
  735. game.Players.LocalPlayer.PlayerGui.LockScript.SetLock.Value = false
  736. end
  737. end)
  738.  
  739. SPage:CreateLabel("Configurations")
  740.  
  741. SPage:CreateSlider("Auto Aim Pass Teammate Distance", 0, 275,function(arg)
  742. DistancePass = arg
  743. end)
  744.  
  745. MPage:CreateLabel("Functions")
  746.  
  747. MPage:CreateToggle("Face At The Ball", "Locks/Faces At The Ball", function(arg)
  748. if arg then
  749. local Offset = CFrame.new(4, 0, 0)
  750.  
  751. local BGyro = Instance.new("BodyGyro", game.Players.LocalPlayer.Character.HumanoidRootPart)
  752. BGyro.MaxTorque = Vector3.new(math.huge, math.huge, math.huge)
  753. BGyro.P = 99999
  754. BGyro.D = 500
  755.  
  756. _G.FACE = true
  757. while _G.FACE do
  758. wait()
  759. local Ball = game.Workspace.TPSSystem.TPS
  760. if Ball then
  761. local Direction = ((Ball.CFrame * Offset).p - game.Players.LocalPlayer.Character.HumanoidRootPart.Position) * Vector3.new(1, 0, 1)
  762. BGyro.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position, game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Direction)
  763. end
  764. end
  765. else
  766. _G.FACE = false
  767. for i,v in pairs(game.Players.LocalPlayer.Character.HumanoidRootPart:GetChildren()) do
  768. if v.Name == "BodyGyro" then
  769. v:Destroy()
  770. end
  771. end
  772. end
  773. end)
  774.  
  775. MPage:CreateToggle("Unlock Celebrations Tab", "Unlocking/Locking Celebrations Tab", function(arg)
  776. if arg then
  777. game:GetService("Workspace").Celebrate1.Value = true
  778. game:GetService("Workspace").Celebrate2.Value = true
  779. else
  780. game:GetService("Workspace").Celebrate1.Value = false
  781. game:GetService("Workspace").Celebrate2.Value = false
  782. end
  783. end)
  784.  
  785. MPage:CreateToggle("Meter Indicator", "Shows Meters Of The Ball From The Goal. Also The GUI Is Draggable", function(arg)
  786. if arg then
  787. local MeterIndicator = Instance.new("ScreenGui")
  788. local Main = Instance.new("Frame")
  789. local Blue = Instance.new("TextLabel")
  790. local Red = Instance.new("TextLabel")
  791. local BMeters = Instance.new("TextLabel")
  792. local RMeters = Instance.new("TextLabel")
  793.  
  794. MeterIndicator.Name = "MeterIndicator"
  795. MeterIndicator.Parent = game.CoreGui
  796. MeterIndicator.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  797.  
  798. Main.Name = "Main"
  799. Main.Parent = MeterIndicator
  800. Main.BackgroundColor3 = Color3.fromRGB(76, 76, 76)
  801. Main.BorderSizePixel = 0
  802. Main.Position = UDim2.new(0.412142843, 0, 0.882352948, 0)
  803. Main.Size = UDim2.new(0, 242, 0, 60)
  804. Main.Active = true
  805. Main.Draggable = true
  806.  
  807. Blue.Name = "Blue"
  808. Blue.Parent = Main
  809. Blue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  810. Blue.BackgroundTransparency = 1.000
  811. Blue.BorderSizePixel = 0
  812. Blue.Size = UDim2.new(0, 120, 0, 13)
  813. Blue.Font = Enum.Font.FredokaOne
  814. Blue.Text = "Blue Team"
  815. Blue.TextColor3 = Color3.fromRGB(0, 85, 255)
  816. Blue.TextScaled = true
  817. Blue.TextSize = 14.000
  818. Blue.TextWrapped = true
  819.  
  820. Red.Name = "Red"
  821. Red.Parent = Main
  822. Red.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  823. Red.BackgroundTransparency = 1.000
  824. Red.BorderSizePixel = 0
  825. Red.Position = UDim2.new(0.533057868, 0, 0, 0)
  826. Red.Size = UDim2.new(0, 113, 0, 13)
  827. Red.Font = Enum.Font.FredokaOne
  828. Red.Text = "Red Team"
  829. Red.TextColor3 = Color3.fromRGB(255, 0, 0)
  830. Red.TextScaled = true
  831. Red.TextSize = 14.000
  832. Red.TextWrapped = true
  833.  
  834. BMeters.Name = "BMeters"
  835. BMeters.Parent = Main
  836. BMeters.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  837. BMeters.BackgroundTransparency = 1.000
  838. BMeters.BorderSizePixel = 0
  839. BMeters.Position = UDim2.new(0, 0, 0.566666663, 0)
  840. BMeters.Size = UDim2.new(0, 120, 0, 13)
  841. BMeters.Font = Enum.Font.FredokaOne
  842. BMeters.Text = "From 26 Meters"
  843. BMeters.TextColor3 = Color3.fromRGB(255, 255, 255)
  844. BMeters.TextScaled = true
  845. BMeters.TextSize = 14.000
  846. BMeters.TextWrapped = true
  847.  
  848. RMeters.Name = "RMeters"
  849. RMeters.Parent = Main
  850. RMeters.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  851. RMeters.BackgroundTransparency = 1.000
  852. RMeters.BorderSizePixel = 0
  853. RMeters.Position = UDim2.new(0.533057868, 0, 0.566666663, 0)
  854. RMeters.Size = UDim2.new(0, 113, 0, 13)
  855. RMeters.Font = Enum.Font.FredokaOne
  856. RMeters.Text = "From 26 Meters"
  857. RMeters.TextColor3 = Color3.fromRGB(255, 255, 255)
  858. RMeters.TextScaled = true
  859. RMeters.TextSize = 14.000
  860. RMeters.TextWrapped = true
  861. local Player = game.Players.LocalPlayer
  862. Heartbeat = game:GetService("RunService").Heartbeat
  863. local function HeartbeatUPD()
  864.  
  865. RMeters.Text = "From " .. math.floor((game.Workspace.TPSSystem.TPS.Position - game.Workspace.TPSSystem.Part1.Position).Magnitude / 10) .. " Meters"
  866. BMeters.Text = "From " .. math.floor((game.Workspace.TPSSystem.TPS.Position - game.Workspace.TPSSystem.Part2.Position).Magnitude / 10) .. " Meters"
  867. end
  868. Heartbeat:Connect(HeartbeatUPD)
  869. else
  870. game.CoreGui.MeterIndicator:Destroy()
  871. Heartbeat:Disconnect()
  872. end
  873. end)
  874.  
  875. MPage:CreateToggle("Ball Information", "Shows Information About The Ball (Curved, Trail, etc)", function(arg)
  876. if arg then
  877. local BallInformationGUI = Instance.new("ScreenGui")
  878. local Main = Instance.new("Frame")
  879. local Context = Instance.new("TextLabel")
  880. local Curving = Instance.new("TextLabel")
  881. local Flaming = Instance.new("TextLabel")
  882. local Trail = Instance.new("TextLabel")
  883. local TextureID = Instance.new("ImageLabel")
  884. local BallTexture = Instance.new("TextLabel")
  885.  
  886. BallInformationGUI.Name = "BallInformationGUI"
  887. BallInformationGUI.Parent = game.CoreGui
  888. BallInformationGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  889.  
  890. Main.Name = "Main"
  891. Main.Parent = BallInformationGUI
  892. Main.BackgroundColor3 = Color3.fromRGB(77, 77, 0)
  893. Main.BorderSizePixel = 0
  894. Main.Position = UDim2.new(0.29072684, 0, 0.29411763, 0)
  895. Main.Size = UDim2.new(0, 500, 0, 350)
  896. Main.Active = true
  897. Main.Draggable = true
  898.  
  899. Context.Name = "Context"
  900. Context.Parent = Main
  901. Context.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  902. Context.BackgroundTransparency = 1.000
  903. Context.BorderColor3 = Color3.fromRGB(27, 42, 53)
  904. Context.BorderSizePixel = 0
  905. Context.Size = UDim2.new(0, 500, 0, 50)
  906. Context.Font = Enum.Font.Roboto
  907. Context.Text = "The Ball Information"
  908. Context.TextColor3 = Color3.fromRGB(255, 255, 255)
  909. Context.TextScaled = true
  910. Context.TextSize = 14.000
  911. Context.TextWrapped = true
  912.  
  913. Curving.Name = "Curving"
  914. Curving.Parent = Main
  915. Curving.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  916. Curving.BackgroundTransparency = 1.000
  917. Curving.BorderColor3 = Color3.fromRGB(27, 42, 53)
  918. Curving.BorderSizePixel = 0
  919. Curving.Position = UDim2.new(0.0719999969, 0, 0.208571419, 0)
  920. Curving.Size = UDim2.new(0, 195, 0, 50)
  921. Curving.Font = Enum.Font.Roboto
  922. Curving.Text = "Curve: No"
  923. Curving.TextColor3 = Color3.fromRGB(255, 0, 0)
  924. Curving.TextScaled = true
  925. Curving.TextSize = 14.000
  926. Curving.TextWrapped = true
  927.  
  928. Flaming.Name = "Flaming"
  929. Flaming.Parent = Main
  930. Flaming.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  931. Flaming.BackgroundTransparency = 1.000
  932. Flaming.BorderColor3 = Color3.fromRGB(27, 42, 53)
  933. Flaming.BorderSizePixel = 0
  934. Flaming.Position = UDim2.new(0.537, 0, 0.209000006, 0)
  935. Flaming.Size = UDim2.new(0, 195, 0, 50)
  936. Flaming.Font = Enum.Font.Roboto
  937. Flaming.Text = "Flame Power Shot: No"
  938. Flaming.TextColor3 = Color3.fromRGB(255, 0, 0)
  939. Flaming.TextScaled = true
  940. Flaming.TextSize = 14.000
  941. Flaming.TextWrapped = true
  942.  
  943. Trail.Name = "Trail"
  944. Trail.Parent = Main
  945. Trail.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  946. Trail.BackgroundTransparency = 1.000
  947. Trail.BorderColor3 = Color3.fromRGB(27, 42, 53)
  948. Trail.BorderSizePixel = 0
  949. Trail.Position = UDim2.new(0.305000007, 0, 0.374714315, 0)
  950. Trail.Size = UDim2.new(0, 195, 0, 50)
  951. Trail.Font = Enum.Font.Roboto
  952. Trail.Text = "Trail: Disabled"
  953. Trail.TextColor3 = Color3.fromRGB(255, 0, 0)
  954. Trail.TextScaled = true
  955. Trail.TextSize = 14.000
  956. Trail.TextWrapped = true
  957.  
  958. TextureID.Name = "TextureID"
  959. TextureID.Parent = Main
  960. TextureID.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  961. TextureID.Position = UDim2.new(0.400000006, 0, 0.694285691, 0)
  962. TextureID.Size = UDim2.new(0, 100, 0, 100)
  963.  
  964. BallTexture.Name = "BallTexture"
  965. BallTexture.Parent = Main
  966. BallTexture.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  967. BallTexture.BackgroundTransparency = 1.000
  968. BallTexture.BorderColor3 = Color3.fromRGB(27, 42, 53)
  969. BallTexture.BorderSizePixel = 0
  970. BallTexture.Position = UDim2.new(0.305000007, 0, 0.551857233, 0)
  971. BallTexture.Size = UDim2.new(0, 195, 0, 40)
  972. BallTexture.Font = Enum.Font.Roboto
  973. BallTexture.Text = "Texture/Decals:"
  974. BallTexture.TextColor3 = Color3.fromRGB(255, 255, 255)
  975. BallTexture.TextScaled = true
  976. BallTexture.TextSize = 14.000
  977. BallTexture.TextWrapped = true
  978.  
  979. RunStepBall = game:GetService("RunService").Stepped:Connect(function()
  980. for i, ang in pairs(game.Workspace.TPSSystem.TPS:GetChildren()) do
  981. if ang.Name == "AngularVelocity" then
  982. Curving.Text = "Curve: Yes"
  983. Curving.TextColor3 = Color3.fromRGB(0, 255, 0)
  984. elseif not ang:FindFirstChild("AngularVelocity") then
  985. Curving.Text = "Curve: No"
  986. Curving.TextColor3 = Color3.fromRGB(255, 0, 0)
  987. end
  988. end
  989. for i, power in pairs(game.Workspace.TPSSystem.TPS:GetChildren()) do
  990. if power.Name == "Fire" or power.Name == "FireB" then
  991. if power.Enabled == true then
  992. Flaming.Text = "Flame Power Shot: Yes"
  993. Flaming.TextColor3 = Color3.fromRGB(0, 255, 0)
  994. else
  995. Flaming.Text = "Flame Power Shot: No"
  996. Flaming.TextColor3 = Color3.fromRGB(255, 0, 0)
  997. end
  998. end
  999. end
  1000. for i, trail in pairs(game.Workspace.TPSSystem.TPS:GetChildren()) do
  1001. if trail.Name == "Trail" then
  1002. if trail.Enabled == true then
  1003. Trail.Text = "Trail: Enabled"
  1004. Trail.TextColor3 = Color3.fromRGB(0, 255, 0)
  1005. else
  1006. Trail.Text = "Trail: Disabled"
  1007. Trail.TextColor3 = Color3.fromRGB(255, 0, 0)
  1008. end
  1009. end
  1010. end
  1011. TextureID.Image = game.Workspace.TPSSystem.TPS.Decal1.Texture
  1012. end)
  1013. else
  1014. game.CoreGui.BallInformationGUI:Destroy()
  1015. RunStepBall:Disconnect()
  1016. end
  1017. end)
  1018.  
  1019. MPage:CreateButton("Crash The Ball [Stay Close To The Ball]", "Crashing And Teleporting The Ball To Void. Very Overpowered Function", function()
  1020. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  1021. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1022. local A_3 = 70
  1023. local A_4 = Vector3.new(4000000, -math.huge, 4000000)
  1024. local Event = game:GetService("Workspace").FE.Actions.KickG1
  1025. Event:FireServer(A_1, A_2, A_3, A_4)
  1026. end)
  1027.  
  1028. MPage:CreateButton("Remove BillboardGui", "Removes Username, Level, Red/Blue Circle Above Your Head", function()
  1029. for i,v in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
  1030. if v:IsA("BillboardGui") then
  1031. v:Destroy()
  1032. end
  1033. end
  1034. end)
  1035.  
  1036. MPage:CreateButton("Remove Map", "Removes Map For Less Lag", function()
  1037. for i,v in pairs(game.Workspace:GetChildren()) do
  1038. if v.Name == "Map" then
  1039. v:Destroy()
  1040. end
  1041. end
  1042. end)
  1043.  
  1044. MPage:CreateButton("Secret BadgeAwarder", "Gives You Secret Badge", function()
  1045. for i,v in pairs(game.Workspace:GetChildren()) do
  1046. if v.Name == "BadgeAwarder" then
  1047. v.Platform.CanCollide = false
  1048. v.Platform.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1049. v.Platform.Transparency = 1
  1050. v.Platform.Decal.Transparency = 1
  1051. wait(2)
  1052. v.Platform.CanCollide = true
  1053. v.Platform.Transparency = 0
  1054. v.Platform.Decal.Transparency = 0
  1055. v.Platform.CFrame = CFrame.new(-2, -0, 363, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1056. end
  1057. end
  1058. end)
  1059.  
  1060. MPage:CreateLabel("Scripts")
  1061.  
  1062. MPage:CreateToggle("Chat Log Spy", "Spying And Showing Hidden & Private Messages. It's Gray Color", function(arg)
  1063. if arg then
  1064. EnabledChatLogger = true
  1065. SpyOnMyself = true
  1066. IsPublic = false
  1067. IsPublicItalics = false
  1068. ChatMessageProperties = {
  1069. Color = Color3.fromRGB(162,163,165);
  1070. Font = Enum.Font.SourceSansBold;
  1071. TextSize = 18;
  1072. }
  1073. local StarterGui = game:GetService("StarterGui")
  1074. local Players = game:GetService("Players")
  1075. local Player = Players.LocalPlayer or Players:GetPropertyChangedSignal("LocalPlayer"):Wait() or Players.LocalPlayer
  1076. local SayMessageRequest = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest")
  1077. local OnMessageDoneFiltering = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("OnMessageDoneFiltering")
  1078. local InstanceNUM = (_G.ChatLogger or 0) + 1
  1079. _G.ChatLogger = InstanceNUM
  1080.  
  1081. local function onChatted(plr, msg)
  1082. if _G.ChatLogger == InstanceNUM then
  1083. if plr == Player then
  1084. EnabledChatLogger = not EnabledChatLogger
  1085. elseif EnabledChatLogger and SpyOnMyself == true or plr ~= Player then
  1086. msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
  1087. local HiddenMSG = true
  1088. local Connection = OnMessageDoneFiltering.OnClientEvent:Connect(function(packet,channel)
  1089. if packet.SpeakerUserId == plr.UserId and packet.Message==msg:sub(#msg-#packet.Message+1) and (channel=="All" or (channel=="Team" and IsPublic == false)) then
  1090. HiddenMSG = false
  1091. end
  1092. end)
  1093. wait(0.2)
  1094. Connection:Disconnect()
  1095. if HiddenMSG and EnabledChatLogger then
  1096. if IsPublic then
  1097. SayMessageRequest:FireServer((IsPublicItalics and "/me " or '').."{SPY} [".. p.Name .."]: "..msg,"All")
  1098. else
  1099. ChatMessageProperties.Text = " [".. plr.Name .."]: "..msg
  1100. StarterGui:SetCore("ChatMakeSystemMessage", ChatMessageProperties)
  1101. end
  1102. end
  1103. end
  1104. end
  1105. end
  1106.  
  1107. for _,getplayers in ipairs(Players:GetPlayers()) do
  1108. getplayers.Chatted:Connect(function(msg)
  1109. onChatted(getplayers, msg)
  1110. end)
  1111. end
  1112. Players.PlayerAdded:Connect(function(plradded)
  1113. plradded.Chatted:Connect(function(msg)
  1114. onChatted(plradded, msg)
  1115. end)
  1116. end)
  1117. wait(3)
  1118. local ChatFrame = Player.PlayerGui.Chat.Frame
  1119. ChatFrame.ChatChannelParentFrame.Visible = true
  1120. ChatFrame.ChatBarParentFrame.Position = ChatFrame.ChatChannelParentFrame.Position + UDim2.new(UDim.new(), ChatFrame.ChatChannelParentFrame.Size.Y)
  1121. else
  1122. EnabledChatLogger = false
  1123. end
  1124. end)
  1125.  
  1126. MPage:CreateButton("Infinite Yield Admin", "Executes The Admin Script. Use For Trolling", function()
  1127. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  1128. end)
  1129.  
  1130. LPPage:CreateLabel("Miscellaneous")
  1131.  
  1132. local FireHeartbeat
  1133.  
  1134. LPPage:CreateToggle("Invisible [Fire Power Method]", "You Will Be Invisible When Someone Kills You With Fire", function(arg)
  1135. if arg then
  1136. FireHeartbeat = game:GetService("RunService").Heartbeat:Connect(function()
  1137. for i,v in pairs(game.Players:GetPlayers()) do
  1138. if v.Name ~= game.Players.LocalPlayer.Name then
  1139. for i,b in pairs(v.Character.HumanoidRootPart:GetDescendants()) do
  1140. if b.Name == "Fire" or b.Name == "HitScript" then
  1141. b:Destroy()
  1142. end
  1143. end
  1144. end
  1145. end
  1146. end)
  1147. else
  1148. FireHeartbeat:Disconnect()
  1149. end
  1150. end)
  1151.  
  1152. LPPage:CreateButton("Invisible [R15]", "You Will Be Invisible. Dribbling & Kicking Are FE", function()
  1153. --// REMOVE BILLBOARDGUI NAME, LEVEL AND INFORMATION --\\
  1154.  
  1155. for i,v in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
  1156. if v:IsA("BillboardGui") then
  1157. v:Destroy()
  1158. end
  1159. end
  1160.  
  1161. --// VARIABLES, SERVICES --\\
  1162.  
  1163. local HRP = game.Players.LocalPlayer.Character.HumanoidRootPart
  1164. local LT = game.Players.LocalPlayer.Character.LowerTorso
  1165. local OldCF = HRP.CFrame
  1166.  
  1167. --// SCRIPTING --\\
  1168. if game.Players.LocalPlayer.Character.PrimaryPart ~= HRP then
  1169. game.Players.LocalPlayer.Character.PrimaryPart = HRP
  1170. end
  1171.  
  1172.  
  1173. local NewRootMotor6D = LT:FindFirstChild("Root"):Clone()
  1174. HRP.Parent = game.Workspace
  1175. game.Players.LocalPlayer.Character.PrimaryPart = HRP
  1176. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(OldCF.X, 9e9, OldCF.Z))
  1177. HRP.Parent = game.Players.LocalPlayer.Character
  1178. wait(0.45)
  1179. NewRootMotor6D.Parent = HRP
  1180. HRP.CFrame = OldCF
  1181. end)
  1182.  
  1183. LPPage:CreateButton("Fake Join Group", "Unlocks Black Trail For The Ball", function()
  1184. local mt = getrawmetatable(game);
  1185. local nc = mt.__namecall
  1186. setreadonly(mt, false)
  1187.  
  1188. mt.__namecall = newcclosure(function(self, ...)
  1189. local Method = getnamecallmethod();
  1190. if Method == 'IsInGroup' then
  1191. return 5334925
  1192. end
  1193. return nc(self, ...)
  1194. end)
  1195. end)
  1196.  
  1197. LPPage:CreateButton("Rejoin The Server", "Rejoining To Same Server", function()
  1198. local plr = game.Players.LocalPlayer
  1199.  
  1200. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  1201. end)
  1202.  
  1203. LPPage:CreateButton("Reset The Character", "Resetting Your Character", function()
  1204. game.Players.LocalPlayer.Character:BreakJoints()
  1205. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  1206. end)
  1207.  
  1208. LPPage:CreateLabel("Humanoid Properties")
  1209.  
  1210. LPPage:CreateSlider("WalkSpeed", 0, 1000,function(arg)
  1211. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = arg
  1212. end)
  1213.  
  1214. LPPage:CreateSlider("JumpPower", 0, 500,function(arg)
  1215. game.Players.LocalPlayer.Character.Humanoid.JumpPower = arg
  1216. end)
  1217.  
  1218. LPPage:CreateSlider("HipHeight", 0, 15,function(arg)
  1219. game.Players.LocalPlayer.Character.Humanoid.HipHeight = arg
  1220. end)
  1221.  
  1222. LPPage:CreateButton("Default WalkSpeed", "Set Custom WalkSpeed To Default (22)", function()
  1223. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 22
  1224. end)
  1225.  
  1226. LPPage:CreateButton("Default JumpPower", "Set Custom JumpPower To Default (50)", function()
  1227. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  1228. end)
  1229.  
  1230. LPPage:CreateButton("Default HipHeight", "Set Custom HipHeight To Default (0)", function()
  1231. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 0
  1232. end)
  1233.  
  1234. LPPage:CreateLabel("Teams")
  1235.  
  1236. LPPage:CreateToggle("Fake Switch The Blue Team", "Shows A Blue Circle Above Your Head", function(arg)
  1237. if arg then
  1238. _G.FB = true
  1239. while _G.FB do
  1240. wait()
  1241. game.Workspace.FE.PlayerTeam.RemoteEventB:FireServer()
  1242. end
  1243. else
  1244. _G.FB = false
  1245. end
  1246. end)
  1247.  
  1248. LPPage:CreateToggle("Fake Switch The Red Team", "Shows A Red Circle Above Your Head", function(arg)
  1249. if arg then
  1250. _G.FR = true
  1251. while _G.FR do
  1252. wait()
  1253. game.Workspace.FE.PlayerTeam.RemoteEventR:FireServer()
  1254. end
  1255. else
  1256. _G.FR = false
  1257. end
  1258. end)
  1259.  
  1260. LPPage:CreateButton("Join The Blue Team", "You Will Join The Blue Team", function()
  1261. local Event = game:GetService("Workspace").FE.CTeamColor.RemoteEventB
  1262. Event:FireServer()
  1263. end)
  1264.  
  1265. LPPage:CreateButton("Join The Red Team", "You Will Join The Red Team", function()
  1266. local Event = game:GetService("Workspace").FE.CTeamColor.RemoteEventR
  1267. Event:FireServer()
  1268. end)
  1269.  
  1270. LPPage:CreateButton("Join The Waiting Team", "You Will Join The Waiting Team", function()
  1271. local Event = game:GetService("Workspace").FE.CTeamColor.RemoteEvent
  1272. Event:FireServer()
  1273. end)
  1274.  
  1275. LPPage:CreateLabel("Reach")
  1276. local RunStepped
  1277.  
  1278. LPPage:CreateToggle("Reach", "Enables Reach", function(arg)
  1279. if arg then
  1280. RunStepped = game:GetService("RunService").RenderStepped:Connect(function()
  1281. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  1282. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= DistanceReach then
  1283. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 1 then
  1284. firetouchinterest(game.Players.LocalPlayer.Character["Right Leg"], game.Workspace.TPSSystem.TPS, 0)
  1285. firetouchinterest(game.Players.LocalPlayer.Character["Right Leg"], game.Workspace.TPSSystem.TPS, 1)
  1286. elseif game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  1287. firetouchinterest(game.Players.LocalPlayer.Character["Left Leg"], game.Workspace.TPSSystem.TPS, 0)
  1288. firetouchinterest(game.Players.LocalPlayer.Character["Left Leg"], game.Workspace.TPSSystem.TPS, 1)
  1289.  
  1290. end
  1291. end
  1292. end
  1293. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  1294. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= DistanceReach then
  1295. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 1 then
  1296. firetouchinterest(game.Players.LocalPlayer.Character["RightLowerLeg"], game.Workspace.TPSSystem.TPS, 0)
  1297. firetouchinterest(game.Players.LocalPlayer.Character["RightLowerLeg"], game.Workspace.TPSSystem.TPS, 1)
  1298. elseif game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  1299. firetouchinterest(game.Players.LocalPlayer.Character["LeftLowerLeg"], game.Workspace.TPSSystem.TPS, 0)
  1300. firetouchinterest(game.Players.LocalPlayer.Character["LeftLowerLeg"], game.Workspace.TPSSystem.TPS, 1)
  1301. end
  1302. end
  1303. end
  1304. end)
  1305. else
  1306. RunStepped:Disconnect()
  1307. end
  1308. end)
  1309.  
  1310. LPPage:CreateSlider("Reach Distance", 0, 100,function(arg)
  1311. DistanceReach = arg
  1312. end)
  1313.  
  1314. LPPage:CreateLabel("Reach Leg")
  1315. LPPage:CreateLabel("Customize Reach Size And Transparency. After Use Fake Leg")
  1316.  
  1317. LPPage:CreateButton("Fake Leg [R6]", "Creates Fake Leg For Better View", function()
  1318. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  1319. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  1320. LeftLeg = Instance.new("Part", game.Players.LocalPlayer.Character)
  1321. LeftLeg.Name = "Left Leg"
  1322. LeftLeg.CanCollide = false
  1323. LeftLeg.Color = game.Players.LocalPlayer.Character["Left Leg"].Color
  1324. LeftLeg.Size = Vector3.new(1, 2, 1)
  1325. LeftLeg.Locked = true
  1326. LeftLeg.Position = game.Players.LocalPlayer.Character["Left Leg"].Position
  1327.  
  1328. local Attachment = Instance.new("Attachment", LeftLeg)
  1329. Attachment.Name = "LeftFootAttachment"
  1330. Attachment.Position = Vector3.new(0, -1, 0)
  1331.  
  1332. local MotorHip = Instance.new("Motor6D", game.Players.LocalPlayer.Character.Torso)
  1333. MotorHip.Name = "Fake Left Hip"
  1334. MotorHip.C0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1335. MotorHip.C1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1336. MotorHip.CurrentAngle = 0
  1337. MotorHip.DesiredAngle = 0
  1338. MotorHip.MaxVelocity = 0.1
  1339. MotorHip.Part0 = game.Players.LocalPlayer.Character.Torso
  1340. MotorHip.Part1 = LeftLeg
  1341. elseif game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 1 then
  1342. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  1343. RightLeg = Instance.new("Part", game.Players.LocalPlayer.Character)
  1344. RightLeg.Name = "Right Leg"
  1345. RightLeg.CanCollide = false
  1346. RightLeg.Color = game.Players.LocalPlayer.Character["Right Leg"].Color
  1347. RightLeg.Size = Vector3.new(1, 2, 1)
  1348. RightLeg.Locked = true
  1349. RightLeg.Position = game.Players.LocalPlayer.Character["Right Leg"].Position
  1350.  
  1351. local Attachment = Instance.new("Attachment", RightLeg)
  1352. Attachment.Name = "RightFootAttachment"
  1353. Attachment.Position = Vector3.new(0, -1, 0)
  1354.  
  1355. local MotorHip = Instance.new("Motor6D", game.Players.LocalPlayer.Character.Torso)
  1356. MotorHip.Name = "Fake Right Hip"
  1357. MotorHip.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1358. MotorHip.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1359. MotorHip.CurrentAngle = 0
  1360. MotorHip.DesiredAngle = 0
  1361. MotorHip.MaxVelocity = 0.1
  1362. MotorHip.Part0 = game.Players.LocalPlayer.Character.Torso
  1363. MotorHip.Part1 = RightLeg
  1364. end
  1365. end)
  1366.  
  1367. LPPage:CreateButton("Remove Fake Leg [R6]", "Removes Fake Leg", function()
  1368. if LeftLeg ~= nil then
  1369. LeftLeg:Destroy()
  1370. elseif RightLeg ~= nil then
  1371. RightLeg:Destroy()
  1372. elseif LeftFoot ~= nil then
  1373. LeftFoot:Destroy()
  1374. elseif RightFoot ~= nil then
  1375. RightFoot:Destroy()
  1376. end
  1377. for i,z in pairs(game.Players.LocalPlayer.Character.Torso:GetDescendants()) do
  1378. if z.Name == "Fake Left Hip" or z.Name == "Fake Right Hip" then
  1379. z:Destroy()
  1380. end
  1381. end
  1382. end)
  1383.  
  1384. LPPage:CreateSlider("Reach Leg Size", 1, 100,function(arg)
  1385. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  1386. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  1387. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  1388. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(arg, 2, arg)
  1389. else
  1390. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  1391. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(arg, 2, arg)
  1392. end
  1393. end
  1394. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  1395. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  1396. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  1397. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(arg, 2, arg)
  1398. else
  1399. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  1400. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(arg, 2, arg)
  1401. end
  1402. end
  1403. end)
  1404.  
  1405. LPPage:CreateBox("Reach Leg Transparency", 10044538000, function(arg)
  1406. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  1407. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  1408. game.Players.LocalPlayer.Character["Left Leg"].Transparency = tonumber(arg)
  1409. else
  1410. game.Players.LocalPlayer.Character["Right Leg"].Transparency = tonumber(arg)
  1411. end
  1412. end
  1413. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  1414. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  1415. game.Players.LocalPlayer.Character["LeftLowerLeg"].Transparency = tonumber(arg)
  1416. else
  1417. game.Players.LocalPlayer.Character["RightLowerLeg"].Transparency = tonumber(arg)
  1418. end
  1419. end
  1420. end)
  1421.  
  1422. LPPage:CreateLabel("Settings")
  1423.  
  1424. LPPage:CreateBox("Replication Lag-Ping [Use 0.01 or 0.02 For Tricks]", 10044538000, function(arg)
  1425. settings():GetService("NetworkSettings").IncomingReplicationLag = tonumber(arg)
  1426. end)
  1427.  
  1428. LPPage:CreateToggle("Vibration", "Turning Off/On Vibration", function(arg)
  1429. if arg then
  1430. require(game:GetService("Players").LocalPlayer.PlayerGui.Start.Settings.Options.Module).Vibration(2)
  1431. else
  1432. require(game:GetService("Players").LocalPlayer.PlayerGui.Start.Settings.Options.Module).Vibration(1)
  1433. end
  1434. end)
  1435.  
  1436. LPPage:CreateToggle("ViewLock", "Turning Off/On ViewLock", function(arg)
  1437. if arg then
  1438. require(game:GetService("Players").LocalPlayer.PlayerGui.Start.Settings.Options.Module).ViewLock(2)
  1439. else
  1440. require(game:GetService("Players").LocalPlayer.PlayerGui.Start.Settings.Options.Module).ViewLock(1)
  1441. end
  1442. end)
  1443.  
  1444. LPPage:CreateToggle("Tool Tips", "Turning On/Off Tool Tips", function(arg)
  1445. if arg then
  1446. require(game:GetService("Players").LocalPlayer.PlayerGui.Start.Settings.Options.Module).ToolTips(1)
  1447. else
  1448. require(game:GetService("Players").LocalPlayer.PlayerGui.Start.Settings.Options.Module).ToolTips(2)
  1449. end
  1450. end)
  1451.  
  1452. LPPage:CreateSlider("Brightness", 0, 7,function(arg)
  1453. require(game:GetService("Players").LocalPlayer.PlayerGui.Start.Settings.Options.Module).Brightness(arg)
  1454. end)
  1455.  
  1456. LPPage:CreateSlider("Graphics Quality", 0, 4,function(arg)
  1457. require(game:GetService("Players").LocalPlayer.PlayerGui.Start.Settings.Options.Module).Quality(arg)
  1458. end)
  1459.  
  1460. LPPage:CreateSlider("FOV", 70, 120,function(arg)
  1461. game.Workspace.CurrentCamera.FieldOfView = arg
  1462. end)
  1463.  
  1464. LPPage:CreateLabel("Level Spoofer")
  1465.  
  1466. LPPage:CreateBox("Level", 10044538000, function(arg)
  1467. local Targets
  1468. Targets = tonumber(arg)
  1469. wait(0.1)
  1470. local mt = getrawmetatable(game);
  1471. setreadonly(mt, false);
  1472. local old_index = mt.__index;
  1473. mt.__index = function(a, b)
  1474. if tostring(a) == "PPLevel" or tostring(a) == "Level" then
  1475. if tostring(b) == "Value" then
  1476. return Targets;
  1477. end
  1478. end
  1479. return old_index(a, b);
  1480. end
  1481. end)
  1482.  
  1483. LPPage:CreateBox("XP", 10044538000, function(arg)
  1484. local Targetz
  1485. Targetz = tonumber(arg)
  1486. wait(0.1)
  1487. local mt = getrawmetatable(game);
  1488. setreadonly(mt, false);
  1489. local old_index = mt.__index;
  1490. mt.__index = function(a, b)
  1491. if tostring(a) == "XP" then
  1492. if tostring(b) == "Value" then
  1493. return Targetz;
  1494. end
  1495. end
  1496. return old_index(a, b);
  1497. end
  1498. end)
  1499.  
  1500. LPPage:CreateLabel("Power Shot")
  1501.  
  1502. LPPage:CreateToggle("Always Power Ready", "Each Time You Press 'Z', Power Will Be Ready/Activated", function(arg)
  1503. if arg then
  1504. _G.READY = true
  1505. while _G.READY do
  1506. wait()
  1507. for i,v in pairs(game.Players.LocalPlayer:GetDescendants()) do
  1508. if v.Name == "PowerReady" and v:IsA("BoolValue") then
  1509. v.Value = true
  1510. end
  1511. end
  1512. end
  1513. else
  1514. _G.READY = false
  1515. end
  1516. end)
  1517.  
  1518. LPPage:CreateButton("Activate Power", "Power Will Be Activated", function()
  1519. game.Players.LocalPlayer.Backpack.PowerActive.Value = true
  1520. end)
  1521.  
  1522. LPPage:CreateSlider("Power Cooldown", 0, 60,function(arg)
  1523. for i,v in pairs(game.Players.LocalPlayer:GetDescendants()) do
  1524. if v.Name == "PowerValue" and v:IsA("NumberValue") then
  1525. v.Value = arg
  1526. end
  1527. end
  1528. end)
  1529.  
  1530.  
  1531. LPPage:CreateLabel("Gamepasses")
  1532.  
  1533. LPPage:CreateButton("Enable GamepassController", "Probably Allows You To Use Gamepasses From Players", function()
  1534. local mt = getrawmetatable(game);
  1535. setreadonly(mt, false);
  1536. local old_index = mt.__index;
  1537. mt.__index = function(a, b)
  1538. if tostring(a) == "GamePassController" or tostring(a) == "GamePassControllerFix" or tostring(a) == "GamePassC" then
  1539. if tostring(b) == "Enabled" then
  1540. return true;
  1541. elseif tostring(b) == "Disabled" then
  1542. return false;
  1543. end
  1544. end
  1545. return old_index(a, b);
  1546. end
  1547.  
  1548. wait(.5)
  1549. game:GetService("Workspace").FE.Store.Check:FireServer()
  1550. end)
  1551.  
  1552. LPPage:CreateButton("Unlock Celebration Packs", "Unlocking Every Celebration Pack", function()
  1553. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack1.Tick.Visible = true
  1554. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack1.CelebrationPack1.Style = "RobloxRoundButton"
  1555. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack2.Tick.Visible = true
  1556. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack2.CelebrationPack2.Style = "RobloxRoundButton"
  1557. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack3.Tick.Visible = true
  1558. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack3.CelebrationPack3.Style = "RobloxRoundButton"
  1559. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack4.Tick.Visible = true
  1560. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack4.CelebrationPack4.Style = "RobloxRoundButton"
  1561. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack5.Tick.Visible = true
  1562. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack5.CelebrationPack5.Style = "RobloxRoundButton"
  1563. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack6.Tick.Visible = true
  1564. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack6.CelebrationPack6.Style = "RobloxRoundButton"
  1565. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack7.Tick.Visible = true
  1566. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.CelebrationPack7.CelebrationPack7.Style = "RobloxRoundButton"
  1567.  
  1568. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.Package1.Button.Visible = false
  1569. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.Package2.Button.Visible = false
  1570. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.Package3.Button.Visible = false
  1571. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.Package4.Button.Visible = false
  1572. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.Package5.Button.Visible = false
  1573. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.Package6.Button.Visible = false
  1574. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.Package7.Button.Visible = false
  1575.  
  1576. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF04.Active = true
  1577. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF04.Selectable = true
  1578. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF04.Script.Disabled = false
  1579. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF05.Active = true
  1580. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF05.Selectable = true
  1581. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF05.Script.Disabled = false
  1582. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF06.Active = true
  1583. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF06.Selectable = true
  1584. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF06.Script.Disabled = false
  1585.  
  1586. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF07.Active = true
  1587. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF07.Selectable = true
  1588. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF07.Script.Disabled = false
  1589. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF08.Active = true
  1590. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF08.Selectable = true
  1591. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF08.Script.Disabled = false
  1592. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF09.Active = true
  1593. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF09.Selectable = true
  1594. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF09.Script.Disabled = false
  1595.  
  1596. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF10.Active = true
  1597. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF10.Selectable = true
  1598. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF10.Script.Disabled = false
  1599. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF11.Active = true
  1600. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF11.Selectable = true
  1601. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF11.Script.Disabled = false
  1602. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF12.Active = true
  1603. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF12.Selectable = true
  1604. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF12.Script.Disabled = false
  1605.  
  1606. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF13.Active = true
  1607. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF13.Selectable = true
  1608. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF13.Script.Disabled = false
  1609. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF14.Active = true
  1610. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF14.Selectable = true
  1611. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF14.Script.Disabled = false
  1612. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF15.Active = true
  1613. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF15.Selectable = true
  1614. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF15.Script.Disabled = false
  1615.  
  1616. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF16.Active = true
  1617. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF16.Selectable = true
  1618. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF16.Script.Disabled = false
  1619. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF17.Active = true
  1620. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF17.Selectable = true
  1621. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF17.Script.Disabled = false
  1622. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF18.Active = true
  1623. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF18.Selectable = true
  1624. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF18.Script.Disabled = false
  1625. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF19.Active = true
  1626. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF19.Selectable = true
  1627. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF19.Script.Disabled = false
  1628. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF20.Active = true
  1629. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF20.Selectable = true
  1630. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF20.Script.Disabled = false
  1631. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF21.Active = true
  1632. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF21.Selectable = true
  1633. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF21.Script.Disabled = false
  1634. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF22.Active = true
  1635. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF22.Selectable = true
  1636. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF22.Script.Disabled = false
  1637. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF23.Active = true
  1638. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF23.Selectable = true
  1639. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF23.Script.Disabled = false
  1640. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF24.Active = true
  1641. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF24.Selectable = true
  1642. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF24.Script.Disabled = false
  1643.  
  1644.  
  1645. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF04.MouseButton1Click:Connect(function()
  1646. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration4()
  1647. end)
  1648.  
  1649. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF05.MouseButton1Click:Connect(function()
  1650. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration5()
  1651. end)
  1652.  
  1653. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF06.MouseButton1Click:Connect(function()
  1654. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration6()
  1655. end)
  1656.  
  1657.  
  1658. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF07.MouseButton1Click:Connect(function()
  1659. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration7()
  1660. end)
  1661.  
  1662.  
  1663. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF08.MouseButton1Click:Connect(function()
  1664. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration8()
  1665. end)
  1666.  
  1667.  
  1668. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF09.MouseButton1Click:Connect(function()
  1669. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration9()
  1670. end)
  1671.  
  1672.  
  1673. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF10.MouseButton1Click:Connect(function()
  1674. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration10()
  1675. end)
  1676.  
  1677.  
  1678. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF11.MouseButton1Click:Connect(function()
  1679. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration11()
  1680. end)
  1681.  
  1682.  
  1683. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF12.MouseButton1Click:Connect(function()
  1684. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration12()
  1685. end)
  1686.  
  1687.  
  1688. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF13.MouseButton1Click:Connect(function()
  1689. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration13()
  1690. end)
  1691.  
  1692.  
  1693. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF14.MouseButton1Click:Connect(function()
  1694. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration14()
  1695. end)
  1696.  
  1697.  
  1698. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF15.MouseButton1Click:Connect(function()
  1699. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration15()
  1700. end)
  1701.  
  1702.  
  1703. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF16.MouseButton1Click:Connect(function()
  1704. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration16()
  1705. end)
  1706.  
  1707.  
  1708. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF17.MouseButton1Click:Connect(function()
  1709. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration17()
  1710. end)
  1711.  
  1712.  
  1713. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF18.MouseButton1Click:Connect(function()
  1714. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration18()
  1715. end)
  1716.  
  1717. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF19.MouseButton1Click:Connect(function()
  1718. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration19()
  1719. end)
  1720.  
  1721. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF20.MouseButton1Click:Connect(function()
  1722. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration20()
  1723. end)
  1724.  
  1725. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF21.MouseButton1Click:Connect(function()
  1726. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration21()
  1727. end)
  1728.  
  1729. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF22.MouseButton1Click:Connect(function()
  1730. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration22()
  1731. end)
  1732.  
  1733. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF23.MouseButton1Click:Connect(function()
  1734. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration23()
  1735. end)
  1736.  
  1737. game:GetService("Players").LocalPlayer.PlayerGui.Start.Celebrations.CelebrationsSelect.SF24.MouseButton1Click:Connect(function()
  1738. require(game.Players.LocalPlayer.Backpack.CelebrationsModule).Celebration24()
  1739. end)
  1740. end)
  1741.  
  1742. LPPage:CreateToggle("Blue Flame", "Flame Color Effect Will Be Blue Now.", function(arg)
  1743. if arg then
  1744. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.BlueFlame.Tick.Visible = true
  1745. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.BlueFlame.BlueFlame.Style = "RobloxRoundButton"
  1746. game:GetService("Players").LocalPlayer.PlayerGui.Start.PowerShot.Image = "rbxassetid://5366457711"
  1747. game:GetService("Players").LocalPlayer.Backpack.FValue.Value = 2
  1748. else
  1749. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.BlueFlame.Tick.Visible = false
  1750. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.BlueFlame.BlueFlame.Style = "RobloxRoundDefaultButton"
  1751. game:GetService("Players").LocalPlayer.PlayerGui.Start.PowerShot.Image = "rbxassetid://1595877615"
  1752. game:GetService("Players").LocalPlayer.Backpack.FValue.Value = 1
  1753. end
  1754. end)
  1755.  
  1756. LPPage:CreateToggle("Blue Flame", "Flame Color Effect Will Be Blue Now.", function(arg)
  1757. if arg then
  1758. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.BlueFlame.Tick.Visible = true
  1759. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.BlueFlame.BlueFlame.Style = "RobloxRoundButton"
  1760. game:GetService("Players").LocalPlayer.PlayerGui.Start.PowerShot.Image = "rbxassetid://5366457711"
  1761. game:GetService("Players").LocalPlayer.Backpack.FValue.Value = 2
  1762. else
  1763. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.BlueFlame.Tick.Visible = false
  1764. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.BlueFlame.BlueFlame.Style = "RobloxRoundDefaultButton"
  1765. game:GetService("Players").LocalPlayer.PlayerGui.Start.PowerShot.Image = "rbxassetid://1595877615"
  1766. game:GetService("Players").LocalPlayer.Backpack.FValue.Value = 1
  1767. end
  1768. end)
  1769.  
  1770. local AnimationCurveLoop
  1771.  
  1772. LPPage:CreateToggle("More Curve", "The Ball Curves More", function(arg)
  1773. if arg then
  1774. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.WoodenFloor.Tick.Visible = true
  1775. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.WoodenFloor.WoodenFloor.Style = "RobloxRoundButton"
  1776.  
  1777. local Humanoid = game.Players.LocalPlayer.Character.Humanoid
  1778.  
  1779. AnimationCurveLoop = Humanoid.AnimationPlayed:Connect(function(AnimationTrack)
  1780. if AnimationTrack.Name == "OldMKickL" or AnimationTrack.Name == "OldMKick" or AnimationTrack.Name == "OldLKickL" or AnimationTrack.Name == "OldLKick" or AnimationTrack.Name == "MKickL" or AnimationTrack.Name == "MKick" or AnimationTrack.Name == "LKickL" or AnimationTrack.Name == "LKick" or AnimationTrack.Name == "OldDribbleL" or AnimationTrack.Name == "OldDribble" or AnimationTrack.Name == "DribbleL" or AnimationTrack.Name == "Dribble" then
  1781. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude < 3.45 then
  1782. if game.Players.LocalPlayer.Backpack.Curving.Value == 2 then
  1783. wait(0.1)
  1784. local A_1T = game:GetService("Workspace").TPSSystem.TPS
  1785. local A_2T = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1786. local EventT = game:GetService("Workspace").FE.Actions.KickC1
  1787. EventT:FireServer(A_1T, A_2T)
  1788. wait(0.2)
  1789. EventT:FireServer(A_1T, A_2T)
  1790.  
  1791. elseif game.Players.LocalPlayer.Backpack.Curving.Value == 1 then
  1792. wait(0.1)
  1793. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  1794. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1795. local Event = game:GetService("Workspace").FE.Actions.KickC2
  1796. Event:FireServer(A_1, A_2)
  1797. wait(0.2)
  1798. Event:FireServer(A_1, A_2)
  1799.  
  1800. end
  1801. end
  1802. end
  1803. end)
  1804. else
  1805. AnimationCurveLoop:Disconnect()
  1806. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.WoodenFloor.Tick.Visible = false
  1807. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.WoodenFloor.WoodenFloor.Style = "RobloxRoundDefaultButton"
  1808. end
  1809. end)
  1810.  
  1811. LPPage:CreateToggle("Frozen Ball", "Freezes The Flame Ball When It Touched You. Ice Is NON-FE", function(arg)
  1812. if arg then
  1813. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.Frozen.Tick.Visible = true
  1814. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.Frozen.Frozen.Style = "RobloxRoundButton"
  1815.  
  1816. _G.FROZEN = true
  1817. while _G.FROZEN do
  1818. wait()
  1819. game:GetService("Players").LocalPlayer.Backpack.Frozen.Value = true
  1820. for i,v in pairs(game.Workspace:GetDescendants()) do
  1821. if v.Name == "TPS" and v:IsA("Part") then
  1822. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= 5 then
  1823. if v.Fire.Enabled == true or v.FireB.Enabled == true then
  1824. v.BrickColor = BrickColor.new("Cyan")
  1825. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  1826. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1827. local A_3 = 0
  1828. local A_4 = Vector3.new(4000000, 300, 4000000)
  1829. local Event = game:GetService("Workspace").FE.Actions.KickG1
  1830. Event:FireServer(A_1, A_2, A_3, A_4)
  1831. wait(.1)
  1832. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  1833. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1834. local A_3 = 0
  1835. local A_4 = Vector3.new(4000000, 300, 4000000)
  1836. local Event = game:GetService("Workspace").FE.Actions.KickG1
  1837. Event:FireServer(A_1, A_2, A_3, A_4)
  1838. wait(2.4)
  1839. v.BrickColor = BrickColor.new("Institutional white")
  1840. end
  1841. end
  1842. end
  1843. end
  1844. end
  1845. else
  1846. game:GetService("Players").LocalPlayer.Backpack.Frozen.Value = false
  1847. _G.FROZEN = false
  1848. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.Frozen.Tick.Visible = false
  1849. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.Frozen.Frozen.Style = "RobloxRoundDefaultButton"
  1850. end
  1851. end)
  1852.  
  1853. LPPage:CreateToggle("Faster Cooldown", "Reduces The Power Show Cooldown By 50% (30)", function(arg)
  1854. if arg then
  1855. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.Cooldown.Tick.Visible = true
  1856. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.Cooldown.Cooldown.Style = "RobloxRoundButton"
  1857. game:GetService("Players").LocalPlayer.PlayerGui.Start.PowerShot.PowerValue.Value = 30
  1858. else
  1859. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.Cooldown.Cooldown.Style = "RobloxRoundDefaultButton"
  1860. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.Cooldown.Tick.Visible = false
  1861. game:GetService("Players").LocalPlayer.PlayerGui.Start.PowerShot.PowerValue.Value = 60
  1862. end
  1863. end)
  1864.  
  1865. local AnimationTackleLoop
  1866.  
  1867. LPPage:CreateToggle("Powerful Tackle [BUGGY]", "Your Tackle Will Be Powerful. Very Buggy - Don't Recommend To Use", function(arg)
  1868. if arg then
  1869. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.RandomWeather.Tick.Visible = true
  1870. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.RandomWeather.RandomWeather.Style = "RobloxRoundButton"
  1871. game:GetService("Players").LocalPlayer.PlayerGui.Start.TackleGamePass.Value = true
  1872.  
  1873. local Humanoid = game.Players.LocalPlayer.Character.Humanoid
  1874.  
  1875. AnimationTackleLoop = Humanoid.AnimationPlayed:Connect(function(AnimationTrack)
  1876. if AnimationTrack.Name == "TackleL" or AnimationTrack.Name == "Tackle" or AnimationTrack.Name == "OldTackleL" or AnimationTrack.Name == "OldTackle" then
  1877. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude < 4.87 then
  1878. wait(0.8)
  1879. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  1880. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1881. local A_3 = 30
  1882. local A_4 = Vector3.new(4000000, 700, 4000000)
  1883. local Event = game:GetService("Workspace").FE.Actions.KickG1
  1884. Event:FireServer(A_1, A_2, A_3, A_4)
  1885.  
  1886. end
  1887. end
  1888. end)
  1889. else
  1890. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.RandomWeather.Tick.Visible = false
  1891. game:GetService("Players").LocalPlayer.PlayerGui.Start.GamePassMenu.Items.RandomWeather.RandomWeather.Style = "RobloxRoundDefaultButton"
  1892. game:GetService("Players").LocalPlayer.PlayerGui.Start.TackleGamePass.Value = false
  1893. AnimationTackleLoop:Disconnect()
  1894. end
  1895. end)
  1896.  
  1897. PPage:CreateLabel("Users")
  1898. local Target
  1899.  
  1900. PPage:CreateBox("Player's Name", 10044538000, function(arg)
  1901. Target = unpack(GetPlayer(arg))
  1902. end)
  1903.  
  1904. PPage:CreateButton("Kill Player", "Kill Player In The Server. Burn Needed", function()
  1905. local Event = game:GetService("Workspace").FE.Powers.Burn
  1906. Event:FireServer()
  1907.  
  1908. wait(0.25)
  1909. game.Players.LocalPlayer.Character.HumanoidRootPart.Fire:Destroy()
  1910. game.Players.LocalPlayer.Character.HumanoidRootPart.PointLight:Destroy()
  1911. for i,v in pairs(Target.Character:GetChildren()) do
  1912. if v:IsA("BasePart") then
  1913. v.Anchored = true
  1914. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1915. end
  1916. end
  1917. end)
  1918.  
  1919. PPage:CreateButton("Kill All", "Kill All In The Server. Burn Needed", function()
  1920. local Event = game:GetService("Workspace").FE.Powers.Burn
  1921. Event:FireServer()
  1922.  
  1923. wait(0.25)
  1924. game.Players.LocalPlayer.Character.HumanoidRootPart.PointLight:Destroy()
  1925. game.Players.LocalPlayer.Character.HumanoidRootPart.Fire:Destroy()
  1926. for i, v1 in pairs(game.Players:GetPlayers()) do
  1927. if v1.Name ~= game.Players.LocalPlayer.Name then
  1928. local Character = v1.Character
  1929. for i,v in pairs(Character:GetChildren()) do
  1930. if v:IsA("BasePart") then
  1931. v.Anchored = true
  1932. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1933. end
  1934. end
  1935. end
  1936. end
  1937. end)
  1938.  
  1939. PPage:CreateButton("Kill The Blue Team", "Kill Only The Blue Team. Burn Needed", function()
  1940. local Event = game:GetService("Workspace").FE.Powers.Burn
  1941. Event:FireServer()
  1942.  
  1943. wait(0.25)
  1944. game.Players.LocalPlayer.Character.HumanoidRootPart.Fire:Destroy()
  1945. game.Players.LocalPlayer.Character.HumanoidRootPart.PointLight:Destroy()
  1946. for i, v1 in pairs(game.Players:GetPlayers()) do
  1947. if v1.Name ~= game.Players.LocalPlayer.Name and v1.TeamColor == BrickColor.new("Bright blue") then
  1948. local Character = v1.Character
  1949. for i,v in pairs(Character:GetChildren()) do
  1950. if v:IsA("BasePart") then
  1951. v.Anchored = true
  1952. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1953. end
  1954. end
  1955. end
  1956. end
  1957. end)
  1958.  
  1959. PPage:CreateButton("Kill The Red Team", "Kill Only The Red Team. Burn Needed", function()
  1960. local Event = game:GetService("Workspace").FE.Powers.Burn
  1961. Event:FireServer()
  1962.  
  1963. wait(0.25)
  1964. game.Players.LocalPlayer.Character.HumanoidRootPart.Fire:Destroy()
  1965. game.Players.LocalPlayer.Character.HumanoidRootPart.PointLight:Destroy()
  1966. for i, v1 in pairs(game.Players:GetPlayers()) do
  1967. if v1.Name ~= game.Players.LocalPlayer.Name and v1.TeamColor == BrickColor.new("Bright red") then
  1968. local Character = v1.Character
  1969. for i,v in pairs(Character:GetChildren()) do
  1970. if v:IsA("BasePart") then
  1971. v.Anchored = true
  1972. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1973. end
  1974. end
  1975. end
  1976. end
  1977. end)
  1978.  
  1979. PPage:CreateButton("Fix Players", "Fixing Player's Parts", function()
  1980. for i, v1 in pairs(game.Players:GetPlayers()) do
  1981. if v1.Name ~= game.Players.LocalPlayer.Name then
  1982. local Character = v1.Character
  1983. for i,v in pairs(Character:GetChildren()) do
  1984. if v:IsA("BasePart") then
  1985. v.Anchored = false
  1986. end
  1987. end
  1988. end
  1989. end
  1990. end)
  1991.  
  1992. PPage:CreateButton("Teleport To Player", "Teleporting To Player", function()
  1993. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
  1994. end)
  1995.  
  1996. local LoopTPPlay
  1997. local LoopClosePlayer
  1998.  
  1999. PPage:CreateToggle("Loop Teleport Under Player", "Used For Trolling: Crash The Ball Or Kicks", function(arg)
  2000. if arg then
  2001. LoopTPPlay = game:GetService("RunService").Heartbeat:Connect(function()
  2002. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame + Vector3.new(0, -17, 0)
  2003. end)
  2004.  
  2005. for i,v in pairs(game.Workspace:GetDescendants()) do
  2006. if v.Name == "Dirt" or v.Name == "SoccerField" and v:IsA("Part") then
  2007. v.LocalTransparencyModifier = 0.50
  2008. end
  2009. end
  2010.  
  2011. for i,b in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
  2012. if b:IsA("BillboardGui") then
  2013. b:Destroy()
  2014. end
  2015. end
  2016. else
  2017. LoopTPPlay:Disconnect()
  2018. wait(1.5)
  2019. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Lines.Line12.CFrame
  2020. for i,v in pairs(game.Workspace:GetDescendants()) do
  2021. if v.Name == "Dirt" or v.Name == "SoccerField" and v:IsA("Part") then
  2022. v.LocalTransparencyModifier = 0
  2023. end
  2024. end
  2025. end
  2026. end)
  2027.  
  2028. PPage:CreateToggle("Loop Teleport Under Closest Player", "Loop Teleporting Under Player Who Is Near Ball", function(arg)
  2029. if arg then
  2030. local Distance = 500
  2031.  
  2032. LoopClosePlayer = game:GetService("RunService").Heartbeat:Connect(function()
  2033. local NearestPlayer, NearestDistance
  2034. for _, player in pairs(game.Players:GetPlayers()) do
  2035. if player.Name ~= game.Players.LocalPlayer.Name then
  2036. local Character = player.Character
  2037. local DistanceCharacter = player:DistanceFromCharacter(game.Workspace.TPSSystem.TPS.Position)
  2038. if not Character or
  2039. DistanceCharacter > Distance or
  2040. (NearestDistance and DistanceCharacter >= NearestDistance)
  2041. then
  2042. continue
  2043. end
  2044. NearestDistance = DistanceCharacter
  2045. NearestPlayer = player
  2046. end
  2047. end
  2048. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NearestPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, -17, 0)
  2049. end)
  2050.  
  2051. for i,v in pairs(game.Workspace:GetDescendants()) do
  2052. if v.Name == "Dirt" or v.Name == "SoccerField" and v:IsA("Part") then
  2053. v.LocalTransparencyModifier = 0.50
  2054. end
  2055. end
  2056.  
  2057. for i,b in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
  2058. if b:IsA("BillboardGui") then
  2059. b:Destroy()
  2060. end
  2061. end
  2062. else
  2063. LoopClosePlayer:Disconnect()
  2064. wait(1.5)
  2065. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Lines.Line12.CFrame
  2066. for i,v in pairs(game.Workspace:GetDescendants()) do
  2067. if v.Name == "Dirt" or v.Name == "SoccerField" and v:IsA("Part") then
  2068. v.LocalTransparencyModifier = 0
  2069. end
  2070. end
  2071. end
  2072. end)
  2073.  
  2074. local ViewHumDiew
  2075. local ViewCamChanged
  2076.  
  2077. PPage:CreateToggle("View Player", "Spectate The Player", function(arg)
  2078. if arg then
  2079. if ViewHumDiew then
  2080. ViewHumDiew:Disconnect()
  2081. ViewCamChanged:Disconnect()
  2082. end
  2083. Viewing = Target
  2084. game.Workspace.CurrentCamera.CameraSubject = Viewing.Character
  2085. local function ViewDied()
  2086. repeat wait() until Target.Character ~= nil
  2087. game.Workspace.CurrentCamera.CameraSubject = Viewing.Character
  2088. end
  2089. ViewHumDied = Target.CharacterAdded:Connect(ViewDied)
  2090. local function ViewChangedF()
  2091. game.Workspace.CurrentCamera.CameraSubject = Viewing.Character
  2092. end
  2093. ViewCamChanged = game.Workspace.CurrentCamera:GetPropertyChangedSignal("CameraSubject"):Connect(ViewChangedF)
  2094. else
  2095. if Viewing ~= nil then
  2096. Viewing = nil
  2097. end
  2098. if ViewHumDied then
  2099. ViewHumDied:Disconnect()
  2100. ViewCamChanged:Disconnect()
  2101. end
  2102. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  2103. end
  2104. end)
  2105.  
  2106. PPage:CreateLabel("Stats")
  2107.  
  2108. local Targeted
  2109. local LabelClaimedRewards
  2110. local LabelGoals
  2111. local LabelSaves
  2112. local LabelGames
  2113. local LabelAssist
  2114. local LabelKOs
  2115. local LabelMOTM
  2116. local LabelLevel
  2117. local LabelXP
  2118. local LabelBombs
  2119. local LabelSpikes
  2120. local LabelBurns
  2121. local LabelWalls
  2122. local LabelQuality
  2123. local LabelBrightness
  2124. local LabelFOV
  2125. local LabelFoot
  2126. local LabelToolT
  2127. local LabelVib
  2128. local LabelViewL
  2129.  
  2130. PPage:CreateBox("Player Name", 10044538000, function(arg)
  2131. Targeted = unpack(GetPlayer(arg))
  2132. wait(0.1)
  2133. LabelClaimedRewards:UpdateLabel("Claim Rewards: ".. game.Lighting[Targeted.Name].ClaimReward.Value)
  2134. LabelGoals:UpdateLabel("Goals: ".. game.Lighting[Targeted.Name].Goals.Value)
  2135. LabelSaves:UpdateLabel("Saves: ".. game.Lighting[Targeted.Name].Saves.Value)
  2136. LabelGames:UpdateLabel("Games: ".. game.Lighting[Targeted.Name].Games.Value)
  2137. LabelAssist:UpdateLabel("Assists: ".. game.Lighting[Targeted.Name].Assist.Value)
  2138. LabelKOs:UpdateLabel("Knockouts [KO]: ".. game.Lighting[Targeted.Name].KOs.Value)
  2139. LabelMOTM:UpdateLabel("Player Of The Match: ".. game.Lighting[Targeted.Name].MOTM.Value)
  2140. LabelLevel:UpdateLabel("Level: ".. game.Lighting[Targeted.Name].Level.Value)
  2141. LabelXP:UpdateLabel("Experience Point [XP]: ".. game.Lighting[Targeted.Name].XP.Value)
  2142. LabelBombs:UpdateLabel("Bombs: ".. game.Lighting[Targeted.Name].Bomb.Value)
  2143. LabelSpikes:UpdateLabel("Spikes: ".. game.Lighting[Targeted.Name].Spike.Value)
  2144. LabelBurns:UpdateLabel("Burns: ".. game.Lighting[Targeted.Name].Burn.Value)
  2145. LabelWalls:UpdateLabel("Walls: ".. game.Lighting[Targeted.Name].Wall.Value)
  2146. LabelQuality:UpdateLabel("Graphics Quality: ".. game.Lighting[Targeted.Name].Quality.Value)
  2147. LabelBrightness:UpdateLabel("Brightness: ".. game.Lighting[Targeted.Name].Brightness.Value)
  2148. LabelFOV:UpdateLabel("Field Of View [FOV]: ".. game.Lighting[Targeted.Name].FOVS.Value)
  2149. LabelFoot:UpdateLabel("Preferred Foot: ".. game.Lighting[Targeted.Name].PreferredFoot.Value)
  2150. LabelToolT:UpdateLabel("Tool Tips: ".. game.Lighting[Targeted.Name].ToolTips.Value)
  2151. LabelVib:UpdateLabel("Vibration: ".. game.Lighting[Targeted.Name].Vibration.Value)
  2152. LabelViewL:UpdateLabel("ViewLock: ".. game.Lighting[Targeted.Name].ViewLock.Value)
  2153. end)
  2154.  
  2155. PPage:CreateToggle("Auto Update Stats", "Every Two Seconds Information Updates", function(arg)
  2156. if arg then
  2157. _G.INF = true
  2158. while _G.INF do
  2159. wait(2)
  2160. LabelClaimedRewards:UpdateLabel("Claim Rewards: ".. game.Lighting[Targeted.Name].ClaimReward.Value)
  2161. LabelGoals:UpdateLabel("Goals: ".. game.Lighting[Targeted.Name].Goals.Value)
  2162. LabelSaves:UpdateLabel("Saves: ".. game.Lighting[Targeted.Name].Saves.Value)
  2163. LabelGames:UpdateLabel("Games: ".. game.Lighting[Targeted.Name].Games.Value)
  2164. LabelAssist:UpdateLabel("Assists: ".. game.Lighting[Targeted.Name].Assist.Value)
  2165. LabelKOs:UpdateLabel("Knockouts [KO]: ".. game.Lighting[Targeted.Name].KOs.Value)
  2166. LabelMOTM:UpdateLabel("Player Of The Match: ".. game.Lighting[Targeted.Name].MOTM.Value)
  2167. LabelLevel:UpdateLabel("Level: ".. game.Lighting[Targeted.Name].Level.Value)
  2168. LabelXP:UpdateLabel("Experience Point [XP]: ".. game.Lighting[Targeted.Name].XP.Value)
  2169. LabelBombs:UpdateLabel("Bombs: ".. game.Lighting[Targeted.Name].Bomb.Value)
  2170. LabelSpikes:UpdateLabel("Spikes: ".. game.Lighting[Targeted.Name].Spike.Value)
  2171. LabelBurns:UpdateLabel("Burns: ".. game.Lighting[Targeted.Name].Burn.Value)
  2172. LabelWalls:UpdateLabel("Walls: ".. game.Lighting[Targeted.Name].Wall.Value)
  2173. LabelQuality:UpdateLabel("Graphics Quality: ".. game.Lighting[Targeted.Name].Quality.Value)
  2174. LabelBrightness:UpdateLabel("Brightness: ".. game.Lighting[Targeted.Name].Brightness.Value)
  2175. LabelFOV:UpdateLabel("Field Of View [FOV]: ".. game.Lighting[Targeted.Name].FOVS.Value)
  2176. LabelFoot:UpdateLabel("Preferred Foot: ".. game.Lighting[Targeted.Name].PreferredFoot.Value)
  2177. LabelToolT:UpdateLabel("Tool Tips: ".. game.Lighting[Targeted.Name].ToolTips.Value)
  2178. LabelVib:UpdateLabel("Vibration: ".. game.Lighting[Targeted.Name].Vibration.Value)
  2179. LabelViewL:UpdateLabel("ViewLock: ".. game.Lighting[Targeted.Name].ViewLock.Value)
  2180. end
  2181. else
  2182. _G.INF = false
  2183. end
  2184. end)
  2185.  
  2186. PPage:CreateButton("Update Stats", "Update Player's Stats", function()
  2187. LabelClaimedRewards:UpdateLabel("Claim Rewards: ".. game.Lighting[Targeted.Name].ClaimReward.Value)
  2188. LabelGoals:UpdateLabel("Goals: ".. game.Lighting[Targeted.Name].Goals.Value)
  2189. LabelSaves:UpdateLabel("Saves: ".. game.Lighting[Targeted.Name].Saves.Value)
  2190. LabelGames:UpdateLabel("Games: ".. game.Lighting[Targeted.Name].Games.Value)
  2191. LabelAssist:UpdateLabel("Assists: ".. game.Lighting[Targeted.Name].Assist.Value)
  2192. LabelKOs:UpdateLabel("Knockouts [KO]: ".. game.Lighting[Targeted.Name].KOs.Value)
  2193. LabelMOTM:UpdateLabel("Player Of The Match: ".. game.Lighting[Targeted.Name].MOTM.Value)
  2194. LabelLevel:UpdateLabel("Level: ".. game.Lighting[Targeted.Name].Level.Value)
  2195. LabelXP:UpdateLabel("Experience Point [XP]: ".. game.Lighting[Targeted.Name].XP.Value)
  2196. LabelBombs:UpdateLabel("Bombs: ".. game.Lighting[Targeted.Name].Bomb.Value)
  2197. LabelSpikes:UpdateLabel("Spikes: ".. game.Lighting[Targeted.Name].Spike.Value)
  2198. LabelBurns:UpdateLabel("Burns: ".. game.Lighting[Targeted.Name].Burn.Value)
  2199. LabelWalls:UpdateLabel("Walls: ".. game.Lighting[Targeted.Name].Wall.Value)
  2200. LabelQuality:UpdateLabel("Graphics Quality: ".. game.Lighting[Targeted.Name].Quality.Value)
  2201. LabelBrightness:UpdateLabel("Brightness: ".. game.Lighting[Targeted.Name].Brightness.Value)
  2202. LabelFOV:UpdateLabel("Field Of View [FOV]: ".. game.Lighting[Targeted.Name].FOVS.Value)
  2203. LabelFoot:UpdateLabel("Preferred Foot: ".. game.Lighting[Targeted.Name].PreferredFoot.Value)
  2204. LabelToolT:UpdateLabel("Tool Tips: ".. game.Lighting[Targeted.Name].ToolTips.Value)
  2205. LabelVib:UpdateLabel("Vibration: ".. game.Lighting[Targeted.Name].Vibration.Value)
  2206. LabelViewL:UpdateLabel("ViewLock: ".. game.Lighting[Targeted.Name].ViewLock.Value)
  2207. end)
  2208.  
  2209. LabelClaimedRewards = PPage:CreateLabel("Claim Rewards: 33")
  2210. LabelGoals = PPage:CreateLabel("Goals: 0")
  2211. LabelSaves = PPage:CreateLabel("Saves: 0")
  2212. LabelGames = PPage:CreateLabel("Games: 0")
  2213. LabelAssist = PPage:CreateLabel("Assists: 0")
  2214. LabelKOs = PPage:CreateLabel("Knockouts [KO]: 0")
  2215. LabelMOTM = PPage:CreateLabel("Player Of The Match: 0")
  2216. LabelLevel = PPage:CreateLabel("Level: 1")
  2217. LabelXP = PPage:CreateLabel("Experience Point [XP]: 0")
  2218. LabelBombs = PPage:CreateLabel("Bombs: 0")
  2219. LabelSpikes = PPage:CreateLabel("Spikes: 0")
  2220. LabelBurns = PPage:CreateLabel("Burns: 0")
  2221. LabelWalls = PPage:CreateLabel("Walls: 0")
  2222. LabelQuality = PPage:CreateLabel("Graphics Quality: 2")
  2223. LabelBrightness = PPage:CreateLabel("Brightness: 4")
  2224. LabelFOV = PPage:CreateLabel("Field Of View [FOV]: 80")
  2225. LabelFoot = PPage:CreateLabel("Preferred Foot: 1")
  2226. LabelToolT = PPage:CreateLabel("Tool Tips: 1")
  2227. LabelVib = PPage:CreateLabel("Vibration: 2")
  2228. LabelViewL = PPage:CreateLabel("ViewLock: 1")
  2229.  
  2230. KPage:CreateLabel("Striker")
  2231.  
  2232. KPage:CreateToggle("Very Super KickG1", "Regular Kick, But Very Super", function(arg)
  2233. if arg then
  2234. _G.SKickG1 = true
  2235. while _G.SKickG1 do
  2236. wait()
  2237. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2238. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2239. local A_3 = 70
  2240. local A_4 = Vector3.new(math.huge, math.huge, math.huge)
  2241. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2242. Event:FireServer(A_1, A_2, A_3, A_4)
  2243. end
  2244.  
  2245. else
  2246. _G.SKickG1 = false
  2247. end
  2248. end)
  2249.  
  2250. KPage:CreateToggle("Very Super KickC1", "Right Curve, But Very Super", function(arg)
  2251. if arg then
  2252. _G.SKickC1 = true
  2253. while _G.SKickC1 do
  2254. wait()
  2255. for i = 1, 10 do
  2256. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2257. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2258. local Event = game:GetService("Workspace").FE.Actions.KickC1
  2259. Event:FireServer(A_1, A_2)
  2260. end
  2261. end
  2262.  
  2263. else
  2264. _G.SKickC1 = false
  2265. end
  2266. end)
  2267.  
  2268. KPage:CreateToggle("Very Super KickC2", "Left Curve, But Very Super", function(arg)
  2269. if arg then
  2270. _G.SKickC2 = true
  2271. while _G.SKickC2 do
  2272. wait()
  2273. for i = 1, 10 do
  2274. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2275. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2276. local Event = game:GetService("Workspace").FE.Actions.KickC2
  2277. Event:FireServer(A_1, A_2)
  2278. end
  2279. end
  2280.  
  2281. else
  2282. _G.SKickC2 = false
  2283. end
  2284. end)
  2285.  
  2286. KPage:CreateToggle("KickG1", "Regular Kick", function(arg)
  2287. if arg then
  2288. _G.KickG1 = true
  2289. while _G.KickG1 do
  2290. wait()
  2291. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2292. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2293. local A_3 = 65
  2294. local A_4 = Vector3.new(4000000, 1300, 4000000)
  2295. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2296. Event:FireServer(A_1, A_2, A_3, A_4)
  2297. end
  2298.  
  2299. else
  2300. _G.KickG1 = false
  2301. end
  2302. end)
  2303.  
  2304. KPage:CreateToggle("KickG2", "Ground Shot", function(arg)
  2305. if arg then
  2306. _G.KickG2 = true
  2307. while _G.KickG2 do
  2308. wait()
  2309. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2310. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2311. local A_3 = 65
  2312. local A_4 = Vector3.new(4000000, 1300, 4000000)
  2313. local Event = game:GetService("Workspace").FE.Actions.KickG2
  2314. Event:FireServer(A_1, A_2, A_3, A_4)
  2315. end
  2316.  
  2317. else
  2318. _G.KickG2 = false
  2319. end
  2320. end)
  2321.  
  2322. KPage:CreateToggle("KickP1", "Power Shot", function(arg)
  2323. if arg then
  2324. _G.KickP1 = true
  2325. while _G.KickP1 do
  2326. wait()
  2327. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2328. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2329. local A_3 = 65
  2330. local A_4 = Vector3.new(4000000, 1100, 4000000)
  2331. local Event = game:GetService("Workspace").FE.Actions.KickP1
  2332. Event:FireServer(A_1, A_2, A_3, A_4)
  2333. end
  2334.  
  2335. else
  2336. _G.KickP1 = false
  2337. end
  2338. end)
  2339.  
  2340. KPage:CreateToggle("KickP1", "Ground Power Shot", function(arg)
  2341. if arg then
  2342. _G.KickP2 = true
  2343. while _G.KickP2 do
  2344. wait()
  2345. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2346. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2347. local A_3 = 65
  2348. local A_4 = Vector3.new(4000000, 1100, 4000000)
  2349. local Event = game:GetService("Workspace").FE.Actions.KickP2
  2350. Event:FireServer(A_1, A_2, A_3, A_4)
  2351. end
  2352.  
  2353. else
  2354. _G.KickP2 = false
  2355. end
  2356. end)
  2357.  
  2358. KPage:CreateToggle("KickC1", "Adds Right Curve", function(arg)
  2359. if arg then
  2360. _G.KickC1 = true
  2361. while _G.KickC1 do
  2362. wait()
  2363. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2364. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2365. local Event = game:GetService("Workspace").FE.Actions.KickC1
  2366. Event:FireServer(A_1, A_2)
  2367. end
  2368.  
  2369. else
  2370. _G.KickC1 = false
  2371. end
  2372. end)
  2373.  
  2374. KPage:CreateToggle("KickC2", "Adds Left Curve", function(arg)
  2375. if arg then
  2376. _G.KickC2 = true
  2377. while _G.KickC2 do
  2378. wait()
  2379. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2380. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2381. local Event = game:GetService("Workspace").FE.Actions.KickC2
  2382. Event:FireServer(A_1, A_2)
  2383. end
  2384.  
  2385. else
  2386. _G.KickC2 = false
  2387. end
  2388. end)
  2389.  
  2390. KPage:CreateToggle("Tackle", "Tackle Slide", function(arg)
  2391. if arg then
  2392. _G.Tackle = true
  2393. while _G.Tackle do
  2394. wait()
  2395. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2396. local A_2 = game:GetService("Players").LocalPlayer.Character.Head
  2397. local Event = game:GetService("Workspace").FE.Actions.Tackle
  2398. Event:FireServer(A_1, A_2)
  2399. end
  2400.  
  2401. else
  2402. _G.Tackle = false
  2403. end
  2404. end)
  2405.  
  2406. KPage:CreateToggle("Header", "Head Control", function(arg)
  2407. if arg then
  2408. _G.Header = true
  2409. while _G.Header do
  2410. wait()
  2411. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2412. local A_2 = game:GetService("Players").LocalPlayer.Character.Head
  2413. local Event = game:GetService("Workspace").FE.Actions.Header
  2414. Event:FireServer(A_1, A_2)
  2415. end
  2416.  
  2417. else
  2418. _G.Header = false
  2419. end
  2420. end)
  2421.  
  2422. KPage:CreateLabel("Goalkeeper")
  2423.  
  2424. KPage:CreateToggle("SaveT", "Save [Torso]", function(arg)
  2425. if arg then
  2426. _G.SaveT = true
  2427. while _G.SaveT do
  2428. wait()
  2429. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2430. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2431. local Event = game:GetService("Workspace").FE.Actions.SaveT
  2432. Event:FireServer(A_1, A_2)
  2433. end
  2434.  
  2435. else
  2436. _G.SaveT = false
  2437. end
  2438. end)
  2439.  
  2440. KPage:CreateToggle("SaveLA", "Save [Left Arm]", function(arg)
  2441. if arg then
  2442. _G.SaveLA = true
  2443. while _G.SaveLA do
  2444. wait()
  2445. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2446. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2447. local Event = game:GetService("Workspace").FE.Actions.SaveLA
  2448. Event:FireServer(A_1, A_2)
  2449. end
  2450.  
  2451. else
  2452. _G.SaveLA = false
  2453. end
  2454. end)
  2455.  
  2456. KPage:CreateToggle("SaveRA", "Save [Right Arm]", function(arg)
  2457. if arg then
  2458. _G.SaveRA = true
  2459. while _G.SaveRA do
  2460. wait()
  2461. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2462. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2463. local Event = game:GetService("Workspace").FE.Actions.SaveRA
  2464. Event:FireServer(A_1, A_2)
  2465. end
  2466.  
  2467. else
  2468. _G.SaveRA = false
  2469. end
  2470. end)
  2471.  
  2472. KPage:CreateToggle("SaveLL", "Save [Left Leg]", function(arg)
  2473. if arg then
  2474. _G.SaveLL = true
  2475. while _G.SaveLL do
  2476. wait()
  2477. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2478. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2479. local Event = game:GetService("Workspace").FE.Actions.SaveLL
  2480. Event:FireServer(A_1, A_2)
  2481. end
  2482.  
  2483. else
  2484. _G.SaveLL = false
  2485. end
  2486. end)
  2487.  
  2488. KPage:CreateToggle("SaveRL", "Save [Right Leg]", function(arg)
  2489. if arg then
  2490. _G.SaveRL = true
  2491. while _G.SaveRL do
  2492. wait()
  2493. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2494. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2495. local Event = game:GetService("Workspace").FE.Actions.SaveRL
  2496. Event:FireServer(A_1, A_2)
  2497. end
  2498.  
  2499. else
  2500. _G.SaveRL = false
  2501. end
  2502. end)
  2503.  
  2504. KPage:CreateLabel("Functions")
  2505.  
  2506. KPage:CreateToggle("Auto Hold Ground Shot", "Auto Holding Ground Shot", function(arg)
  2507. if arg then
  2508. _G.HoldGround = true
  2509. while _G.HoldGround do
  2510. wait()
  2511. game:GetService("Players").LocalPlayer.Backpack.Ground.Value = true
  2512. end
  2513.  
  2514. else
  2515. _G.HoldGround = false
  2516. wait(1)
  2517. game:GetService("Players").LocalPlayer.Backpack.Ground.Value = false
  2518. end
  2519. end)
  2520.  
  2521. KPage:CreateToggle("Auto Hold Right Curve", "Auto Holding Right Curve", function(arg)
  2522. if arg then
  2523. _G.HoldRight = true
  2524. while _G.HoldRight do
  2525. wait()
  2526. game:GetService("Players").LocalPlayer.Backpack.Curving.Value = 2
  2527. end
  2528.  
  2529. else
  2530. _G.HoldRight = false
  2531. wait(1)
  2532. game:GetService("Players").LocalPlayer.Backpack.Curving.Value = 0
  2533. end
  2534. end)
  2535.  
  2536. KPage:CreateToggle("Auto Hold Left Curve", "Auto Holding Left Curve", function(arg)
  2537. if arg then
  2538. _G.HoldLeft = true
  2539. while _G.HoldLeft do
  2540. wait()
  2541. game:GetService("Players").LocalPlayer.Backpack.Curving.Value = 1
  2542. end
  2543.  
  2544. else
  2545. _G.HoldLeft = false
  2546. wait(1)
  2547. game:GetService("Players").LocalPlayer.Backpack.Curving.Value = 0
  2548. end
  2549. end)
  2550.  
  2551. KPage:CreateToggle("Stop The Ball", "Loop Stop The Ball", function(arg)
  2552. if arg then
  2553. _G.StopBall = true
  2554. while _G.StopBall do
  2555. wait()
  2556. for i = 1, 10 do
  2557. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2558. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2559. local A_3 = 0
  2560. local A_4 = Vector3.new(4000000, 0, 4000000)
  2561. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2562. Event:FireServer(A_1, A_2, A_3, A_4)
  2563. end
  2564. end
  2565.  
  2566. else
  2567. _G.StopBall = false
  2568. end
  2569. end)
  2570.  
  2571. KPage:CreateToggle("Launch The Ball", "Loop Launch The Ball", function(arg)
  2572. if arg then
  2573. _G.LaunchBall = true
  2574. while _G.LaunchBall do
  2575. wait()
  2576. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2577. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2578. local A_3 = 0
  2579. local A_4 = Vector3.new(4000000, math.huge, 4000000)
  2580. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2581. Event:FireServer(A_1, A_2, A_3, A_4)
  2582. end
  2583.  
  2584. else
  2585. _G.LaunchBall = false
  2586. end
  2587. end)
  2588.  
  2589. KPage:CreateLabel("Trolling")
  2590.  
  2591. KPage:CreateButton("Stop The Ball [Once]", "Stop The Ball Once", function()
  2592. for i = 1, 10 do
  2593. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2594. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2595. local A_3 = 0
  2596. local A_4 = Vector3.new(4000000, 0, 4000000)
  2597. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2598. Event:FireServer(A_1, A_2, A_3, A_4)
  2599. end
  2600. end)
  2601.  
  2602. KPage:CreateButton("Launch The Ball [Once]", "Launch The Ball Once", function()
  2603. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2604. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2605. local A_3 = 0
  2606. local A_4 = Vector3.new(4000000, math.huge, 4000000)
  2607. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2608. Event:FireServer(A_1, A_2, A_3, A_4)
  2609. end)
  2610.  
  2611. KPage:CreateLabel("Goal")
  2612.  
  2613. KPage:CreateButton("Loop Score To The Red Team", "Scoring The Goal To The Red Team. Sometimes Work - Unfixable", function()
  2614. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2615. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2616. local A_3 = 70
  2617. local A_4 = Vector3.new(4000000, 1, -4000000)
  2618. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2619. Event:FireServer(A_1, A_2, A_3, A_4)
  2620. end)
  2621.  
  2622. KPage:CreateButton("Score To The Red Team", "Scoring The Goal To The Red Team. Sometimes Work", function()
  2623. local A_1 = game:GetService("Workspace").TPSSystem.TPS
  2624. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2625. local A_3 = 70
  2626. local A_4 = Vector3.new(0, 1, -100000)
  2627. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2628. Event:FireServer(A_1, A_2, A_3, A_4)
  2629. end)
  2630.  
  2631. PWRPage:CreateLabel("Miscellaneous")
  2632.  
  2633. PWRPage:CreateToggle("Auto Kick Powers", "Kicks Away Bombs And Spikes If They Are Near", function(arg)
  2634. if arg then
  2635. _G.BOMBS = true
  2636. while _G.BOMBS do
  2637. wait()
  2638. for i,v in pairs(game.Workspace:GetChildren()) do
  2639. if v.Name == "Bomb" or v.Name == "Spike" then
  2640. local A_1 = v
  2641. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2642. local A_3 = 65
  2643. local A_4 = Vector3.new(4000000, 1300, 4000000)
  2644. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2645. Event:FireServer(A_1, A_2, A_3, A_4)
  2646. end
  2647. end
  2648. end
  2649. else
  2650. _G.BOMBS = false
  2651. end
  2652. end)
  2653.  
  2654. PWRPage:CreateToggle("Auto Crash Powers", "Crashing Bombs And Spikes If They Are Near", function(arg)
  2655. if arg then
  2656. _G.CRASHB = true
  2657. while _G.CRASHB do
  2658. wait()
  2659. for i,v in pairs(game.Workspace:GetChildren()) do
  2660. if v.Name == "Bomb" or v.Name == "Spike" then
  2661. local A_1 = v
  2662. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2663. local A_3 = 70
  2664. local A_4 = Vector3.new(4000000, -math.huge, 4000000)
  2665. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2666. Event:FireServer(A_1, A_2, A_3, A_4)
  2667. end
  2668. end
  2669. end
  2670. else
  2671. _G.CRASHB = false
  2672. end
  2673. end)
  2674.  
  2675. PWRPage:CreateToggle("Auto Pass Through The Wall", "Allows You To Pass Through The Power Wall", function(arg)
  2676. if arg then
  2677. _G.THROUWAL = true
  2678. while _G.THROUWAL do
  2679. wait()
  2680. for i,v in pairs(game.Workspace:GetChildren()) do
  2681. if v.Name == "Wall" then
  2682. v.CanCollide = false
  2683. end
  2684. end
  2685. end
  2686. else
  2687. _G.THROUWAL = false
  2688. end
  2689. end)
  2690.  
  2691. PWRPage:CreateToggle("Auto Dodge Powers [BUGGY]", "Auto Dodging Bombs And Spikes When They Are Near", function(arg)
  2692. if arg then
  2693. _G.DODGE = true
  2694. while _G.DODGE do
  2695. wait()
  2696. for i,v in pairs(game.Workspace:GetChildren()) do
  2697. if v.Name == "Bomb" or v.Name == "Spike" then
  2698. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.Position).Magnitude <= 40 then
  2699. game.Players.LocalPlayer.Character.Humanoid:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(-10, 30), 0, math.random(-10, 20)))
  2700. end
  2701. end
  2702. end
  2703. end
  2704. else
  2705. _G.DODGE = false
  2706. end
  2707. end)
  2708.  
  2709. PWRPage:CreateLabel("Activation")
  2710.  
  2711. local POWERSTIME
  2712. PWRPage:CreateBox("Use Time", 10044538000, function(arg)
  2713. POWERSTIME = tonumber(arg)
  2714. end)
  2715.  
  2716. PWRPage:CreateButton("All Powers", "Using All Powers. Set Use Time For Work", function()
  2717. for i = 1, POWERSTIME do
  2718. local Wall = game:GetService("Workspace").FE.Powers.Wall
  2719. Wall:FireServer()
  2720.  
  2721. local Burn = game:GetService("Workspace").FE.Powers.Burn
  2722. Burn:FireServer()
  2723.  
  2724. local Bomb = game:GetService("Workspace").FE.Powers.Bomb
  2725. Bomb:FireServer()
  2726.  
  2727. local Spike = game:GetService("Workspace").FE.Powers.Spike
  2728. Spike:FireServer()
  2729. end
  2730. end)
  2731.  
  2732. PWRPage:CreateButton("Wall", "Using Wall. Set Use Time For Work", function()
  2733. for i = 1, POWERSTIME do
  2734. local Event = game:GetService("Workspace").FE.Powers.Wall
  2735. Event:FireServer()
  2736. end
  2737. end)
  2738.  
  2739. PWRPage:CreateButton("Burn", "Using Burn. Set Use Time For Work", function()
  2740. for i = 1, POWERSTIME do
  2741. local Event = game:GetService("Workspace").FE.Powers.Burn
  2742. Event:FireServer()
  2743. end
  2744. end)
  2745.  
  2746. PWRPage:CreateButton("Bomb", "Using Bomb. Set Use Time For Work", function()
  2747. for i = 1, POWERSTIME do
  2748. local Event = game:GetService("Workspace").FE.Powers.Bomb
  2749. Event:FireServer()
  2750. end
  2751. end)
  2752.  
  2753. PWRPage:CreateButton("Spike", "Using Spike. Set Use Time For Work", function()
  2754. for i = 1, POWERSTIME do
  2755. local Event = game:GetService("Workspace").FE.Powers.Spike
  2756. Event:FireServer()
  2757. end
  2758. end)
  2759.  
  2760. PWRPage:CreateLabel("Kicks")
  2761.  
  2762. PWRPage:CreateToggle("Very Super KickG1", "Regular Kicking Bombs & Spikes, But Very Super", function(arg)
  2763. if arg then
  2764. _G.PSKickG1 = true
  2765. while _G.PSKickG1 do
  2766. wait()
  2767. for i,v in pairs(game.Workspace:GetChildren()) do
  2768. if v.Name == "Bomb" or v.Name == "Spike" then
  2769. local A_1 = v
  2770. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2771. local A_3 = 70
  2772. local A_4 = Vector3.new(math.huge, math.huge, math.huge)
  2773. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2774. Event:FireServer(A_1, A_2, A_3, A_4)
  2775. end
  2776. end
  2777. end
  2778.  
  2779. else
  2780. _G.PSKickG1 = false
  2781. end
  2782. end)
  2783.  
  2784. PWRPage:CreateToggle("Very Super KickC1", "Right Curving Bombs & Spikes, But Very Super", function(arg)
  2785. if arg then
  2786. _G.PSKickC1 = true
  2787. while _G.PSKickC1 do
  2788. wait()
  2789. for i = 1, 10 do
  2790. for i,v in pairs(game.Workspace:GetChildren()) do
  2791. if v.Name == "Bomb" or v.Name == "Spike" then
  2792. local A_1 = v
  2793. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2794. local Event = game:GetService("Workspace").FE.Actions.KickC1
  2795. Event:FireServer(A_1, A_2)
  2796. end
  2797. end
  2798. end
  2799. end
  2800.  
  2801. else
  2802. _G.PSKickC1 = false
  2803. end
  2804. end)
  2805.  
  2806. PWRPage:CreateToggle("Very Super KickC2", "Left Curving Bombs & Spikes, But Very Super", function(arg)
  2807. if arg then
  2808. _G.PSKickC2 = true
  2809. while _G.PSKickC2 do
  2810. wait()
  2811. for i = 1, 10 do
  2812. for i,v in pairs(game.Workspace:GetChildren()) do
  2813. if v.Name == "Bomb" or v.Name == "Spike" then
  2814. local A_1 = v
  2815. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2816. local Event = game:GetService("Workspace").FE.Actions.KickC2
  2817. Event:FireServer(A_1, A_2)
  2818. end
  2819. end
  2820. end
  2821. end
  2822.  
  2823. else
  2824. _G.PSKickC2 = false
  2825. end
  2826. end)
  2827.  
  2828. PWRPage:CreateToggle("KickG1", "Regular Kicking Bombs & Spikes", function(arg)
  2829. if arg then
  2830. _G.BOMBSG1 = true
  2831. while _G.BOMBSG1 do
  2832. wait()
  2833. for i,v in pairs(game.Workspace:GetChildren()) do
  2834. if v.Name == "Bomb" or v.Name == "Spike" then
  2835. local A_1 = v
  2836. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2837. local A_3 = 65
  2838. local A_4 = Vector3.new(4000000, 1300, 4000000)
  2839. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2840. Event:FireServer(A_1, A_2, A_3, A_4)
  2841. end
  2842. end
  2843. end
  2844. else
  2845. _G.BOMBSG1 = false
  2846. end
  2847. end)
  2848.  
  2849. PWRPage:CreateToggle("KickG2", "Ground Shot Kicking Bombs & Spikes", function(arg)
  2850. if arg then
  2851. _G.BOMBSG2 = true
  2852. while _G.BOMBSG2 do
  2853. wait()
  2854. for i,v in pairs(game.Workspace:GetChildren()) do
  2855. if v.Name == "Bomb" or v.Name == "Spike" then
  2856. local A_1 = v
  2857. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2858. local A_3 = 65
  2859. local A_4 = Vector3.new(4000000, 1300, 4000000)
  2860. local Event = game:GetService("Workspace").FE.Actions.KickG2
  2861. Event:FireServer(A_1, A_2, A_3, A_4)
  2862. end
  2863. end
  2864. end
  2865. else
  2866. _G.BOMBSG2 = false
  2867. end
  2868. end)
  2869.  
  2870. PWRPage:CreateToggle("KickP1", "Power Shot Kicking Bombs & Spikes", function(arg)
  2871. if arg then
  2872. _G.BOMBSP1 = true
  2873. while _G.BOMBSP1 do
  2874. wait()
  2875. for i,v in pairs(game.Workspace:GetChildren()) do
  2876. if v.Name == "Bomb" or v.Name == "Spike" then
  2877. local A_1 = v
  2878. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2879. local A_3 = 65
  2880. local A_4 = Vector3.new(4000000, 1100, 4000000)
  2881. local Event = game:GetService("Workspace").FE.Actions.KickP1
  2882. Event:FireServer(A_1, A_2, A_3, A_4)
  2883. end
  2884. end
  2885. end
  2886. else
  2887. _G.BOMBSP1 = false
  2888. end
  2889. end)
  2890.  
  2891. PWRPage:CreateToggle("KickP2", "Ground Power Shot Kicking Bombs & Spikes", function(arg)
  2892. if arg then
  2893. _G.BOMBSP2 = true
  2894. while _G.BOMBSP2 do
  2895. wait()
  2896. for i,v in pairs(game.Workspace:GetChildren()) do
  2897. if v.Name == "Bomb" or v.Name == "Spike" then
  2898. local A_1 = v
  2899. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2900. local A_3 = 65
  2901. local A_4 = Vector3.new(4000000, 1100, 4000000)
  2902. local Event = game:GetService("Workspace").FE.Actions.KickP2
  2903. Event:FireServer(A_1, A_2, A_3, A_4)
  2904. end
  2905. end
  2906. end
  2907. else
  2908. _G.BOMBSP2 = false
  2909. end
  2910. end)
  2911.  
  2912. PWRPage:CreateToggle("KickC1", "Adds Right Curve To Bombs & Spikes", function(arg)
  2913. if arg then
  2914. _G.PKickC1 = true
  2915. while _G.PKickC1 do
  2916. wait()
  2917. for i,v in pairs(game.Workspace:GetChildren()) do
  2918. if v.Name == "Bomb" or v.Name == "Spike" then
  2919. local A_1 = v
  2920. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2921. local Event = game:GetService("Workspace").FE.Actions.KickC1
  2922. Event:FireServer(A_1, A_2)
  2923. end
  2924. end
  2925. end
  2926.  
  2927. else
  2928. _G.PKickC1 = false
  2929. end
  2930. end)
  2931.  
  2932. PWRPage:CreateToggle("KickC2", "Adds Left Curve To Bombs & Spikes", function(arg)
  2933. if arg then
  2934. _G.PKickC2 = true
  2935. while _G.PKickC2 do
  2936. wait()
  2937. for i,v in pairs(game.Workspace:GetChildren()) do
  2938. if v.Name == "Bomb" or v.Name == "Spike" then
  2939. local A_1 = v
  2940. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2941. local Event = game:GetService("Workspace").FE.Actions.KickC2
  2942. Event:FireServer(A_1, A_2)
  2943. end
  2944. end
  2945. end
  2946.  
  2947. else
  2948. _G.PKickC2 = false
  2949. end
  2950. end)
  2951.  
  2952. PWRPage:CreateToggle("Stop The Powers", "Loop Stopping The Bombs & Spikes", function(arg)
  2953. if arg then
  2954. _G.PStopBall = true
  2955. while _G.PStopBall do
  2956. wait()
  2957. for i = 1, 10 do
  2958. for i,v in pairs(game.Workspace:GetChildren()) do
  2959. if v.Name == "Bomb" or v.Name == "Spike" then
  2960. local A_1 = v
  2961. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2962. local A_3 = 0
  2963. local A_4 = Vector3.new(4000000, 0, 4000000)
  2964. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2965. Event:FireServer(A_1, A_2, A_3, A_4)
  2966. end
  2967. end
  2968. end
  2969. end
  2970.  
  2971. else
  2972. _G.PStopBall = false
  2973. end
  2974. end)
  2975.  
  2976. PWRPage:CreateToggle("Launch The Powers", "Loop Launching The Bombs & Spikes", function(arg)
  2977. if arg then
  2978. _G.PLaunchBall = true
  2979. while _G.PLaunchBall do
  2980. wait()
  2981. for i,v in pairs(game.Workspace:GetChildren()) do
  2982. if v.Name == "Bomb" or v.Name == "Spike" then
  2983. local A_1 = v
  2984. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2985. local A_3 = 0
  2986. local A_4 = Vector3.new(4000000, math.huge, 4000000)
  2987. local Event = game:GetService("Workspace").FE.Actions.KickG1
  2988. Event:FireServer(A_1, A_2, A_3, A_4)
  2989. end
  2990. end
  2991. end
  2992.  
  2993. else
  2994. _G.PLaunchBall = false
  2995. end
  2996. end)
  2997.  
  2998. PWRPage:CreateButton("Stop The Powers [Once]", "Stopping The Bombs & Spikes Once", function()
  2999. for i = 1, 10 do
  3000. for i,v in pairs(game.Workspace:GetChildren()) do
  3001. if v.Name == "Bomb" or v.Name == "Spike" then
  3002. local A_1 = v
  3003. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  3004. local A_3 = 0
  3005. local A_4 = Vector3.new(4000000, 0, 4000000)
  3006. local Event = game:GetService("Workspace").FE.Actions.KickG1
  3007. Event:FireServer(A_1, A_2, A_3, A_4)
  3008. end
  3009. end
  3010. end
  3011. end)
  3012.  
  3013. PWRPage:CreateButton("Launch The Powers [Once]", "Launching The Bombs & Spikes Once", function()
  3014. for i,v in pairs(game.Workspace:GetChildren()) do
  3015. if v.Name == "Bomb" or v.Name == "Spike" then
  3016. local A_1 = v
  3017. local A_2 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  3018. local A_3 = 0
  3019. local A_4 = Vector3.new(4000000, math.huge, 4000000)
  3020. local Event = game:GetService("Workspace").FE.Actions.KickG1
  3021. Event:FireServer(A_1, A_2, A_3, A_4)
  3022. end
  3023. end
  3024. end)
  3025.  
  3026. BPage:CreateLabel("Miscellaneous")
  3027.  
  3028. BPage:CreateToggle("Trail", "Enables Trail Of The Ball", function(arg)
  3029. if arg then
  3030. game.Workspace.TPSSystem.TPS.Trail.Enabled = true
  3031.  
  3032. else
  3033. game.Workspace.TPSSystem.TPS.Trail.Enabled = false
  3034. end
  3035. end)
  3036.  
  3037. BPage:CreateToggle("Tracer", "Shows Tracer", function(arg)
  3038. if arg then
  3039. local beam = Instance.new("Beam")
  3040. beam.Name = "TracerBeam"
  3041. beam.Parent = game.Workspace.TPSSystem.TPS
  3042. -- beam.Color = ColorSequence.new(Color3.fromRGB(18, 200, 5))
  3043. beam.TextureLength = 7
  3044. beam.TextureMode = "Static"
  3045. beam.TextureSpeed = 1
  3046. beam.FaceCamera = true
  3047.  
  3048. local attachmentPlayer = Instance.new("Attachment")
  3049. attachmentPlayer.Name = "BallArrow"
  3050. attachmentPlayer.Parent = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  3051.  
  3052. beam.Attachment1 = game.Workspace.TPSSystem.TPS.Attachment1
  3053. beam.Attachment0 = attachmentPlayer
  3054. else
  3055. game.Workspace.TPSSystem.TPS.TracerBeam:Destroy()
  3056. end
  3057. end)
  3058.  
  3059. BPage:CreateToggle("Rainbow Color", "Color From RGB", function(arg)
  3060. if arg then
  3061. local Brick = workspace.TPSSystem.TPS --Change To Brick
  3062. local speed = 10 --Change to speed you want
  3063. _G.RAIN = true
  3064. while _G.RAIN do
  3065. for i = 0,1,0.001*speed do
  3066. Brick.Color = Color3.fromHSV(i,1,1) --creates a color using i
  3067. wait()
  3068. end
  3069. end
  3070. else
  3071. _G.RAIN = false
  3072. wait(3.3)
  3073. workspace.TPSSystem.TPS.Color = Color3.fromRGB(248, 248, 248) --creates a color using i
  3074. end
  3075. end)
  3076.  
  3077. BPage:CreateToggle("Rainbow Trail", "Enables Special Rainbow Trail", function(arg)
  3078. if arg then
  3079. local speed = 15 --Change to speed you want
  3080. _G.RANB = true
  3081. while _G.RANB do
  3082. for i = 0,1,0.001*speed do
  3083. local startColor = Color3.fromHSV(i, 1, 1)
  3084. local endColor = Color3.fromHSV(i, 1, 1)
  3085. local sequence = ColorSequence.new(startColor, endColor)
  3086. game.Workspace.TPSSystem.TPS.Trail.Color = sequence
  3087. wait()
  3088. end
  3089. end
  3090. else
  3091. _G.RANB = false
  3092. wait(3.3)
  3093. local startColor = Color3.fromRGB(255, 255, 255)
  3094. local endColor = Color3.fromRGB(255, 255, 255)
  3095. local sequence = ColorSequence.new(startColor, endColor)
  3096. game.Workspace.TPSSystem.TPS.Trail.Color = sequence
  3097. end
  3098. end)
  3099.  
  3100. BPage:CreateLabel("Configurations")
  3101.  
  3102. BPage:CreateBox("Size", 10044538000, function(arg)
  3103. game.Workspace.TPSSystem.TPS.Size = Vector3.new(arg, arg, arg)
  3104. end)
  3105.  
  3106. BPage:CreateToggle("Better React", "Gives You A Better Reaction Time Of The Ball", function(arg)
  3107. if arg then
  3108. RunStepped2 = game:GetService("RunService").RenderStepped:Connect(function()
  3109. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3110. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= 3 then
  3111. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 1 then
  3112. firetouchinterest(game.Players.LocalPlayer.Character["Right Leg"],game.Workspace.TPSSystem.TPS,0)
  3113. firetouchinterest(game.Players.LocalPlayer.Character["Right Leg"],game.Workspace.TPSSystem.TPS,1)
  3114. elseif game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3115. firetouchinterest(game.Players.LocalPlayer.Character["Left Leg"],game.Workspace.TPSSystem.TPS,0)
  3116. firetouchinterest(game.Players.LocalPlayer.Character["Left Leg"],game.Workspace.TPSSystem.TPS,1)
  3117.  
  3118. end
  3119. end
  3120. end
  3121. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3122. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= 3 then
  3123. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 1 then
  3124. firetouchinterest(game.Players.LocalPlayer.Character["RightLowerLeg"], game.Workspace.TPSSystem.TPS, 0)
  3125. firetouchinterest(game.Players.LocalPlayer.Character["RightLowerLeg"], game.Workspace.TPSSystem.TPS, 1)
  3126. elseif game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3127. firetouchinterest(game.Players.LocalPlayer.Character["LeftLowerLeg"], game.Workspace.TPSSystem.TPS, 0)
  3128. firetouchinterest(game.Players.LocalPlayer.Character["LeftLowerLeg"], game.Workspace.TPSSystem.TPS, 1)
  3129.  
  3130. end
  3131. end
  3132. end
  3133. end)
  3134. else
  3135. RunStepped2:Disconnect()
  3136. end
  3137. end)
  3138.  
  3139. BPage:CreateToggle("Collision", "Enables/Disables The Ball Collision", function(arg)
  3140. if arg then
  3141. game.Workspace.TPSSystem.TPS.CanCollide = false
  3142. else
  3143. game.Workspace.TPSSystem.TPS.CanCollide = true
  3144. end
  3145. end)
  3146.  
  3147. BPage:CreateToggle("View", "Spectate The Ball", function(arg)
  3148. if arg then
  3149. game.Workspace.CurrentCamera.CameraSubject = game.Workspace.TPSSystem.TPS
  3150. else
  3151. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3152. end
  3153. end)
  3154.  
  3155. BPage:CreateButton("Remove Textures", "Removes Decals, Effects [Expect Flame] And Textures From The Ball", function()
  3156. local Ball = game.Workspace.TPSSystem.TPS
  3157. local Player = game.Players.LocalPlayer
  3158. local HRP = Player.Character.HumanoidRootPart
  3159. local RightLeg, LeftLeg = Player.Character["Right Leg"], Player.Character["Left Leg"]
  3160.  
  3161. for i,BallCON in pairs(Ball:GetChildren()) do
  3162. if BallCON:IsA("Decal") or BallCON:IsA("Smoke") or BallCON:IsA("PointLight") or BallCON:IsA("ParticleEmitter") then
  3163. BallCON:Destroy()
  3164. end
  3165. end
  3166.  
  3167. for i,BALLFIRE in pairs(Ball:GetChildren()) do
  3168. if BALLFIRE:IsA("Fire") then
  3169. BALLFIRE.Heat = 1
  3170. BALLFIRE.Size = 5
  3171. end
  3172. end
  3173.  
  3174. Ball.Massless = true
  3175. Ball.CustomPhysicalProperties = false
  3176. end)
  3177.  
  3178. MRPage:CreateLabel("Mobile Reach [CAN BE USED WITH PC AND MOBILE]")
  3179. MRPage:CreateLabel("If It Still Doesn't Work For Mobile Players - Let Me Know And I'll Fix It")
  3180. MRPage:CreateLabel("Reach: Method 1")
  3181. local RunSteppedMobile
  3182. local DistanceReachMobile = 0
  3183.  
  3184. MRPage:CreateButton("Enable Reach", "Enables Reach", function()
  3185. RunSteppedMobile = game:GetService("RunService").RenderStepped:Connect(function()
  3186. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3187. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= DistanceReachMobile then
  3188. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 1 then
  3189. firetouchinterest(game.Players.LocalPlayer.Character["Right Leg"], game.Workspace.TPSSystem.TPS, 0)
  3190. firetouchinterest(game.Players.LocalPlayer.Character["Right Leg"], game.Workspace.TPSSystem.TPS, 1)
  3191. elseif game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3192. firetouchinterest(game.Players.LocalPlayer.Character["Left Leg"], game.Workspace.TPSSystem.TPS, 0)
  3193. firetouchinterest(game.Players.LocalPlayer.Character["Left Leg"], game.Workspace.TPSSystem.TPS, 1)
  3194.  
  3195. end
  3196. end
  3197. end
  3198. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3199. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game.Workspace.TPSSystem.TPS.Position).Magnitude <= DistanceReach then
  3200. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 1 then
  3201. firetouchinterest(game.Players.LocalPlayer.Character["RightLowerLeg"], game.Workspace.TPSSystem.TPS, 0)
  3202. firetouchinterest(game.Players.LocalPlayer.Character["RightLowerLeg"], game.Workspace.TPSSystem.TPS, 1)
  3203. elseif game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3204. firetouchinterest(game.Players.LocalPlayer.Character["LeftLowerLeg"], game.Workspace.TPSSystem.TPS, 0)
  3205. firetouchinterest(game.Players.LocalPlayer.Character["LeftLowerLeg"], game.Workspace.TPSSystem.TPS, 1)
  3206. end
  3207. end
  3208. end
  3209. end)
  3210. end)
  3211.  
  3212. MRPage:CreateButton("Disable Reach", "Disable Reach", function()
  3213. RunSteppedMobile:Disconnect()
  3214. end)
  3215.  
  3216. MRPage:CreateButton("Reach - 2", "Setting Size Of Reach", function()
  3217. DistanceReachMobile = 2
  3218. end)
  3219.  
  3220. MRPage:CreateButton("Reach - 3", "Setting Size Of Reach", function()
  3221. DistanceReachMobile = 3
  3222. end)
  3223.  
  3224. MRPage:CreateButton("Reach - 3.5", "Setting Size Of Reach", function()
  3225. DistanceReachMobile = 3.5
  3226. end)
  3227.  
  3228. MRPage:CreateButton("Reach - 4", "Setting Size Of Reach", function()
  3229. DistanceReachMobile = 4
  3230. end)
  3231.  
  3232. MRPage:CreateButton("Reach - 4.5", "Setting Size Of Reach", function()
  3233. DistanceReachMobile = 4.5
  3234. end)
  3235.  
  3236. MRPage:CreateButton("Reach - 5", "Setting Size Of Reach", function()
  3237. DistanceReachMobile = 5.5
  3238. end)
  3239.  
  3240. MRPage:CreateButton("Reach - 5.5", "Setting Size Of Reach", function()
  3241. DistanceReachMobile = 5.5
  3242. end)
  3243.  
  3244. MRPage:CreateButton("Reach - 20", "Setting Size Of Reach", function()
  3245. DistanceReachMobile = 20
  3246. end)
  3247.  
  3248. MRPage:CreateButton("Reach - 25", "Setting Size Of Reach", function()
  3249. DistanceReachMobile = 25
  3250. end)
  3251.  
  3252. MRPage:CreateButton("Reach - 30", "Setting Size Of Reach", function()
  3253. DistanceReachMobile = 30
  3254. end)
  3255.  
  3256. MRPage:CreateButton("Reach - 35", "Setting Size Of Reach", function()
  3257. DistanceReachMobile = 35
  3258. end)
  3259.  
  3260. MRPage:CreateButton("Reach - 50", "Setting Size Of Reach", function()
  3261. DistanceReachMobile = 50
  3262. end)
  3263.  
  3264. MRPage:CreateButton("Reach - 60", "Setting Size Of Reach", function()
  3265. DistanceReachMobile = 60
  3266. end)
  3267.  
  3268. MRPage:CreateButton("Reach - 70", "Setting Size Of Reach", function()
  3269. DistanceReachMobile = 70
  3270. end)
  3271.  
  3272. MRPage:CreateButton("Reach - 80", "Setting Size Of Reach", function()
  3273. DistanceReachMobile = 80
  3274. end)
  3275.  
  3276. MRPage:CreateButton("Reach - 90", "Setting Size Of Reach", function()
  3277. DistanceReachMobile = 90
  3278. end)
  3279.  
  3280. MRPage:CreateButton("Reach - 100", "Setting Size Of Reach", function()
  3281. DistanceReachMobile = 100
  3282. end)
  3283.  
  3284. MRPage:CreateLabel("Reach: Method 2")
  3285. MRPage:CreateLabel("Customize Reach Size And Transparency. After Use Fake Leg")
  3286.  
  3287. local LeftLegM
  3288. local RightLegM
  3289. local LeftFootM
  3290. local RightFootM
  3291.  
  3292. MRPage:CreateButton("Fake Leg [R6]", "Creates Fake Leg For Better View", function()
  3293. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3294. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3295. LeftLegM = Instance.new("Part", game.Players.LocalPlayer.Character)
  3296. LeftLegM.Name = "Left Leg"
  3297. LeftLegM.CanCollide = false
  3298. LeftLegM.Color = game.Players.LocalPlayer.Character["Left Leg"].Color
  3299. LeftLegM.Size = Vector3.new(1, 2, 1)
  3300. LeftLegM.Locked = true
  3301. LeftLegM.Position = game.Players.LocalPlayer.Character["Left Leg"].Position
  3302.  
  3303. local Attachment = Instance.new("Attachment", LeftLegM)
  3304. Attachment.Name = "LeftFootAttachment"
  3305. Attachment.Position = Vector3.new(0, -1, 0)
  3306.  
  3307. local MotorHip = Instance.new("Motor6D", game.Players.LocalPlayer.Character.Torso)
  3308. MotorHip.Name = "Fake Left Hip"
  3309. MotorHip.C0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3310. MotorHip.C1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3311. MotorHip.CurrentAngle = 0
  3312. MotorHip.DesiredAngle = 0
  3313. MotorHip.MaxVelocity = 0.1
  3314. MotorHip.Part0 = game.Players.LocalPlayer.Character.Torso
  3315. MotorHip.Part1 = LeftLegM
  3316. elseif game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 1 then
  3317. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3318. RightLegM = Instance.new("Part", game.Players.LocalPlayer.Character)
  3319. RightLegM.Name = "Right Leg"
  3320. RightLegM.CanCollide = false
  3321. RightLegM.Color = game.Players.LocalPlayer.Character["Right Leg"].Color
  3322. RightLegM.Size = Vector3.new(1, 2, 1)
  3323. RightLegM.Locked = true
  3324. RightLegM.Position = game.Players.LocalPlayer.Character["Right Leg"].Position
  3325.  
  3326. local Attachment = Instance.new("Attachment", RightLegM)
  3327. Attachment.Name = "RightFootAttachment"
  3328. Attachment.Position = Vector3.new(0, -1, 0)
  3329.  
  3330. local MotorHip = Instance.new("Motor6D", game.Players.LocalPlayer.Character.Torso)
  3331. MotorHip.Name = "Fake Right Hip"
  3332. MotorHip.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  3333. MotorHip.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  3334. MotorHip.CurrentAngle = 0
  3335. MotorHip.DesiredAngle = 0
  3336. MotorHip.MaxVelocity = 0.1
  3337. MotorHip.Part0 = game.Players.LocalPlayer.Character.Torso
  3338. MotorHip.Part1 = RightLegM
  3339. end
  3340. end)
  3341.  
  3342. MRPage:CreateButton("Remove Fake Leg [R6]", "Removes Fake Leg", function()
  3343. if LeftLegM ~= nil then
  3344. LeftLegM:Destroy()
  3345. elseif RightLegM ~= nil then
  3346. RightLegM:Destroy()
  3347. elseif LeftFootM ~= nil then
  3348. LeftFootM:Destroy()
  3349. elseif RightFootM ~= nil then
  3350. RightFootM:Destroy()
  3351. end
  3352. for i,z in pairs(game.Players.LocalPlayer.Character.Torso:GetDescendants()) do
  3353. if z.Name == "Fake Left Hip" or z.Name == "Fake Right Hip" then
  3354. z:Destroy()
  3355. end
  3356. end
  3357. end)
  3358.  
  3359. MRPage:CreateButton("Reach Leg Transparency - 0", "Setting Leg's Transparency To 0", function()
  3360. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3361. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3362. game.Players.LocalPlayer.Character["Left Leg"].Transparency = 0
  3363. else
  3364. game.Players.LocalPlayer.Character["Right Leg"].Transparency = 0
  3365. end
  3366. end
  3367. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3368. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3369. game.Players.LocalPlayer.Character["LeftLowerLeg"].Transparency = 0
  3370. else
  3371. game.Players.LocalPlayer.Character["RightLowerLeg"].Transparency = 0
  3372. end
  3373. end
  3374. end)
  3375.  
  3376. MRPage:CreateButton("Reach Leg Transparency - 0.2", "Setting Leg's Transparency To 0.2", function()
  3377. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3378. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3379. game.Players.LocalPlayer.Character["Left Leg"].Transparency = 0.2
  3380. else
  3381. game.Players.LocalPlayer.Character["Right Leg"].Transparency = 0.2
  3382. end
  3383. end
  3384. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3385. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3386. game.Players.LocalPlayer.Character["LeftLowerLeg"].Transparency = 0.2
  3387. else
  3388. game.Players.LocalPlayer.Character["RightLowerLeg"].Transparency = 0.2
  3389. end
  3390. end
  3391. end)
  3392.  
  3393. MRPage:CreateButton("Reach Leg Transparency - 0.5", "Setting Leg's Transparency To 0.5", function()
  3394. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3395. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3396. game.Players.LocalPlayer.Character["Left Leg"].Transparency = 0.5
  3397. else
  3398. game.Players.LocalPlayer.Character["Right Leg"].Transparency = 0.5
  3399. end
  3400. end
  3401. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3402. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3403. game.Players.LocalPlayer.Character["LeftLowerLeg"].Transparency = 0.5
  3404. else
  3405. game.Players.LocalPlayer.Character["RightLowerLeg"].Transparency = 0.5
  3406. end
  3407. end
  3408. end)
  3409.  
  3410. MRPage:CreateButton("Reach Leg Transparency - 1", "Setting Leg's Transparency To 1", function()
  3411. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3412. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3413. game.Players.LocalPlayer.Character["Left Leg"].Transparency = 1
  3414. else
  3415. game.Players.LocalPlayer.Character["Right Leg"].Transparency = 1
  3416. end
  3417. end
  3418. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3419. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3420. game.Players.LocalPlayer.Character["LeftLowerLeg"].Transparency = 1
  3421. else
  3422. game.Players.LocalPlayer.Character["RightLowerLeg"].Transparency = 1
  3423. end
  3424. end
  3425. end)
  3426.  
  3427. MRPage:CreateButton("Reach Leg - 1", "Setting Leg's Size To 1", function()
  3428. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3429. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3430. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3431. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(1, 2, 1)
  3432. else
  3433. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3434. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(1, 2, 1)
  3435. end
  3436. end
  3437. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3438. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3439. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3440. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(1, 2, 1)
  3441. else
  3442. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3443. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(1, 2, 1)
  3444. end
  3445. end
  3446. end)
  3447.  
  3448. MRPage:CreateButton("Reach Leg - 3", "Setting Leg's Size To 3", function()
  3449. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3450. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3451. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3452. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(3, 2, 3)
  3453. else
  3454. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3455. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(3, 2, 3)
  3456. end
  3457. end
  3458. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3459. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3460. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3461. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(3, 2, 3)
  3462. else
  3463. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3464. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(3, 2, 3)
  3465. end
  3466. end
  3467. end)
  3468.  
  3469. MRPage:CreateButton("Reach Leg - 5", "Setting Leg's Size To 5", function()
  3470. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3471. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3472. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3473. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(5, 2, 5)
  3474. else
  3475. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3476. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(5, 2, 5)
  3477. end
  3478. end
  3479. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3480. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3481. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3482. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(5, 2, 5)
  3483. else
  3484. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3485. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(5, 2, 5)
  3486. end
  3487. end
  3488. end)
  3489.  
  3490. MRPage:CreateButton("Reach Leg - 8", "Setting Leg's Size To 8", function()
  3491. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3492. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3493. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3494. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(8, 2, 8)
  3495. else
  3496. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3497. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(8, 2, 8)
  3498. end
  3499. end
  3500. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3501. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3502. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3503. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(8, 2, 8)
  3504. else
  3505. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3506. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(8, 2, 8)
  3507. end
  3508. end
  3509. end)
  3510.  
  3511. MRPage:CreateButton("Reach Leg - 10", "Setting Leg's Size To 10", function()
  3512. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3513. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3514. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3515. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(10, 2, 10)
  3516. else
  3517. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3518. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(10, 2, 10)
  3519. end
  3520. end
  3521. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3522. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3523. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3524. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(10, 2, 10)
  3525. else
  3526. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3527. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(10, 2, 10)
  3528. end
  3529. end
  3530. end)
  3531.  
  3532. MRPage:CreateButton("Reach Leg - 15", "Setting Leg's Size To 15", function()
  3533. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3534. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3535. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3536. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(15, 2, 15)
  3537. else
  3538. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3539. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(15, 2, 15)
  3540. end
  3541. end
  3542. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3543. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3544. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3545. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(15, 2, 15)
  3546. else
  3547. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3548. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(15, 2, 15)
  3549. end
  3550. end
  3551. end)
  3552.  
  3553. MRPage:CreateButton("Reach Leg - 20", "Setting Leg's Size To 20", function()
  3554. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3555. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3556. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3557. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(20, 2, 20)
  3558. else
  3559. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3560. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(20, 2, 20)
  3561. end
  3562. end
  3563. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3564. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3565. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3566. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(20, 2, 20)
  3567. else
  3568. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3569. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(20, 2, 20)
  3570. end
  3571. end
  3572. end)
  3573.  
  3574. MRPage:CreateButton("Reach Leg - 25", "Setting Leg's Size To 25", function()
  3575. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3576. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3577. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3578. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(25, 2, 25)
  3579. else
  3580. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3581. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(25, 2, 25)
  3582. end
  3583. end
  3584. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3585. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3586. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3587. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(25, 2, 25)
  3588. else
  3589. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3590. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(25, 2, 25)
  3591. end
  3592. end
  3593. end)
  3594.  
  3595. MRPage:CreateButton("Reach Leg - 30", "Setting Leg's Size To 30", function()
  3596. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3597. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3598. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3599. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(30, 2, 30)
  3600. else
  3601. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3602. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(30, 2, 30)
  3603. end
  3604. end
  3605. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3606. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3607. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3608. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(30, 2, 30)
  3609. else
  3610. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3611. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(30, 2, 30)
  3612. end
  3613. end
  3614. end)
  3615.  
  3616. MRPage:CreateButton("Reach Leg - 35", "Setting Leg's Size To 35", function()
  3617. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3618. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3619. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3620. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(35, 2, 35)
  3621. else
  3622. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3623. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(35, 2, 35)
  3624. end
  3625. end
  3626. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3627. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3628. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3629. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(35, 2, 35)
  3630. else
  3631. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3632. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(35, 2, 35)
  3633. end
  3634. end
  3635. end)
  3636.  
  3637. MRPage:CreateButton("Reach Leg - 50", "Setting Leg's Size To 50", function()
  3638. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3639. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3640. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3641. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(50, 2, 50)
  3642. else
  3643. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3644. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(50, 2, 50)
  3645. end
  3646. end
  3647. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3648. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3649. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3650. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(50, 2, 50)
  3651. else
  3652. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3653. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(50, 2, 50)
  3654. end
  3655. end
  3656. end)
  3657.  
  3658. MRPage:CreateButton("Reach Leg - 60", "Setting Leg's Size To 60", function()
  3659. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3660. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3661. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3662. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(60, 2, 60)
  3663. else
  3664. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3665. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(60, 2, 60)
  3666. end
  3667. end
  3668. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3669. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3670. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3671. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(60, 2, 60)
  3672. else
  3673. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3674. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(60, 2, 60)
  3675. end
  3676. end
  3677. end)
  3678.  
  3679. MRPage:CreateButton("Reach Leg - 70", "Setting Leg's Size To 70", function()
  3680. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3681. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3682. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3683. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(70, 2, 70)
  3684. else
  3685. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3686. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(70, 2, 70)
  3687. end
  3688. end
  3689. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3690. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3691. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3692. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(70, 2, 70)
  3693. else
  3694. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3695. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(70, 2, 70)
  3696. end
  3697. end
  3698. end)
  3699.  
  3700. MRPage:CreateButton("Reach Leg - 80", "Setting Leg's Size To 80", function()
  3701. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3702. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3703. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3704. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(80, 2, 80)
  3705. else
  3706. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3707. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(80, 2, 80)
  3708. end
  3709. end
  3710. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3711. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3712. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3713. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(80, 2, 80)
  3714. else
  3715. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3716. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(80, 2, 80)
  3717. end
  3718. end
  3719. end)
  3720.  
  3721. MRPage:CreateButton("Reach Leg - 90", "Setting Leg's Size To 90", function()
  3722. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3723. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3724. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3725. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(90, 2, 90)
  3726. else
  3727. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3728. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(90, 2, 90)
  3729. end
  3730. end
  3731. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3732. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3733. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3734. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(90, 2, 90)
  3735. else
  3736. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3737. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(90, 2, 90)
  3738. end
  3739. end
  3740. end)
  3741.  
  3742. MRPage:CreateButton("Reach Leg - 100", "Setting Leg's Size To 100", function()
  3743. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3744. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3745. game.Players.LocalPlayer.Character["Left Leg"].Massless = true
  3746. game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(100, 2, 100)
  3747. else
  3748. game.Players.LocalPlayer.Character["Right Leg"].Massless = true
  3749. game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(100, 2, 100)
  3750. end
  3751. end
  3752. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  3753. if game.Lighting[game.Players.LocalPlayer.Name].PreferredFoot.Value == 2 then
  3754. game.Players.LocalPlayer.Character["LeftLowerLeg"].Massless = true
  3755. game.Players.LocalPlayer.Character["LeftLowerLeg"].Size = Vector3.new(100, 2, 100)
  3756. else
  3757. game.Players.LocalPlayer.Character["RightLowerLeg"].Massless = true
  3758. game.Players.LocalPlayer.Character["RightLowerLeg"].Size = Vector3.new(100, 2, 100)
  3759. end
  3760. end
  3761. end)
  3762.  
  3763. TPPage:CreateLabel("Waypoints")
  3764.  
  3765. TPPage:CreateButton("Teleport To The Ball", "Teleporting You To The Ball", function()
  3766. game.Players.LocalPlayer.Character:MoveTo(game.Workspace.TPSSystem.TPS.Position)
  3767. end)
  3768.  
  3769. TPPage:CreateButton("Teleport To The Center", "Teleporting You To The Center", function()
  3770. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Lines.Line12.CFrame
  3771. end)
  3772.  
  3773. TPPage:CreateButton("Teleport To The Red Box", "Teleporting You To The Red Goal", function()
  3774. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0.229434282, 13.2999945, -111.25293, -0.999964356, 6.47347465e-09, -0.00844059512, 5.92729865e-09, 1, 6.47332428e-08, 0.00844059512, 6.46809042e-08, -0.999964356)
  3775. end)
  3776.  
  3777. TPPage:CreateButton("Teleport To The Blue Box", "Teleporting You To The Blue Goal", function()
  3778. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-0.337467283, 13.2999945, 113.940865, 0.999967039, 4.84168332e-08, 0.00811586808, -4.90094685e-08, 1, 7.28228073e-08, -0.00811586808, -7.32181604e-08, 0.999967039)
  3779. end)
  3780.  
  3781. TPPage:CreateButton("Teleport To Random Blue Spawn", "Teleporting You To The Blue Spawn", function()
  3782. local BlueSpawns = game.Workspace.BSpawns:GetChildren()
  3783.  
  3784. local WayRandom = math.random(1, #BlueSpawns)
  3785. game.Players.LocalPlayer.Character:MoveTo(BlueSpawns[WayRandom].Position)
  3786. end)
  3787.  
  3788. TPPage:CreateButton("Teleport To Random Red Spawn", "Teleporting You To The Red Spawn", function()
  3789. local RedSpawns = game.Workspace.RSpawns:GetChildren()
  3790.  
  3791. local WayRandom = math.random(1, #RedSpawns)
  3792. game.Players.LocalPlayer.Character:MoveTo(RedSpawns[WayRandom].Position)
  3793. end)
  3794.  
  3795. CPage:CreateLabel("R15 Animations")
  3796.  
  3797. CPage:CreateButton("CelebrationB", "Loads Animation.", function()
  3798. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationB
  3799. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3800. k:Play()
  3801. end)
  3802.  
  3803. CPage:CreateButton("CelebrationBHold", "Loads Animation.", function()
  3804. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationBHold
  3805. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3806. k:Play()
  3807. end)
  3808.  
  3809. CPage:CreateButton("CelebrationG", "Loads Animation.", function()
  3810. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationG
  3811. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3812. k:Play()
  3813. end)
  3814.  
  3815. CPage:CreateButton("CelebrationGHold", "Loads Animation.", function()
  3816. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationGHold
  3817. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3818. k:Play()
  3819. end)
  3820.  
  3821. CPage:CreateButton("CelebrationH", "Loads Animation.", function()
  3822. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationH
  3823. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3824. k:Play()
  3825. end)
  3826.  
  3827. CPage:CreateButton("CelebrationHHold", "Loads Animation.", function()
  3828. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationHHold
  3829. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3830. k:Play()
  3831. end)
  3832.  
  3833. CPage:CreateButton("CelebrationJ", "Loads Animation.", function()
  3834. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationJ
  3835. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3836. k:Play()
  3837. end)
  3838.  
  3839. CPage:CreateButton("CelebrationJHold", "Loads Animation.", function()
  3840. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationJHold
  3841. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3842. k:Play()
  3843. end)
  3844.  
  3845. CPage:CreateButton("CelebrationM", "Loads Animation.", function()
  3846. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationM
  3847. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3848. k:Play()
  3849. end)
  3850.  
  3851. CPage:CreateButton("CelebrationMHold", "Loads Animation.", function()
  3852. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationMHold
  3853. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3854. k:Play()
  3855. end)
  3856.  
  3857. CPage:CreateButton("CelebrationN", "Loads Animation.", function()
  3858. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationN
  3859. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3860. k:Play()
  3861. end)
  3862.  
  3863. CPage:CreateButton("CelebrationNHold", "Loads Animation.", function()
  3864. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationNHold
  3865. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3866. k:Play()
  3867. end)
  3868.  
  3869. CPage:CreateButton("CelebrationT", "Loads Animation.", function()
  3870. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationT
  3871. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3872. k:Play()
  3873. end)
  3874.  
  3875. CPage:CreateButton("CelebrationTHold", "Loads Animation.", function()
  3876. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationTHold
  3877. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3878. k:Play()
  3879. end)
  3880.  
  3881. CPage:CreateButton("CelebrationU", "Loads Animation.", function()
  3882. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationU
  3883. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3884. k:Play()
  3885. end)
  3886.  
  3887. CPage:CreateButton("CelebrationUHold", "Loads Animation.", function()
  3888. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationUHold
  3889. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3890. k:Play()
  3891. end)
  3892.  
  3893. CPage:CreateButton("CelebrationY", "Loads Animation.", function()
  3894. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationY
  3895. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3896. k:Play()
  3897. end)
  3898.  
  3899. CPage:CreateButton("CelebrationYHold", "Loads Animation.", function()
  3900. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.NewCelebrationYHold
  3901. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3902. k:Play()
  3903. end)
  3904.  
  3905. CPage:CreateLabel("R6 Animations")
  3906.  
  3907. CPage:CreateButton("CelebrationB", "Loads Animation.", function()
  3908. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationB
  3909. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3910. k:Play()
  3911. end)
  3912.  
  3913. CPage:CreateButton("CelebrationBHold", "Loads Animation.", function()
  3914. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationBHold
  3915. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3916. k:Play()
  3917. end)
  3918.  
  3919. CPage:CreateButton("CelebrationG", "Loads Animation.", function()
  3920. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationG
  3921. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3922. k:Play()
  3923. end)
  3924.  
  3925. CPage:CreateButton("CelebrationGHold", "Loads Animation.", function()
  3926. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationGHold
  3927. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3928. k:Play()
  3929. end)
  3930.  
  3931. CPage:CreateButton("CelebrationH", "Loads Animation.", function()
  3932. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationH
  3933. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3934. k:Play()
  3935. end)
  3936.  
  3937. CPage:CreateButton("CelebrationHHold", "Loads Animation.", function()
  3938. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationHHold
  3939. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3940. k:Play()
  3941. end)
  3942.  
  3943. CPage:CreateButton("CelebrationJ", "Loads Animation.", function()
  3944. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationJ
  3945. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3946. k:Play()
  3947. end)
  3948.  
  3949. CPage:CreateButton("CelebrationJHold", "Loads Animation.", function()
  3950. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationJHold
  3951. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3952. k:Play()
  3953. end)
  3954.  
  3955. CPage:CreateButton("CelebrationM", "Loads Animation.", function()
  3956. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationM
  3957. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3958. k:Play()
  3959. end)
  3960.  
  3961. CPage:CreateButton("CelebrationMHold", "Loads Animation.", function()
  3962. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationMHold
  3963. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3964. k:Play()
  3965. end)
  3966.  
  3967. CPage:CreateButton("CelebrationN", "Loads Animation.", function()
  3968. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationN
  3969. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3970. k:Play()
  3971. end)
  3972.  
  3973. CPage:CreateButton("CelebrationNHold", "Loads Animation.", function()
  3974. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationNHold
  3975. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3976. k:Play()
  3977. end)
  3978.  
  3979. CPage:CreateButton("CelebrationT", "Loads Animation.", function()
  3980. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationT
  3981. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3982. k:Play()
  3983. end)
  3984.  
  3985. CPage:CreateButton("CelebrationTHold", "Loads Animation.", function()
  3986. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationTHold
  3987. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3988. k:Play()
  3989. end)
  3990.  
  3991. CPage:CreateButton("CelebrationU", "Loads Animation.", function()
  3992. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationU
  3993. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3994. k:Play()
  3995. end)
  3996.  
  3997. CPage:CreateButton("CelebrationUHold", "Loads Animation.", function()
  3998. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationUHold
  3999. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4000. k:Play()
  4001. end)
  4002.  
  4003. CPage:CreateButton("CelebrationY", "Loads Animation.", function()
  4004. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationY
  4005. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4006. k:Play()
  4007. end)
  4008.  
  4009. CPage:CreateButton("CelebrationYHold", "Loads Animation.", function()
  4010. local Anim = game:GetService("Players").LocalPlayer.PlayerGui.Animations.CelebrationYHold
  4011. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4012. k:Play()
  4013. end)
  4014.  
  4015. VPage:CreateLabel("Ball ESP")
  4016.  
  4017. VPage:CreateToggle("Highlight", "Allows You To See Normally And Through Walls", function(arg)
  4018. if arg then
  4019. local Highlight = Instance.new("Highlight", game.Workspace.TPSSystem.TPS)
  4020. Highlight.FillColor = Color3.fromRGB(255, 255, 255)
  4021. Highlight.FillTransparency = 0.2
  4022. Highlight.OutlineColor = Color3.fromRGB(0, 255, 0)
  4023. else
  4024. game.Workspace.TPSSystem.TPS.Highlight:Destroy()
  4025. end
  4026. end)
  4027.  
  4028.  
  4029. VPage:CreateToggle("Box", "Creates Box", function(arg)
  4030. if arg then
  4031. local Ball = game.Workspace.TPSSystem.TPS
  4032.  
  4033. surfaces = {"Front", "Back", "Top", "Bottom", "Left", "Right"}
  4034. for i = 1, #surfaces do
  4035. local sgui = Instance.new("SurfaceGui", Ball)
  4036. sgui.Name = "BallESP"
  4037. sgui.AlwaysOnTop = true
  4038. sgui.Face = surfaces[i]
  4039. local frm = Instance.new("Frame", sgui)
  4040. frm.Size = UDim2.new(1,0,1,0)
  4041. frm.BackgroundColor3 = Color3.fromRGB(255, 250, 250)
  4042. frm.BackgroundTransparency = 0.25
  4043. end
  4044. else
  4045. local Ball = game.Workspace.TPSSystem.TPS
  4046. for i,v in pairs(Ball:GetChildren()) do
  4047. if v.Name == "BallESP" or v.Name == "BallName" then
  4048. v:Destroy()
  4049. end
  4050. end
  4051. end
  4052. end)
  4053.  
  4054. VPage:CreateToggle("Textlabel", "Creates Text", function(arg)
  4055. if arg then
  4056. local Ball = game.Workspace.TPSSystem.TPS
  4057.  
  4058. local bgui = Instance.new("BillboardGui", Ball)
  4059. bgui.Name = ("BallName")
  4060. bgui.AlwaysOnTop = true
  4061. bgui.ExtentsOffset = Vector3.new(0,3,0)
  4062. bgui.Size = UDim2.new(0,200,0,50)
  4063. local nam = Instance.new("TextLabel",bgui)
  4064. nam.Text = "Ball"
  4065. nam.BackgroundTransparency = 1
  4066. nam.TextSize = 19
  4067. nam.Font = ("Arial")
  4068. nam.TextColor3 = Color3.new(255, 250, 250)
  4069. nam.Size = UDim2.new(0,200,0,66)
  4070. else
  4071. local Ball = game.Workspace.TPSSystem.TPS
  4072. for i,v in pairs(Ball:GetChildren()) do
  4073. if v.Name == "BallESP" or v.Name == "BallName" then
  4074. v:Destroy()
  4075. end
  4076. end
  4077. end
  4078. end)
  4079.  
  4080. VPage:CreateLabel("Players ESP")
  4081.  
  4082. local ESPz = loadstring(game:HttpGet("https://paste.ee/r/aFx08", true))()
  4083.  
  4084. VPage:CreateToggle("ESP", "Toggles ESP", function(arg)
  4085. ESPz:Toggle(arg)
  4086. end)
  4087.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement