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()
Comments
No comments yet
Be the first to share your thoughts!