--Uploaded On https://youtube.com/AhmedMode
--Published on https://ahmedmode.com
--Credits goes to the devs!
--Scripts Below:

--Scripts

local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
local Window = OrionLib:MakeWindow({Name = "Zacks Cool Hub | Touch Football/Soccer", HidePremium = true, IntroText = "greatest thing is auto farm lol", SaveConfig = false, ConfigFolder = "ZCH"})
local Main = Window:MakeTab({
	Name = "Main",
	Icon = "rbxassetid://4483345998",
	PremiumOnly = false
})
local MainSection = Main:AddSection({
	Name = "Main"
})

Main:AddToggle({
Name = "Auto Collect Coins",
Default = false,
Callback = function(col)
if col then
_G.collect = true
while _G.collect == true do
wait()
for _,v in pairs(game:GetService("Workspace").Coins:GetDescendants()) do
if v:IsA("TouchTransmitter") then
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0) --0 is touch
wait()
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1) -- 1 is untouch
end
end
end
else
_G.collect = false
end
end})

Main:AddSlider({
Name = "Change WS (works)",
Min = 16,
Max = 150,
Default = 16,
Increment = 1,
ValueName = "--WS--",
Callback = function(ws)
while wait() do
local lp = game.Players.LocalPlayer.Name
local args = {
    [1] = lp,
    [2] = ws
}

game:GetService("ReplicatedStorage").UpdateWalkSpeed:FireServer(unpack(args))
end
end})