Advertisement
Just_scriptss

Touch football updated 2025

Feb 10th, 2025 (edited)
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. -- No obsufacted xd learn it
  2.  
  3. local DrRayLibrary = loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/DrRay-UI-Library/main/DrRay.lua"))()
  4. local window = DrRayLibrary:Load("Touch Football", "Default")
  5.  
  6. local tab = DrRayLibrary.newTab("Main", "ImageIdHere")
  7.  
  8. -- Blacklist system useless delete it if you want
  9.  
  10. local Blacklist = {
  11. Roblox = true
  12. }
  13.  
  14. if Blacklist[game:GetService("Players").LocalPlayer.Name] then
  15. game.Players.LocalPlayer:Kick("Blacklisted")
  16. wait(2)
  17. game:Shutdown() -- because player can use antikick and bypass it
  18. end
  19.  
  20. tab.newButton("bring ball", "brings ball to ur CFrame", function()
  21. game:GetService("Workspace").FootballField.SoccerBall.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  22. end)
  23.  
  24. tab.newButton("loopbring ball", "loop brings ball to ur CFrame", function()
  25. while wait() do
  26. game:GetService("Workspace").FootballField.SoccerBall.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  27. end
  28. end)
  29.  
  30. tab.newButton("Goal A Team", "", function()
  31. -- KickBall event because for GoalEvent work
  32.  
  33. local args = {
  34. [1] = Vector3.new(-213.62574768066406, 6.241994857788086, 117.22891235351562),
  35. [2] = Vector3.new(84.71153259277344, 34, 6.996870040893555),
  36. [3] = Vector3.new(0, -3.3757386207580566, 0),
  37. [4] = 3.379659414291382,
  38. [5] = "djhtelkds"
  39. }
  40.  
  41. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  42.  
  43. wait(0.5)
  44. -- GoalEvent
  45.  
  46. local args = {
  47. [1] = "A"
  48. }
  49.  
  50. game:GetService("ReplicatedStorage").GoalEvent:FireServer(unpack(args))
  51.  
  52. end)
  53.  
  54. tab.newButton("Goal B Team", "", function()
  55. -- KickBall event because for GoalEvent work
  56.  
  57. local args = {
  58. [1] = Vector3.new(-213.62574768066406, 6.241994857788086, 117.22891235351562),
  59. [2] = Vector3.new(84.71153259277344, 34, 6.996870040893555),
  60. [3] = Vector3.new(0, -3.3757386207580566, 0),
  61. [4] = 3.379659414291382,
  62. [5] = "djhtelkds"
  63. }
  64.  
  65. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  66.  
  67. wait(0.5)
  68. -- GoalEvent
  69.  
  70. local args = {
  71. [1] = "B"
  72. }
  73.  
  74. game:GetService("ReplicatedStorage").GoalEvent:FireServer(unpack(args))
  75.  
  76. end)
  77.  
  78. tab.newButton("Freeze ball", "if you want unfreeze press goal b or a", function()
  79. while wait() do
  80. game:GetService("Workspace").FootballField.SoccerBall.Anchored = true
  81. local args = {
  82. [1] = Vector3.new(0),
  83. [2] = Vector3.new(0),
  84. [3] = Vector3.new(0),
  85. [4] = 0,
  86. [5] = "djhtelkds"
  87. }
  88.  
  89. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  90.  
  91. end
  92. end)
  93.  
  94. tab.newButton("Delete ball (fe)", "make sure the ball is spawned (goal any team too return the ball)", function()
  95. while wait() do
  96. local args = {
  97. [1] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  98. [2] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  99. [3] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
  100. [4] = 0,
  101. [5] = "djhtelkds"
  102. }
  103.  
  104. game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
  105.  
  106. game:GetService("Workspace").FootballField.SoccerBall.Anchored = true
  107. end
  108. end)
  109.  
  110. tab.newLabel("Made by the guy who have broken grammar,english Vole7vin/Onlyscripts")
  111.  
  112. tab.newLabel("If you see anyone Abusing the script highly too much add me in discord you need proof vid that hes abusing and his/her username")
  113.  
  114. tab.newLabel("Discord Username: feariosz0")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement