Thank you for using our website
Your script:
_G.AutoRebirth = false -- Toggle for AutoRebirth
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local TrainEvent = ReplicatedStorage:WaitForChild("Event"):WaitForChild("Train")
local WinGainEvent = ReplicatedStorage:WaitForChild("Event"):WaitForChild("WinGain")
local HealthAddEvent = ReplicatedStorage:WaitForChild("Event"):WaitForChild("HealthAdd")
local args = {[1] = 99999999999999999999999999999}
TrainEvent:FireServer(unpack(args))
WinGainEvent:FireServer(unpack(args))
task.spawn(function()
while task.wait(0.1) do
if _G.AutoRebirth then
local args = {[1] = 25}
HealthAddEvent:FireServer(unpack(args))
end
end
end)