ADVERTISEMENTREMOVE ADS
Game icon

Infinite Wins & Strength

Knockout Simulator
1 year ago
Script preview thumbnail
Script Preview

Description

This script just gets you infinite wins and strength to do what you want and essentially break the game

Features:

  • Infinite Stats
  • Infinite Coins
  • Auto Farm
  • OP

Tested with

ADVERTISEMENTREMOVE ADS
30 Lines • 1.02 KiB
Raw
local library = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/ShaddowScripts/Main/main/Library"))()
local Main = library:CreateWindow("Main", "Crimson")
local tab = Main:CreateTab("Cheats")
local infStrengthOn = false
local infWinsOn = false
local spamWaitTime = 0.1
tab:CreateToggle("Inf Strength", function(a)
infStrengthOn = a
if infStrengthOn then
while infStrengthOn do
local args = { [1] = 9999999999999999999999999999999 }
game:GetService("ReplicatedStorage"):WaitForChild("Event"):WaitForChild("Train"):FireServer(unpack(args))
wait(spamWaitTime)
end
end
end)
tab:CreateToggle("Inf Wins", function(a)
infWinsOn = a
if infWinsOn then
while infWinsOn do
local args = { [1] = 9999999999999999999999999999999 }
game:GetService("ReplicatedStorage"):WaitForChild("Event"):WaitForChild("WinGain"):FireServer(unpack(args))
wait(spamWaitTime)
end
end
end)
tab:Show()
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS