Advertisement
Just_scriptss

Touch Football V3

Mar 1st, 2025
1,276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. -- Ui
  2.  
  3. local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  4.  
  5. -- Window
  6.  
  7. local TouchFootball = Library:NewWindow("Touch Football V3")
  8.  
  9. -- Section
  10.  
  11. local sec = TouchFootball:NewSection("Scripts")
  12.  
  13. local sect = TouchFootball:NewSection("More Scripts")
  14.  
  15. local ser = TouchFootball:NewSection("Stats")
  16.  
  17. local set = TouchFootball:NewSection("Stats 2")
  18.  
  19. -- Scripts
  20.  
  21. sec:CreateButton("Bring ball", function()
  22. local args = {
  23. [1] = Vector3.new(0),
  24. [2] = Vector3.new(0),
  25. [3] = Vector3.new(0),
  26. [4] = 0,
  27. [5] = "djhtelkds"
  28. }
  29.  
  30. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  31.  
  32. wait(0.1)
  33. game:GetService("Workspace").FootballField.SoccerBall.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  34. end)
  35.  
  36. sec:CreateButton("Loop Bring Ball", function()
  37. while wait() do
  38. local args = {
  39. [1] = Vector3.new(0),
  40. [2] = Vector3.new(0),
  41. [3] = Vector3.new(0),
  42. [4] = 0,
  43. [5] = "djhtelkds"
  44. }
  45.  
  46. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  47.  
  48. game:GetService("Workspace").FootballField.SoccerBall.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  49. end
  50. end)
  51.  
  52. sec:CreateButton("Freeze Ball", function()
  53. while wait() do
  54. local args = {
  55. [1] = Vector3.new(0),
  56. [2] = Vector3.new(0),
  57. [3] = Vector3.new(0),
  58. [4] = 0,
  59. [5] = "djhtelkds"
  60. }
  61.  
  62. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  63.  
  64. end
  65. end)
  66.  
  67. sec:CreateButton("Freeze ball 2 (Can't be stopped)", function()
  68. while wait() do
  69. local args = {
  70. [1] = Vector3.new(0),
  71. [2] = Vector3.new(0),
  72. [3] = Vector3.new(0),
  73. [4] = 0,
  74. [5] = "djhtelkds"
  75. }
  76.  
  77. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  78. end
  79. end)
  80.  
  81. sec:CreateButton("Destroy ball", function()
  82. local args = {
  83. [1] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  84. [2] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  85. [3] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  86. [4] = 0,
  87. [5] = "djhtelkds"
  88. }
  89.  
  90. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  91.  
  92. end)
  93.  
  94. sect:CreateButton("Goal A team", function()
  95. -- KickBall event because for GoalEvent work
  96.  
  97. local args = {
  98. [1] = Vector3.new(0),
  99. [2] = Vector3.new(0),
  100. [3] = Vector3.new(0),
  101. [4] = 0,
  102. [5] = "djhtelkds"
  103. }
  104.  
  105. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  106.  
  107. wait()
  108. -- GoalEvent
  109.  
  110. local args = {
  111. [1] = "A"
  112. }
  113.  
  114. game:GetService("ReplicatedStorage").GoalEvent:FireServer(unpack(args))
  115.  
  116. end)
  117.  
  118. sect:CreateButton("Goal B team", function()
  119. -- KickBall event because for GoalEvent work
  120.  
  121. local args = {
  122. [1] = Vector3.new(0),
  123. [2] = Vector3.new(0),
  124. [3] = Vector3.new(0),
  125. [4] = 0,
  126. [5] = "djhtelkds"
  127. }
  128.  
  129. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  130.  
  131. wait()
  132. -- GoalEvent
  133.  
  134. local args = {
  135. [1] = "B"
  136. }
  137.  
  138. game:GetService("ReplicatedStorage").GoalEvent:FireServer(unpack(args))
  139.  
  140. end)
  141.  
  142. ser:CreateTextbox("BPA (CLIENT-SIDED)", function(text)
  143. game:GetService("Players").LocalPlayer.leaderstats.BPA.Value = text
  144. end)
  145.  
  146. ser:CreateTextbox("Clan (CLIENT-SIDED)", function(text)
  147. game:GetService("Players").LocalPlayer.leaderstats.Clan.Value = text
  148. end)
  149.  
  150. ser:CreateTextbox("Goals (CLIENT-SIDED)", function(text)
  151. game:GetService("Players").LocalPlayer.leaderstats.Goals.Value = text
  152. end)
  153.  
  154. ser:CreateTextbox("Wins (CLIENT-SIDED)", function(text)
  155. game:GetService("Players").LocalPlayer.leaderstats.Wins.Value = text
  156. end)
  157.  
  158. set:CreateTextbox("Bucks (CLIENT-SIDED)", function(text)
  159. game:GetService("Players").LocalPlayer.hiddendata.Bucks.Value = text
  160. end)
  161.  
  162. set:CreateTextbox("Assists (CLIENT-SIDED)", function(text)
  163. game:GetService("Players").LocalPlayer.hiddendata.Assists.Value = text
  164. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement