local args = {
"Rebirth",
{
Price = 0,
Currency = "Size",
Amount = 1e300
}
}
local remote = game:GetService("ReplicatedStorage")
:WaitForChild("Libraries")
:WaitForChild("Net")
:WaitForChild("RF/request_buy")
game:GetService("RunService").Heartbeat:Connect(function()
pcall(function()
remote:InvokeServer(unpack(args))
end)
end)