-- Rent all Rings and change Length time to 15 hours instead of 15 minutes and Spawn Kill Part on Ring Floors (Copy all of them) for i,v in pairs(game:GetService("Workspace").PrivateRings:GetChildren()) do local args = { [1] = "Owner" } v.RentARing.ChangeInfoClient:FireServer(unpack(args)) local args = { [1] = "Time", [2] = { ["Type"] = "Hours", ["Length"] = 15 } } v.RentARing.ChangeInfoClient:FireServer(unpack(args)) local args = { [1] = "Fighters", [2] = { [1] = ""..game:GetService("Players").LocalPlayer.Name } } v.RentARing.ChangeInfoClient:FireServer(unpack(args)) local args = { [1] = "MatchType", [2] = "RentBR" } v.RentARing.ChangeInfoClient:FireServer(unpack(args)) end -- Spawn Bots game:GetService("RunService").RenderStepped:Connect(function() for i,v in pairs(game:GetService("Workspace").PrivateRings:GetChildren()) do local args = { [1] = "AddBot" } v.RentARing.ChangeInfoClient:FireServer(unpack(args)) end end)