Advertisement
Just_scriptss

Touch Football V2 script

Feb 25th, 2025
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 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 V2")
  8.  
  9. -- Section
  10.  
  11. local sec = TouchFootball:NewSection("Ball Options")
  12.  
  13. local sect = TouchFootball:NewSection("Others")
  14.  
  15. -- Scripts
  16.  
  17. sec:CreateButton("Bring ball", function()
  18. game:GetService("Workspace").FootballField.SoccerBall.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  19. end)
  20.  
  21. sec:CreateButton("loop Bring ball", function()
  22. while wait() do
  23. game:GetService("Workspace").FootballField.SoccerBall.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  24. end
  25. end)
  26.  
  27. sec:CreateButton("Freeze Ball", function()
  28. while wait() do
  29. game:GetService("Workspace").FootballField.SoccerBall.Anchored = true
  30. local args = {
  31. [1] = Vector3.new(0),
  32. [2] = Vector3.new(0),
  33. [3] = Vector3.new(0),
  34. [4] = 0,
  35. [5] = "djhtelkds"
  36. }
  37.  
  38. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  39.  
  40. end
  41. end)
  42.  
  43. sec:CreateButton("Freeze ball 2 (Can't be stopped)", function()
  44. while wait() do
  45. local args = {
  46. [1] = Vector3.new(0),
  47. [2] = Vector3.new(0),
  48. [3] = Vector3.new(0),
  49. [4] = 0,
  50. [5] = "djhtelkds"
  51. }
  52.  
  53. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  54.  
  55. end
  56. end)
  57.  
  58. sec:CreateButton("Delete ball (Ban risk)", function()
  59. while wait() do
  60. local args = {
  61. [1] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  62. [2] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  63. [3] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  64. [4] = 0,
  65. [5] = "djhtelkds"
  66. }
  67.  
  68. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  69.  
  70. game:GetService("Workspace").FootballField.SoccerBall.Anchored = true
  71. end
  72. end)
  73.  
  74. sect:CreateButton("Goal A team", function()
  75. -- KickBall event because for GoalEvent work
  76.  
  77. local args = {
  78. [1] = Vector3.new(0),
  79. [2] = Vector3.new(0),
  80. [3] = Vector3.new(0),
  81. [4] = 0,
  82. [5] = "djhtelkds"
  83. }
  84.  
  85. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  86.  
  87. wait(0.5)
  88. -- GoalEvent
  89.  
  90. local args = {
  91. [1] = "A"
  92. }
  93.  
  94. game:GetService("ReplicatedStorage").GoalEvent:FireServer(unpack(args))
  95.  
  96. end)
  97.  
  98. sect:CreateButton("Goal B team", function()
  99. -- KickBall event because for GoalEvent work
  100.  
  101. local args = {
  102. [1] = Vector3.new(0),
  103. [2] = Vector3.new(0),
  104. [3] = Vector3.new(0),
  105. [4] = 0,
  106. [5] = "djhtelkds"
  107. }
  108.  
  109. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  110.  
  111. wait(0.5)
  112. -- GoalEvent
  113.  
  114. local args = {
  115. [1] = "B"
  116. }
  117.  
  118. game:GetService("ReplicatedStorage").GoalEvent:FireServer(unpack(args))
  119.  
  120. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement