RunService and renderstepped


self.maid = Maid.GiveTask(RunService.RenderStepped:Connect(function()
    self:Update()
    if (1/Step < 45) then
        -- make so it renders in 30 frames a second
        self:Update()
    else
         self:Update()
    end
end))

How do I change the frames the Connect is running?