Thank you for using our website
Your script:
-- INF SPINS
while wait() do
local args = {
"lucky_wheel_get_ticket",
{
["1"] = 3
}
}
local result = game:GetService("ReplicatedStorage"):WaitForChild("RemoteFunction"):InvokeServer(unpack(args))
print("Invoked:", result)
end
-- AUTO REBIRTH
while wait() do
local args = {
"reborn_as_lv",
{
["1"] = 1
}
}
game:GetService("ReplicatedStorage"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
end





