Should I use BindToClose to save data when in studio?

Should I use BindToClose to save data when in studio?

I have a PlayerRemoving event which saves the data too. Do I need to worry about saving data with bindtoclose in studio?

game:BindToClose(function()
    if RunService:IsStudio() then
       return
    end

    -- Saves data
end)