Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Ui
- local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
- -- Window
- local TouchFootball = Library:NewWindow("Touch Football V3")
- -- Section
- local sec = TouchFootball:NewSection("Scripts")
- local sect = TouchFootball:NewSection("More Scripts")
- local ser = TouchFootball:NewSection("Stats")
- local set = TouchFootball:NewSection("Stats 2")
- -- Scripts
- sec:CreateButton("Bring ball", function()
- local args = {
- [1] = Vector3.new(0),
- [2] = Vector3.new(0),
- [3] = Vector3.new(0),
- [4] = 0,
- [5] = "djhtelkds"
- }
- game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
- wait(0.1)
- game:GetService("Workspace").FootballField.SoccerBall.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end)
- sec:CreateButton("Loop Bring Ball", function()
- while wait() do
- local args = {
- [1] = Vector3.new(0),
- [2] = Vector3.new(0),
- [3] = Vector3.new(0),
- [4] = 0,
- [5] = "djhtelkds"
- }
- game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
- game:GetService("Workspace").FootballField.SoccerBall.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end)
- sec:CreateButton("Freeze Ball", function()
- while wait() do
- local args = {
- [1] = Vector3.new(0),
- [2] = Vector3.new(0),
- [3] = Vector3.new(0),
- [4] = 0,
- [5] = "djhtelkds"
- }
- game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
- end
- end)
- sec:CreateButton("Freeze ball 2 (Can't be stopped)", function()
- while wait() do
- local args = {
- [1] = Vector3.new(0),
- [2] = Vector3.new(0),
- [3] = Vector3.new(0),
- [4] = 0,
- [5] = "djhtelkds"
- }
- game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
- end
- end)
- sec:CreateButton("Destroy ball", function()
- local args = {
- [1] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
- [2] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
- [3] = Vector3.new(560.5654296875, 600.843505859375, 1582.93701171875),
- [4] = 0,
- [5] = "djhtelkds"
- }
- game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
- end)
- sect:CreateButton("Goal A team", function()
- -- KickBall event because for GoalEvent work
- local args = {
- [1] = Vector3.new(0),
- [2] = Vector3.new(0),
- [3] = Vector3.new(0),
- [4] = 0,
- [5] = "djhtelkds"
- }
- game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
- wait()
- -- GoalEvent
- local args = {
- [1] = "A"
- }
- game:GetService("ReplicatedStorage").GoalEvent:FireServer(unpack(args))
- end)
- sect:CreateButton("Goal B team", function()
- -- KickBall event because for GoalEvent work
- local args = {
- [1] = Vector3.new(0),
- [2] = Vector3.new(0),
- [3] = Vector3.new(0),
- [4] = 0,
- [5] = "djhtelkds"
- }
- game:GetService("ReplicatedStorage").KickBall:FireServer(unpack(args))
- wait()
- -- GoalEvent
- local args = {
- [1] = "B"
- }
- game:GetService("ReplicatedStorage").GoalEvent:FireServer(unpack(args))
- end)
- ser:CreateTextbox("BPA (CLIENT-SIDED)", function(text)
- game:GetService("Players").LocalPlayer.leaderstats.BPA.Value = text
- end)
- ser:CreateTextbox("Clan (CLIENT-SIDED)", function(text)
- game:GetService("Players").LocalPlayer.leaderstats.Clan.Value = text
- end)
- ser:CreateTextbox("Goals (CLIENT-SIDED)", function(text)
- game:GetService("Players").LocalPlayer.leaderstats.Goals.Value = text
- end)
- ser:CreateTextbox("Wins (CLIENT-SIDED)", function(text)
- game:GetService("Players").LocalPlayer.leaderstats.Wins.Value = text
- end)
- set:CreateTextbox("Bucks (CLIENT-SIDED)", function(text)
- game:GetService("Players").LocalPlayer.hiddendata.Bucks.Value = text
- end)
- set:CreateTextbox("Assists (CLIENT-SIDED)", function(text)
- game:GetService("Players").LocalPlayer.hiddendata.Assists.Value = text
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement