local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/turtle"))()

local OwO = library:Window("Soccer kick sim")

OwO:Label("made by SimpleScripter", Color3.fromRGB(127, 143, 166))

OwO:Button("inf power", function()
  game:GetService("ReplicatedStorage").Events.AddValue:FireServer("Power",math.huge,false)
end)

OwO:Box("Input power", function(value, focuslost)
   if focuslost then
   game:GetService("ReplicatedStorage").Events.AddValue:FireServer("Power",value,false)
   end
end)

OwO:Button("inf Wins", function()
  game:GetService("ReplicatedStorage").Events.AddValue:FireServer("Wins",math.huge,false)
end)

OwO:Box("Input wins", function(text, focuslost)
   if focuslost then
   game:GetService("ReplicatedStorage").Events.AddValue:FireServer("Wins",text,false)
   end
end)

OwO:Box("input rebirths", function(valued, focuslost)
   if focuslost then
   game:GetService("ReplicatedStorage").Events.AddValue:FireServer("Rebirths",valued,false)
   end
end)

OwO:Button("inf spins", function()
  game:GetService("ReplicatedStorage").Events.AddValue:FireServer("Spins",math.huge)
end)

OwO:Box("input spins", function(simulator, focuslost)
   if focuslost then
   game:GetService("ReplicatedStorage").Events.AddValue:FireServer("Spins",simulator)
   end
end)

OwO:Label("who gave me game idea glowxfy", Color3.fromRGB(127, 143, 166))


OwO:Button("equip Ballon d'Or ball free", function()
  game:GetService("ReplicatedStorage").Events.ChangeTool:FireServer("Ballon d'Or")
end)

OwO:Box("input power potion", function(pot, focuslost)
   if focuslost then
   game:GetService("ReplicatedStorage").Events.AddValue:FireServer("PowerBoosts",pot)
   end
end)

OwO:Box("input wins potion", function(potio, focuslost)
   if focuslost then
   game:GetService("ReplicatedStorage").Events.AddValue:FireServer("WinsBoosts",potio)
   end
end)

OwO:Box("input luck potion", function(potion, focuslost)
   if focuslost then
   game:GetService("ReplicatedStorage").Events.AddValue:FireServer("LuckBoosts",potion)
   end
end)

OwO:Label("https://discord.gg/wRx43eW9", Color3.fromRGB(127, 143, 166))